content
stringlengths
7
1.05M
PPTIK_GRAVITY = 9.77876 class StationKind: V1 = 'L' STATIONARY = 'S' MOBILE = 'M' class StationState: ALERT = 'A' READY = 'R' ECO = 'E' HIGH_RATE = 'H' NORMAL_RATE = 'N' LOST = 'L'
# 1st solution class Solution: def intervalIntersection(self, firstList: List[List[int]], secondList: List[List[int]]) -> List[List[int]]: if not firstList or not secondList: return [] first, second = 0, 0 result = [] while first < len(firstList) and second < len(secondList): listOne = firstList[first] listTwo = secondList[second] if listOne[0] <= listTwo[0] <= listOne[1]: if listTwo[1] <= listOne[1]: segment = [listTwo[0], listTwo[1]] second += 1 else: segment = [listTwo[0], listOne[1]] first += 1 result.append(segment) elif listTwo[0] <= listOne[0] <= listTwo[1]: if listOne[1] <= listTwo[1]: segment = [listOne[0], listOne[1]] first += 1 else: segment = [listOne[0], listTwo[1]] second += 1 result.append(segment) elif listOne[0] >= listTwo[1]: second += 1 elif listTwo[0] >= listOne[1]: first += 1 return result # 2nd solution # O(m + n) time | O(m + n) space class Solution: def intervalIntersection(self, A: List[List[int]], B: List[List[int]]) -> List[List[int]]: ans = [] i = j = 0 while i < len(A) and j < len(B): # Let's check if A[i] intersects B[j]. # lo - the startpoint of the intersection # hi - the endpoint of the intersection lo = max(A[i][0], B[j][0]) hi = min(A[i][1], B[j][1]) if lo <= hi: ans.append([lo, hi]) # Remove the interval with the smallest endpoint if A[i][1] < B[j][1]: i += 1 else: j += 1 return ans
# # PySNMP MIB module WWP-VOIP-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/WWP-VOIP-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 21:32:08 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") NotificationType, Integer32, Bits, Counter32, Counter64, IpAddress, TimeTicks, iso, MibIdentifier, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, Gauge32, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Integer32", "Bits", "Counter32", "Counter64", "IpAddress", "TimeTicks", "iso", "MibIdentifier", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "Gauge32", "ObjectIdentity") DisplayString, MacAddress, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "MacAddress", "TextualConvention") wwpModules, = mibBuilder.importSymbols("WWP-SMI", "wwpModules") wwpVoipMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 6141, 2, 15)) wwpVoipMIB.setRevisions(('2001-04-03 17:00',)) if mibBuilder.loadTexts: wwpVoipMIB.setLastUpdated('200104031700Z') if mibBuilder.loadTexts: wwpVoipMIB.setOrganization('World Wide Packets, Inc') wwpVoipMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1)) wwpVoip = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1)) wwpVoipMIBNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 2)) wwpVoipMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 2, 0)) wwpVoipMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 3)) wwpVoipMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 3, 1)) wwpVoipMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6141, 2, 15, 3, 2)) wwpVoipTable = MibTable((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1), ) if mibBuilder.loadTexts: wwpVoipTable.setStatus('current') wwpVoipEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1), ).setIndexNames((0, "WWP-VOIP-MIB", "wwpVoipIndex")) if mibBuilder.loadTexts: wwpVoipEntry.setStatus('current') wwpVoipIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipIndex.setStatus('current') wwpVoipDownLoaderVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipDownLoaderVersion.setStatus('current') wwpVoipApplicationVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipApplicationVersion.setStatus('current') wwpVoipPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipPortNum.setStatus('current') wwpVoipIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 5), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipIpAddr.setStatus('current') wwpVoipNumResets = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipNumResets.setStatus('current') wwpVoipCallAgentAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 7), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: wwpVoipCallAgentAddr.setStatus('current') wwpVoipResetOp = MibTableColumn((1, 3, 6, 1, 4, 1, 6141, 2, 15, 1, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("none", 0), ("reset", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: wwpVoipResetOp.setStatus('current') wwpVoipDiagFailNotification = NotificationType((1, 3, 6, 1, 4, 1, 6141, 2, 15, 2, 0, 1)) if mibBuilder.loadTexts: wwpVoipDiagFailNotification.setStatus('current') mibBuilder.exportSymbols("WWP-VOIP-MIB", wwpVoipMIBNotificationPrefix=wwpVoipMIBNotificationPrefix, wwpVoipMIBNotifications=wwpVoipMIBNotifications, PYSNMP_MODULE_ID=wwpVoipMIB, wwpVoipMIBConformance=wwpVoipMIBConformance, wwpVoipDownLoaderVersion=wwpVoipDownLoaderVersion, wwpVoipMIBObjects=wwpVoipMIBObjects, wwpVoipMIBGroups=wwpVoipMIBGroups, wwpVoipMIBCompliances=wwpVoipMIBCompliances, wwpVoipNumResets=wwpVoipNumResets, wwpVoip=wwpVoip, wwpVoipDiagFailNotification=wwpVoipDiagFailNotification, wwpVoipTable=wwpVoipTable, wwpVoipEntry=wwpVoipEntry, wwpVoipApplicationVersion=wwpVoipApplicationVersion, wwpVoipPortNum=wwpVoipPortNum, wwpVoipIpAddr=wwpVoipIpAddr, wwpVoipResetOp=wwpVoipResetOp, wwpVoipCallAgentAddr=wwpVoipCallAgentAddr, wwpVoipIndex=wwpVoipIndex, wwpVoipMIB=wwpVoipMIB)
graph = { '5' : ['3','7'], '3' : ['2', '4'], '7' : ['8'], '2' : [], '4' : ['8'], '8' : [] } # List for visited nodes. visited = [] #Initialize a queue queue = [] # distance initialization (dict) dist = {} #function for BFS def bfs_shortest_path(visited, graph, start_node, end_node): global dist dist[start_node] = 0 visited.append(start_node) queue.append(start_node) if (start_node == end_node): return dist[end_node] # Creating loop to visit each node while(len(queue) != 0): m = queue.pop(0) print (m, end = " ") for neighbour in graph[m]: if(neighbour not in visited): dist[neighbour] = dist[m] + 1 visited.append(neighbour) queue.append(neighbour) return dist[end_node] my_dist = bfs_shortest_path(visited, graph, '5', '8') print("\n" + str(my_dist))
#!/usr/bin/env python """Example of raising an exception where b() has a finally clause and a() catches the exception. Created on Aug 19, 2011 @author: paulross """ class ExceptionNormal(Exception): pass class ExceptionCleanUp(Exception): pass def a(): try: b() except ExceptionNormal as err: print(' a(): CAUGHT "%s"' % err) def b(): try: c() finally: print(' b(): finally: This code is always executed.') def c(): print('Raising "ExceptionNormal" from c()') raise ExceptionNormal('ExceptionNormal raised from function c()') def main(): a() return 0 if __name__ == '__main__': main()
def star(): print("How Much Rows You Want") n = int(input()) print("Enter 1 or Non Zero for True and 0 For False") n2 = int(input()) n1 = bool((n2)) if n1 is True: for i in range(n): i = i+1 print(i*"*") elif n1 is False: for i in range(n): i = n-i print(i*"*") star()
""" """ # This is an input class. Do not edit. class LinkedList: def __init__(self, value): self.value = value self.next = None def sumOfLinkedLists(linkedListOne, linkedListTwo): tmp = 0 node1 = linkedListOne node2 = linkedListTwo while node1 is not None: if node2 is not None: val = node1.value + node2.value + tmp else: val = node1.value + tmp node1.value = val % 10 tmp = val // 10 if node2 is not None: node2 = node2.next if node1.next is None: if node2 is not None or tmp > 0: node1.next = LinkedList(0) node1 = node1.next return linkedListOne
#!/usr/bin/env python3 with open("input.txt", "r") as f: num = [] for elem in f.read().split(","): num.append(int(elem)) positions = set(num) steps = -1 for position in positions: current = 0 for elem in num: current += abs(elem - position) if steps < 0 or current < steps: steps = current print(steps)
"""Remove item from list, by its value. Remove at most 1 item from list _items, having value _x. This will alter the original list or return a new list, depending on which is more idiomatic. If there are several occurrences of _x in _items, remove only one of them. Source: programming-idioms.org """ # Implementation author: Oldboy # Created on 2017-10-28T12:32:55.201435Z # Last modified on 2017-10-28T12:32:55.201435Z # Version 1 items.remove(x)
class Solution: def twoSum(self, numbers: List[int], target: int) -> List[int]: s, res = {}, [] for i in range(len(numbers)): if numbers[i] in s.keys(): res.append(s[numbers[i]] + 1) res.append(i + 1) return res s[target - numbers[i]] = i return res
# historgram def histogram(s): d = dict() for c in s: a = d.get(c, 0) d[c] = 1+a return sorted(d) h = histogram("brantosaurus") print(h)
class FirmwareGPIO: def __init__(self, scfg): crtl_inputs = scfg.analog_ctrl_inputs + scfg.digital_ctrl_inputs ctrl_outputs = scfg.analog_ctrl_outputs + scfg.digital_ctrl_outputs self.getter_dict = {} for probe in ctrl_outputs: if probe.o_addr is not None: self.getter_dict[probe.o_addr] = probe.name self.setter_dict = {} for param in crtl_inputs: if param.i_addr is not None: self.setter_dict[param.i_addr] = param.name self.hdr_text = self.gen_hdr_text() self.src_text = self.gen_src_text() def gen_hdr_text(self): retval = ''' #include "xgpio.h" int init_GPIO(); ''' # add setter declarations for k, v in self.setter_dict.items(): retval += f''' void set_{v}(u32 val); ''' # add getter declarations for k, v in self.getter_dict.items(): retval += f''' u32 get_{v}(); ''' # return the code return retval def gen_src_text(self): retval = ''' #include "xparameters.h" #include "xgpio.h" #include "sleep.h" XGpio Gpio0; // chan 1: o_ctrl, chan 2: o_data XGpio Gpio1; // chan 1: i_ctrl, chan 2: i_data int init_GPIO(){ int status0, status1; status0 = XGpio_Initialize(&Gpio0, XPAR_GPIO_0_DEVICE_ID); status1 = XGpio_Initialize(&Gpio1, XPAR_GPIO_1_DEVICE_ID); if ((status0 == XST_SUCCESS) && (status1 == XST_SUCCESS)) { return 0; } else { return 1; } } u32 get_value(u32 addr){ XGpio_DiscreteWrite(&Gpio0, 1, addr); usleep(1); return XGpio_DiscreteRead(&Gpio0, 2); } void set_value(u32 addr, u32 val){ // set address and data XGpio_DiscreteWrite(&Gpio1, 1, addr); XGpio_DiscreteWrite(&Gpio1, 2, val); usleep(1); // assert "valid" XGpio_DiscreteWrite(&Gpio1, 1, addr | (1UL << 30)); usleep(1); // de-assert "valid" XGpio_DiscreteWrite(&Gpio1, 1, addr); usleep(1); } ''' # add setter definitions for k, v in self.setter_dict.items(): retval += f''' void set_{v}(u32 val){{ set_value({k}, val); }} ''' # add setter definitions for k, v in self.getter_dict.items(): retval += f''' u32 get_{v}(){{ return get_value({k}); }} ''' # return the code return retval
# -*- coding: utf-8 -*- NOT_IMPLEMENTED_ERROR_MSG = ('This method must be implemented by classes' ' inheriting from BaseSerializer.') class BaseSerializer(object): """ Base Serializer class that provides an interface for other serializers. Usage: .. code-block:: python from betamax import Betamax, BaseSerializer class MySerializer(BaseSerializer): name = 'my' @staticmethod def generate_cassette_name(cassette_library_dir, cassette_name): # Generate a string that will give the relative path of a # cassette def serialize(self, cassette_data): # Take a dictionary and convert it to whatever def deserialize(self, cassette_data): # Uses a cassette file to return a dictionary with the # cassette information Betamax.register_serializer(MySerializer) The last line is absolutely necessary. """ name = None stored_as_binary = False @staticmethod def generate_cassette_name(cassette_library_dir, cassette_name): raise NotImplementedError(NOT_IMPLEMENTED_ERROR_MSG) def __init__(self): if not self.name: raise ValueError("Serializer's name attribute must be a string" " value, not None.") self.on_init() def on_init(self): """Method to implement if you wish something to happen in ``__init__``. The return value is not checked and this is called at the end of ``__init__``. It is meant to provide the matcher author a way to perform things during initialization of the instance that would otherwise require them to override ``BaseSerializer.__init__``. """ return None def serialize(self, cassette_data): """A method that must be implemented by the Serializer author. :param dict cassette_data: A dictionary with two keys: ``http_interactions``, ``recorded_with``. :returns: Serialized data as a string. """ raise NotImplementedError(NOT_IMPLEMENTED_ERROR_MSG) def deserialize(self, cassette_data): """A method that must be implemented by the Serializer author. The return value is extremely important. If it is not empty, the dictionary returned must have the following structure:: { 'http_interactions': [{ # Interaction }, { # Interaction }], 'recorded_with': 'name of recorder' } :params str cassette_data: The data serialized as a string which needs to be deserialized. :returns: dictionary """ raise NotImplementedError(NOT_IMPLEMENTED_ERROR_MSG)
def new_seating_chart(size=22): """Create a new seating chart. :param size: int - number if seats in the seating chart. :return: dict - with number of seats specified, and placeholder values. """ return {number: None for number in range(1, size + 1)} def arrange_reservations(guests=None): """Assign guests to seats. :param guest_list: list - list of guest names for reservations. :return: dict - Default sized dictionary with guests assigned seats, and placeholders for empty seats. """ seats = new_seating_chart() if guests: for seat_number in range(1, len(guests)): seats[seat_number] = guests[seat_number] return seats def find_all_available_seats(seats): """Find and return seat numbers that are unassigned. :param seats: dict - seating chart. :return: list - list of seat numbers available for reserving.. """ available = [] for seat_num, value in seats.items(): if value is None: available.append(seat_num) return available def current_empty_seat_capacity(seats): """Find the number of seats that are currently empty. :param seats: dict - dictionary of reserved seats. :return: int - number of seats empty. """ count = 0 for value in seats.values(): if value is None: count += 1 return count def accommodate_waiting_guests(seats, guests): """Asses if guest can be accommodated. Update seating if they can be. :param seats: dict - seating chart dictionary. :param guests: list - walk-in guests :return: dict - updated seating chart with available spaces filled. """ curr_empty_seats = current_empty_seat_capacity(seats) empty_seat_list = find_all_available_seats(seats) if len(guests) <= curr_empty_seats: for index, _ in enumerate(guests): seats[empty_seat_list[index]] = guests[index] return seats def empty_seats(seats, seat_numbers): """Empty listed seats of their previous reservations. :param seats: dict - seating chart dictionary. :param seat_numbers: list - list of seat numbers to free up or empty. :return: updated seating chart dictionary. """ for seat in seat_numbers: seats[seat] = None return seats
def Articles(): articles = [ { 'id' : 1, 'title' : 'Article one', 'body' : 'Now ParseHub will call this handler every time the status of a run changes. It doesnt matter how long the run takes, or if it queued up on our servers for a while. Itll just work', 'auther': 'Refuge', 'create_date' : '04-24-2018' }, { 'id' : 2, 'title' : 'Article Two', 'body' : 'My Kickstarter project was a big success! Im now releasing a chapter of the new and improved Flask Mega-Tutorial every Tuesday here on this blog!', 'auther': 'Wise', 'create_date' : '04-26-2018' }, { 'id' : 3, 'title' : 'Article Three', 'body' : 'I have also created ebook and video versions of the complete tutorial, which Im offering for sale. Click on the book cover below for more information!', 'auther': 'Homie', 'create_date' : '04-30-2018' } ] return articles
DOMAIN = "ble_mesh" PLATFORM_LIGHT = "light" HANDLE_ID = 14 CMD_FUNCTION = 0xFB CMD_GPIO_CONTROL = 0xE7 CMD_OUT_1 = 0xF1 CMD_ON = 0x01 CMD_OFF = 0x00
for _ in range(int(input())): a, b = [int(i) for i in input().split()] if a > b: print(">") elif a < b: print("<") else: print("=")
a = list(input()) cnt = 0 x = 0 for i in range(len(a)-1): if a[i] == a[i+1]: cnt += 1 if x <= cnt: x = cnt elif a[i] != a[i+1]: cnt = 0 print(x+1)
# Test proper handling of exceptions within generator across yield def gen(): try: yield 1 raise ValueError print("FAIL") raise SystemExit except ValueError: pass yield 2 for i in gen(): print(i) # Test throwing exceptions out of generator def gen2(): yield 1 raise ValueError yield 2 yield 3 g = gen2() print(next(g)) try: print(next(g)) print("FAIL") raise SystemExit except ValueError: pass try: print(next(g)) print("FAIL") raise SystemExit except StopIteration: pass # Test throwing exception into generator def gen3(): yield 1 try: yield 2 print("FAIL") raise SystemExit except ValueError: yield 3 yield 4 yield 5 g = gen3() print(next(g)) print(next(g)) print("out of throw:", g.throw(ValueError)) print(next(g)) try: print("out of throw2:", g.throw(ValueError)) print("FAIL") raise SystemExit except ValueError: print("PASS")
with open("testfile.txt", "wb") as f1: for i in range(0, 65536): a = i//256 b = i%256 f1.write(bytes([a, b]))
# Array (mutable, resizable) class Array: # Declare the necessary values used for the Array _capacity = None _size = None _array = None # Initialize these values with the capacity chosen def __init__(self, capacity): self._capacity = capacity self._size = 0 self._array = [None] * capacity # Return the current size of the Array (how many items are in it) def get_size(self): return self._size # Return the current capacity of the Array (how many items it can hold) def get_capacity(self): return self._capacity # Return whether the Array is empty (True) or not (False) def is_empty(self): return True if self._size == 0 else False # Return the item at a given index, if the index is within bounds def at(self, index): if index < 0 or index >= self._size: # Check if index is out of bounds raise IndexError('Must enter a valid index') return self._array[index] # Return the index of the item we're searching for within our array, return -1 if not found def find(self, item): for i in range(self._size): if self._array[i] is item: # Check if current value of array is strictly equal to the given item return i # Found the item, return its index return -1 # Didn't find the item, return -1 # Push an item to the end of the array def push(self, item): if self._size == self._capacity: # Check if array size is at max capacity, adjust accordingly self._resize(self._capacity * 2) self._array[self._size] = item self._size += 1 # Insert an item in the desired index of the array def insert(self, index, item): if index < 0 or index > self._size: # Check if index is out of bounds raise IndexError('Must enter a valid index (for contiguous memory)') if self._size == self._capacity: # Check if array size is at max capacity, adjust accordingly self._resize(self._capacity * 2) if not index == self._size: # Check if the index I chose is the tail of my current array self._shift_indexes(index, True) # If it is not the tail, shift the indexes accordingly else: self._size += 1 # Update size manually, because ._shift_indexes wasn't called self._array[index] = item # Prepend an item at the head of the array def prepend(self, item): if self._size == self._capacity: # Check if array size is at max capacity, adjust accordingly self._resize(self._capacity * 2) if not self.is_empty(): # Check if array is empty, aka size is 0 self._shift_indexes(0, True) # If it is not empty, shift the indexes accordingly else: self._size += 1 # Update size manually, because ._shift_indexes wasn't called self._array[0] = item # Pop the tail of the array and return it def pop(self): _temp_tail = self._array[self._size - 1] # Store the tail of the array in a variable so we can return it later self._array[self._size - 1] = None # Remove the tail of the array self._size -= 1 if self._size <= self._capacity / 4: # Check if array size is 1/4 of max capacity, adjust accordingly self._resize(int(self._capacity / 2)) return _temp_tail # Delete the item at the given index of the array and return it def delete(self, index): if index < 0 or index >= self._size: # Check if index is out of bounds raise IndexError('Must enter a valid index') _temp_deleted = self._array[index] # Store the deleted item of the array in a variable to return later self._array[index] = None # Delete the item at the given index if not index == self._size - 1: # If the index is not the tail, will have to shift indexes self._shift_indexes(index, False) else: self._size -= 1 # Update size manually, because ._shift_indexes wasn't called if self._size <= self._capacity / 4: # Check if array size is 1/4 of max capacity, adjust accordingly self._resize(int(self._capacity / 2)) return _temp_deleted # Remove the item with the value passed in, and return its index def remove(self, item): _found_index = self.find(item) # Store the index returned from .find() in a variable if _found_index is -1: # Check if the returned index is -1, if so, raise a ValueError raise ValueError('Item not found, please enter a valid value') self._array[_found_index] = None # Remove the item from the array if not _found_index == self._size - 1: # If the index found is not the tail, will have to shift indexes self._shift_indexes(_found_index, False) else: self._size -= 1 # Update size manually, because ._shift_indexes wasn't called if self._size <= self._capacity / 4: # Check if array size is 1/4 of max capacity, adjust accordingly self._resize(int(self._capacity / 2)) return _found_index # (Private) Resize the array with the given (new) capacity def _resize(self, new_capacity): _temp_array = [None] * new_capacity # Allocate desired memory to a temporary array for i in range(self._size): _temp_array[i] = self._array[i] # Copy each value from the original array to the temporary array self._array = _temp_array # Update the original array to its resized version _temp_array = None # Deallocate memory from temporary array self._capacity = new_capacity # Update the capacity so it matches the resized array # (Private) Shift indexes to the right, or to the left, and update the array's size def _shift_indexes(self, start_index, shift_right): if shift_right is True: # Shift indexes to the right for i in range(self._size, start_index, -1): # Start from the tail of the array self._array[i] = self._array[i-1] self._size += 1 if shift_right is False: # Shift indexes to the left for i in range(start_index, self._size - 1): # Start from the index passed in self._array[i] = self._array[i+1] self._size -= 1
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon Aug 10 21:31:18 2020 @author: krishan """ class Mammal: def __init__(self, age): self.age = age def legs(self): print("Two Legs") def run(self): print("Slow") class Men(Mammal): def __init__(self, age, color): super().__init__(age) self.color = color def run(self): print("Fast") m = Men(5, 'blonde') m.run() m.legs() print(m.age) print(m.color)
class Solution: def nextGreaterElements(self, nums: list) -> list: if not nums: return [] monotonic_stack = [(nums[0], 0)] nums = nums + nums next_greater = {} for i, num in enumerate(nums[1:], 1): while monotonic_stack: if num > monotonic_stack[-1][0]: val, idx = monotonic_stack.pop() next_greater[(val, idx)] = num else: break if i < len(nums) // 2: monotonic_stack.append((num, i)) res = [-1] * (len(nums) // 2) for i, n in enumerate(nums[:len(nums) // 2]): if (n, i) in next_greater: res[i] = next_greater[(n, i)] return res
# List of rooms, characters, and weapons room_list = ['Study','Hall','Lounge','Library','Billiard','Dining','Conservatory','Ballroom','Kitchen'] hall_list = ['Hall A','Hall B','Hall C','Hall D','Hall E','Hall F','Hall G','Hall H','Hall I','Hall J','Hall K','Hall L'] character_list = ['Miss Scarlet','Mrs. Peacock','Professor Plum','Mr. Boddy','Mrs. White','Colonel Mustard'] weapon_list = ['Wrench','Candle Stick','Rope','Lead Pipe','Dagger','Revolver']
''' The MIT License (MIT) Copyright (c) 2016 WavyCloud Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ''' def add_client_id_to_open_id_connect_provider(OpenIDConnectProviderArn=None, ClientID=None): """ Adds a new client ID (also known as audience) to the list of client IDs already registered for the specified IAM OpenID Connect (OIDC) provider resource. This action is idempotent; it does not fail or return an error if you add an existing client ID to the provider. See also: AWS API Documentation Examples The following add-client-id-to-open-id-connect-provider command adds the client ID my-application-ID to the OIDC provider named server.example.com: Expected Output: :example: response = client.add_client_id_to_open_id_connect_provider( OpenIDConnectProviderArn='string', ClientID='string' ) :type OpenIDConnectProviderArn: string :param OpenIDConnectProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM OpenID Connect (OIDC) provider resource to add the client ID to. You can get a list of OIDC provider ARNs by using the ListOpenIDConnectProviders action. :type ClientID: string :param ClientID: [REQUIRED] The client ID (also known as audience) to add to the IAM OpenID Connect provider resource. :return: response = client.add_client_id_to_open_id_connect_provider( ClientID='my-application-ID', OpenIDConnectProviderArn='arn:aws:iam::123456789012:oidc-provider/server.example.com', ) print(response) """ pass def add_role_to_instance_profile(InstanceProfileName=None, RoleName=None): """ Adds the specified IAM role to the specified instance profile. An instance profile can contain only one role, and this limit cannot be increased. For more information about roles, go to Working with Roles . For more information about instance profiles, go to About Instance Profiles . See also: AWS API Documentation Examples The following command adds the role named S3Access to the instance profile named Webserver: Expected Output: :example: response = client.add_role_to_instance_profile( InstanceProfileName='string', RoleName='string' ) :type InstanceProfileName: string :param InstanceProfileName: [REQUIRED] The name of the instance profile to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type RoleName: string :param RoleName: [REQUIRED] The name of the role to add. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :return: response = client.add_role_to_instance_profile( InstanceProfileName='Webserver', RoleName='S3Access', ) print(response) """ pass def add_user_to_group(GroupName=None, UserName=None): """ Adds the specified user to the specified group. See also: AWS API Documentation Examples The following command adds an IAM user named Bob to the IAM group named Admins: Expected Output: :example: response = client.add_user_to_group( GroupName='string', UserName='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name of the group to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type UserName: string :param UserName: [REQUIRED] The name of the user to add. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.add_user_to_group( GroupName='Admins', UserName='Bob', ) print(response) """ pass def attach_group_policy(GroupName=None, PolicyArn=None): """ Attaches the specified managed policy to the specified IAM group. You use this API to attach a managed policy to a group. To embed an inline policy in a group, use PutGroupPolicy . For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation Examples The following command attaches the AWS managed policy named ReadOnlyAccess to the IAM group named Finance. Expected Output: :example: response = client.attach_group_policy( GroupName='string', PolicyArn='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name (friendly name, not ARN) of the group to attach the policy to. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to attach. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :return: response = client.attach_group_policy( GroupName='Finance', PolicyArn='arn:aws:iam::aws:policy/ReadOnlyAccess', ) print(response) """ pass def attach_role_policy(RoleName=None, PolicyArn=None): """ Attaches the specified managed policy to the specified IAM role. When you attach a managed policy to a role, the managed policy becomes part of the role's permission (access) policy. Use this API to attach a managed policy to a role. To embed an inline policy in a role, use PutRolePolicy . For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation Examples The following command attaches the AWS managed policy named ReadOnlyAccess to the IAM role named ReadOnlyRole. Expected Output: :example: response = client.attach_role_policy( RoleName='string', PolicyArn='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name (friendly name, not ARN) of the role to attach the policy to. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to attach. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :return: response = client.attach_role_policy( PolicyArn='arn:aws:iam::aws:policy/ReadOnlyAccess', RoleName='ReadOnlyRole', ) print(response) """ pass def attach_user_policy(UserName=None, PolicyArn=None): """ Attaches the specified managed policy to the specified user. You use this API to attach a managed policy to a user. To embed an inline policy in a user, use PutUserPolicy . For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation Examples The following command attaches the AWS managed policy named AdministratorAccess to the IAM user named Alice. Expected Output: :example: response = client.attach_user_policy( UserName='string', PolicyArn='string' ) :type UserName: string :param UserName: [REQUIRED] The name (friendly name, not ARN) of the IAM user to attach the policy to. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to attach. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :return: response = client.attach_user_policy( PolicyArn='arn:aws:iam::aws:policy/AdministratorAccess', UserName='Alice', ) print(response) """ pass def can_paginate(operation_name=None): """ Check if an operation can be paginated. :type operation_name: string :param operation_name: The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator('create_foo'). """ pass def change_password(OldPassword=None, NewPassword=None): """ Changes the password of the IAM user who is calling this action. The root account password is not affected by this action. To change the password for a different user, see UpdateLoginProfile . For more information about modifying passwords, see Managing Passwords in the IAM User Guide . See also: AWS API Documentation Examples The following command changes the password for the current IAM user. Expected Output: :example: response = client.change_password( OldPassword='string', NewPassword='string' ) :type OldPassword: string :param OldPassword: [REQUIRED] The IAM user's current password. :type NewPassword: string :param NewPassword: [REQUIRED] The new password. The new password must conform to the AWS account's password policy, if one exists. The regex pattern used to validate this parameter is a string of characters consisting of almost any printable ASCII character from the space (u0020) through the end of the ASCII character range (u00FF). You can also include the tab (u0009), line feed (u000A), and carriage return (u000D) characters. Although any of these characters are valid in a password, note that many tools, such as the AWS Management Console, might restrict the ability to enter certain characters because they have special meaning within that tool. :return: response = client.change_password( NewPassword=']35d/{pB9Fo9wJ', OldPassword='3s0K_;xh4~8XXI', ) print(response) """ pass def create_access_key(UserName=None): """ Creates a new AWS secret access key and corresponding AWS access key ID for the specified user. The default status for new keys is Active . If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. For information about limits on the number of keys you can create, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command creates an access key (access key ID and secret access key) for the IAM user named Bob. Expected Output: :example: response = client.create_access_key( UserName='string' ) :type UserName: string :param UserName: The name of the IAM user that the new key will belong to. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'AccessKey': { 'UserName': 'string', 'AccessKeyId': 'string', 'Status': 'Active'|'Inactive', 'SecretAccessKey': 'string', 'CreateDate': datetime(2015, 1, 1) } } """ pass def create_account_alias(AccountAlias=None): """ Creates an alias for your AWS account. For information about using an AWS account alias, see Using an Alias for Your AWS Account ID in the IAM User Guide . See also: AWS API Documentation Examples The following command associates the alias examplecorp to your AWS account. Expected Output: :example: response = client.create_account_alias( AccountAlias='string' ) :type AccountAlias: string :param AccountAlias: [REQUIRED] The account alias to create. This parameter allows (per its regex pattern ) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row. :return: response = client.create_account_alias( AccountAlias='examplecorp', ) print(response) """ pass def create_group(Path=None, GroupName=None): """ Creates a new group. For information about the number of groups you can create, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command creates an IAM group named Admins. Expected Output: :example: response = client.create_group( Path='string', GroupName='string' ) :type Path: string :param Path: The path to the group. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type GroupName: string :param GroupName: [REQUIRED] The name of the group to create. Do not include the path in this value. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-. The group name must be unique within the account. Group names are not distinguished by case. For example, you cannot create groups named both 'ADMINS' and 'admins'. :rtype: dict :return: { 'Group': { 'Path': 'string', 'GroupName': 'string', 'GroupId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1) } } """ pass def create_instance_profile(InstanceProfileName=None, Path=None): """ Creates a new instance profile. For information about instance profiles, go to About Instance Profiles . For information about the number of instance profiles you can create, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command creates an instance profile named Webserver that is ready to have a role attached and then be associated with an EC2 instance. Expected Output: :example: response = client.create_instance_profile( InstanceProfileName='string', Path='string' ) :type InstanceProfileName: string :param InstanceProfileName: [REQUIRED] The name of the instance profile to create. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Path: string :param Path: The path to the instance profile. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :rtype: dict :return: { 'InstanceProfile': { 'Path': 'string', 'InstanceProfileName': 'string', 'InstanceProfileId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'Roles': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' }, ] } } """ pass def create_login_profile(UserName=None, Password=None, PasswordResetRequired=None): """ Creates a password for the specified user, giving the user the ability to access AWS services through the AWS Management Console. For more information about managing passwords, see Managing Passwords in the IAM User Guide . See also: AWS API Documentation Examples The following command changes IAM user Bob's password and sets the flag that required Bob to change the password the next time he signs in. Expected Output: :example: response = client.create_login_profile( UserName='string', Password='string', PasswordResetRequired=True|False ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user to create a password for. The user must already exist. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Password: string :param Password: [REQUIRED] The new password for the user. The regex pattern used to validate this parameter is a string of characters consisting of almost any printable ASCII character from the space (u0020) through the end of the ASCII character range (u00FF). You can also include the tab (u0009), line feed (u000A), and carriage return (u000D) characters. Although any of these characters are valid in a password, note that many tools, such as the AWS Management Console, might restrict the ability to enter certain characters because they have special meaning within that tool. :type PasswordResetRequired: boolean :param PasswordResetRequired: Specifies whether the user is required to set a new password on next sign-in. :rtype: dict :return: { 'LoginProfile': { 'UserName': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordResetRequired': True|False } } """ pass def create_open_id_connect_provider(Url=None, ClientIDList=None, ThumbprintList=None): """ Creates an IAM entity to describe an identity provider (IdP) that supports OpenID Connect (OIDC) . The OIDC provider that you create with this operation can be used as a principal in a role's trust policy to establish a trust relationship between AWS and the OIDC provider. When you create the IAM OIDC provider, you specify the URL of the OIDC identity provider (IdP) to trust, a list of client IDs (also known as audiences) that identify the application or applications that are allowed to authenticate using the OIDC provider, and a list of thumbprints of the server certificate(s) that the IdP uses. You get all of this information from the OIDC IdP that you want to use for access to AWS. See also: AWS API Documentation Examples The following example defines a new OIDC provider in IAM with a client ID of my-application-id and pointing at the server with a URL of https://server.example.com. Expected Output: :example: response = client.create_open_id_connect_provider( Url='string', ClientIDList=[ 'string', ], ThumbprintList=[ 'string', ] ) :type Url: string :param Url: [REQUIRED] The URL of the identity provider. The URL must begin with 'https://' and should correspond to the iss claim in the provider's OpenID Connect ID tokens. Per the OIDC standard, path components are allowed but query parameters are not. Typically the URL consists of only a host name, like 'https://server.example.org' or 'https://example.com'. You cannot register the same provider multiple times in a single AWS account. If you try to submit a URL that has already been used for an OpenID Connect provider in the AWS account, you will get an error. :type ClientIDList: list :param ClientIDList: A list of client IDs (also known as audiences). When a mobile or web app registers with an OpenID Connect provider, they establish a value that identifies the application. (This is the value that's sent as the client_id parameter on OAuth requests.) You can register multiple client IDs with the same provider. For example, you might have multiple applications that use the same OIDC provider. You cannot register more than 100 client IDs with a single IAM OIDC provider. There is no defined format for a client ID. The CreateOpenIDConnectProviderRequest action accepts client IDs up to 255 characters long. (string) -- :type ThumbprintList: list :param ThumbprintList: [REQUIRED] A list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s). Typically this list includes only one entry. However, IAM lets you have up to five thumbprints for an OIDC provider. This lets you maintain multiple thumbprints if the identity provider is rotating certificates. The server certificate thumbprint is the hex-encoded SHA-1 hash value of the X.509 certificate used by the domain where the OpenID Connect provider makes its keys available. It is always a 40-character string. You must provide at least one thumbprint when creating an IAM OIDC provider. For example, if the OIDC provider is server.example.com and the provider stores its keys at 'https://keys.server.example.com/openid-connect', the thumbprint string would be the hex-encoded SHA-1 hash value of the certificate used by https://keys.server.example.com. For more information about obtaining the OIDC provider's thumbprint, see Obtaining the Thumbprint for an OpenID Connect Provider in the IAM User Guide . (string) --Contains a thumbprint for an identity provider's server certificate. The identity provider's server certificate thumbprint is the hex-encoded SHA-1 hash value of the self-signed X.509 certificate used by the domain where the OpenID Connect provider makes its keys available. It is always a 40-character string. :rtype: dict :return: { 'OpenIDConnectProviderArn': 'string' } """ pass def create_policy(PolicyName=None, Path=None, PolicyDocument=None, Description=None): """ Creates a new managed policy for your AWS account. This operation creates a policy version with a version identifier of v1 and sets v1 as the policy's default version. For more information about policy versions, see Versioning for Managed Policies in the IAM User Guide . For more information about managed policies in general, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.create_policy( PolicyName='string', Path='string', PolicyDocument='string', Description='string' ) :type PolicyName: string :param PolicyName: [REQUIRED] The friendly name of the policy. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Path: string :param Path: The path for the policy. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type PolicyDocument: string :param PolicyDocument: [REQUIRED] The JSON policy document that you want to use as the content for the new policy. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type Description: string :param Description: A friendly description of the policy. Typically used to store information about the permissions defined in the policy. For example, 'Grants access to production DynamoDB tables.' The policy description is immutable. After a value is assigned, it cannot be changed. :rtype: dict :return: { 'Policy': { 'PolicyName': 'string', 'PolicyId': 'string', 'Arn': 'string', 'Path': 'string', 'DefaultVersionId': 'string', 'AttachmentCount': 123, 'IsAttachable': True|False, 'Description': 'string', 'CreateDate': datetime(2015, 1, 1), 'UpdateDate': datetime(2015, 1, 1) } } """ pass def create_policy_version(PolicyArn=None, PolicyDocument=None, SetAsDefault=None): """ Creates a new version of the specified managed policy. To update a managed policy, you create a new policy version. A managed policy can have up to five versions. If the policy has five versions, you must delete an existing version using DeletePolicyVersion before you create a new version. Optionally, you can set the new version as the policy's default version. The default version is the version that is in effect for the IAM users, groups, and roles to which the policy is attached. For more information about managed policy versions, see Versioning for Managed Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.create_policy_version( PolicyArn='string', PolicyDocument='string', SetAsDefault=True|False ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy to which you want to add a new version. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type PolicyDocument: string :param PolicyDocument: [REQUIRED] The JSON policy document that you want to use as the content for this new version of the policy. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type SetAsDefault: boolean :param SetAsDefault: Specifies whether to set this version as the policy's default version. When this parameter is true , the new policy version becomes the operative version; that is, the version that is in effect for the IAM users, groups, and roles that the policy is attached to. For more information about managed policy versions, see Versioning for Managed Policies in the IAM User Guide . :rtype: dict :return: { 'PolicyVersion': { 'Document': 'string', 'VersionId': 'string', 'IsDefaultVersion': True|False, 'CreateDate': datetime(2015, 1, 1) } } """ pass def create_role(Path=None, RoleName=None, AssumeRolePolicyDocument=None, Description=None): """ Creates a new role for your AWS account. For more information about roles, go to Working with Roles . For information about limitations on role names and the number of roles you can create, go to Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command creates a role named Test-Role and attaches a trust policy to it that is provided as a URL-encoded JSON string. Expected Output: :example: response = client.create_role( Path='string', RoleName='string', AssumeRolePolicyDocument='string', Description='string' ) :type Path: string :param Path: The path to the role. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type RoleName: string :param RoleName: [REQUIRED] The name of the role to create. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- Role names are not distinguished by case. For example, you cannot create roles named both 'PRODROLE' and 'prodrole'. :type AssumeRolePolicyDocument: string :param AssumeRolePolicyDocument: [REQUIRED] The trust relationship policy document that grants an entity permission to assume the role. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type Description: string :param Description: A customer-provided description of the role. :rtype: dict :return: { 'Role': { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' } } """ pass def create_saml_provider(SAMLMetadataDocument=None, Name=None): """ Creates an IAM resource that describes an identity provider (IdP) that supports SAML 2.0. The SAML provider resource that you create with this operation can be used as a principal in an IAM role's trust policy to enable federated users who sign-in using the SAML IdP to assume the role. You can create an IAM role that supports Web-based single sign-on (SSO) to the AWS Management Console or one that supports API access to AWS. When you create the SAML provider resource, you upload an a SAML metadata document that you get from your IdP and that includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that the IdP sends. You must generate the metadata document using the identity management software that is used as your organization's IdP. For more information, see Enabling SAML 2.0 Federated Users to Access the AWS Management Console and About SAML 2.0-based Federation in the IAM User Guide . See also: AWS API Documentation :example: response = client.create_saml_provider( SAMLMetadataDocument='string', Name='string' ) :type SAMLMetadataDocument: string :param SAMLMetadataDocument: [REQUIRED] An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP. For more information, see About SAML 2.0-based Federation in the IAM User Guide :type Name: string :param Name: [REQUIRED] The name of the provider to create. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'SAMLProviderArn': 'string' } """ pass def create_service_linked_role(AWSServiceName=None, Description=None, CustomSuffix=None): """ Creates an IAM role that is linked to a specific AWS service. The service controls the attached policies and when the role can be deleted. This helps ensure that the service is not broken by an unexpectedly changed or deleted role, which could put your AWS resources into an unknown state. Allowing the service to control the role helps improve service stability and proper cleanup when a service and its role are no longer needed. The name of the role is autogenerated by combining the string that you specify for the AWSServiceName parameter with the string that you specify for the CustomSuffix parameter. The resulting name must be unique in your account or the request fails. To attach a policy to this service-linked role, you must make the request using the AWS service that depends on this role. See also: AWS API Documentation :example: response = client.create_service_linked_role( AWSServiceName='string', Description='string', CustomSuffix='string' ) :type AWSServiceName: string :param AWSServiceName: [REQUIRED] The AWS service to which this role is attached. You use a string similar to a URL but without the http:// in front. For example: elasticbeanstalk.amazonaws.com :type Description: string :param Description: The description of the role. :type CustomSuffix: string :param CustomSuffix: A string that you provide, which is combined with the service name to form the complete role name. If you make multiple requests for the same service, then you must supply a different CustomSuffix for each request. Otherwise the request fails with a duplicate role name error. For example, you could add -1 or -debug to the suffix. :rtype: dict :return: { 'Role': { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' } } """ pass def create_service_specific_credential(UserName=None, ServiceName=None): """ Generates a set of credentials consisting of a user name and password that can be used to access the service specified in the request. These credentials are generated by IAM, and can be used only for the specified service. You can have a maximum of two sets of service-specific credentials for each supported service per user. The only supported service at this time is AWS CodeCommit. You can reset the password to a new service-generated value by calling ResetServiceSpecificCredential . For more information about service-specific credentials, see Using IAM with AWS CodeCommit: Git Credentials, SSH Keys, and AWS Access Keys in the IAM User Guide . See also: AWS API Documentation :example: response = client.create_service_specific_credential( UserName='string', ServiceName='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user that is to be associated with the credentials. The new service-specific credentials have the same permissions as the associated user except that they can be used only to access the specified service. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type ServiceName: string :param ServiceName: [REQUIRED] The name of the AWS service that is to be associated with the credentials. The service you specify here is the only service that can be accessed using these credentials. :rtype: dict :return: { 'ServiceSpecificCredential': { 'CreateDate': datetime(2015, 1, 1), 'ServiceName': 'string', 'ServiceUserName': 'string', 'ServicePassword': 'string', 'ServiceSpecificCredentialId': 'string', 'UserName': 'string', 'Status': 'Active'|'Inactive' } } """ pass def create_user(Path=None, UserName=None): """ Creates a new IAM user for your AWS account. For information about limitations on the number of IAM users you can create, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following create-user command creates an IAM user named Bob in the current account. Expected Output: :example: response = client.create_user( Path='string', UserName='string' ) :type Path: string :param Path: The path for the user name. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type UserName: string :param UserName: [REQUIRED] The name of the user to create. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-. User names are not distinguished by case. For example, you cannot create users named both 'TESTUSER' and 'testuser'. :rtype: dict :return: { 'User': { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordLastUsed': datetime(2015, 1, 1) } } :returns: The user does not have a password The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014 there is no sign-in data associated with the user """ pass def create_virtual_mfa_device(Path=None, VirtualMFADeviceName=None): """ Creates a new virtual MFA device for the AWS account. After creating the virtual MFA, use EnableMFADevice to attach the MFA device to an IAM user. For more information about creating and working with virtual MFA devices, go to Using a Virtual MFA Device in the IAM User Guide . For information about limits on the number of MFA devices you can create, see Limitations on Entities in the IAM User Guide . See also: AWS API Documentation :example: response = client.create_virtual_mfa_device( Path='string', VirtualMFADeviceName='string' ) :type Path: string :param Path: The path for the virtual MFA device. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type VirtualMFADeviceName: string :param VirtualMFADeviceName: [REQUIRED] The name of the virtual MFA device. Use with path to uniquely identify a virtual MFA device. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'VirtualMFADevice': { 'SerialNumber': 'string', 'Base32StringSeed': b'bytes', 'QRCodePNG': b'bytes', 'User': { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordLastUsed': datetime(2015, 1, 1) }, 'EnableDate': datetime(2015, 1, 1) } } :returns: The user does not have a password The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014 there is no sign-in data associated with the user """ pass def deactivate_mfa_device(UserName=None, SerialNumber=None): """ Deactivates the specified MFA device and removes it from association with the user name for which it was originally enabled. For more information about creating and working with virtual MFA devices, go to Using a Virtual MFA Device in the IAM User Guide . See also: AWS API Documentation :example: response = client.deactivate_mfa_device( UserName='string', SerialNumber='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user whose MFA device you want to deactivate. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SerialNumber: string :param SerialNumber: [REQUIRED] The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@:/- """ pass def delete_access_key(UserName=None, AccessKeyId=None): """ Deletes the access key pair associated with the specified IAM user. If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. See also: AWS API Documentation Examples The following command deletes one access key (access key ID and secret access key) assigned to the IAM user named Bob. Expected Output: :example: response = client.delete_access_key( UserName='string', AccessKeyId='string' ) :type UserName: string :param UserName: The name of the user whose access key pair you want to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type AccessKeyId: string :param AccessKeyId: [REQUIRED] The access key ID for the access key ID and secret access key you want to delete. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :return: response = client.delete_access_key( AccessKeyId='AKIDPMS9RO4H3FEXAMPLE', UserName='Bob', ) print(response) """ pass def delete_account_alias(AccountAlias=None): """ Deletes the specified AWS account alias. For information about using an AWS account alias, see Using an Alias for Your AWS Account ID in the IAM User Guide . See also: AWS API Documentation Examples The following command removes the alias mycompany from the current AWS account: Expected Output: :example: response = client.delete_account_alias( AccountAlias='string' ) :type AccountAlias: string :param AccountAlias: [REQUIRED] The name of the account alias to delete. This parameter allows (per its regex pattern ) a string of characters consisting of lowercase letters, digits, and dashes. You cannot start or finish with a dash, nor can you have two dashes in a row. :return: response = client.delete_account_alias( AccountAlias='mycompany', ) print(response) """ pass def delete_account_password_policy(): """ Deletes the password policy for the AWS account. There are no parameters. See also: AWS API Documentation Examples The following command removes the password policy from the current AWS account: Expected Output: :example: response = client.delete_account_password_policy() :return: response = client.delete_account_password_policy( ) print(response) """ pass def delete_group(GroupName=None): """ Deletes the specified IAM group. The group must not contain any users or have any attached policies. See also: AWS API Documentation :example: response = client.delete_group( GroupName='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name of the IAM group to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- """ pass def delete_group_policy(GroupName=None, PolicyName=None): """ Deletes the specified inline policy that is embedded in the specified IAM group. A group can also have managed policies attached to it. To detach a managed policy from a group, use DetachGroupPolicy . For more information about policies, refer to Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation Examples The following command deletes the policy named ExamplePolicy from the group named Admins: Expected Output: :example: response = client.delete_group_policy( GroupName='string', PolicyName='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name (friendly name, not ARN) identifying the group that the policy is embedded in. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name identifying the policy document to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.delete_group_policy( GroupName='Admins', PolicyName='ExamplePolicy', ) print(response) """ pass def delete_instance_profile(InstanceProfileName=None): """ Deletes the specified instance profile. The instance profile must not have an associated role. For more information about instance profiles, go to About Instance Profiles . See also: AWS API Documentation Examples The following command deletes the instance profile named ExampleInstanceProfile Expected Output: :example: response = client.delete_instance_profile( InstanceProfileName='string' ) :type InstanceProfileName: string :param InstanceProfileName: [REQUIRED] The name of the instance profile to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.delete_instance_profile( InstanceProfileName='ExampleInstanceProfile', ) print(response) """ pass def delete_login_profile(UserName=None): """ Deletes the password for the specified IAM user, which terminates the user's ability to access AWS services through the AWS Management Console. See also: AWS API Documentation Examples The following command deletes the password for the IAM user named Bob. Expected Output: :example: response = client.delete_login_profile( UserName='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user whose password you want to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.delete_login_profile( UserName='Bob', ) print(response) """ pass def delete_open_id_connect_provider(OpenIDConnectProviderArn=None): """ Deletes an OpenID Connect identity provider (IdP) resource object in IAM. Deleting an IAM OIDC provider resource does not update any roles that reference the provider as a principal in their trust policies. Any attempt to assume a role that references a deleted provider fails. This action is idempotent; it does not fail or return an error if you call the action for a provider that does not exist. See also: AWS API Documentation :example: response = client.delete_open_id_connect_provider( OpenIDConnectProviderArn='string' ) :type OpenIDConnectProviderArn: string :param OpenIDConnectProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM OpenID Connect provider resource object to delete. You can get a list of OpenID Connect provider resource ARNs by using the ListOpenIDConnectProviders action. """ pass def delete_policy(PolicyArn=None): """ Deletes the specified managed policy. Before you can delete a managed policy, you must first detach the policy from all users, groups, and roles that it is attached to, and you must delete all of the policy's versions. The following steps describe the process for deleting a managed policy: For information about managed policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.delete_policy( PolicyArn='string' ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to delete. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . """ pass def delete_policy_version(PolicyArn=None, VersionId=None): """ Deletes the specified version from the specified managed policy. You cannot delete the default version from a policy using this API. To delete the default version from a policy, use DeletePolicy . To find out which version of a policy is marked as the default version, use ListPolicyVersions . For information about versions for managed policies, see Versioning for Managed Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.delete_policy_version( PolicyArn='string', VersionId='string' ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy from which you want to delete a version. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type VersionId: string :param VersionId: [REQUIRED] The policy version to delete. This parameter allows (per its regex pattern ) a string of characters that consists of the lowercase letter 'v' followed by one or two digits, and optionally followed by a period '.' and a string of letters and digits. For more information about managed policy versions, see Versioning for Managed Policies in the IAM User Guide . """ pass def delete_role(RoleName=None): """ Deletes the specified role. The role must not have any policies attached. For more information about roles, go to Working with Roles . See also: AWS API Documentation Examples The following command removes the role named Test-Role. Expected Output: :example: response = client.delete_role( RoleName='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :return: response = client.delete_role( RoleName='Test-Role', ) print(response) """ pass def delete_role_policy(RoleName=None, PolicyName=None): """ Deletes the specified inline policy that is embedded in the specified IAM role. A role can also have managed policies attached to it. To detach a managed policy from a role, use DetachRolePolicy . For more information about policies, refer to Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation Examples The following command removes the policy named ExamplePolicy from the role named Test-Role. Expected Output: :example: response = client.delete_role_policy( RoleName='string', PolicyName='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name (friendly name, not ARN) identifying the role that the policy is embedded in. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the inline policy to delete from the specified IAM role. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.delete_role_policy( PolicyName='ExamplePolicy', RoleName='Test-Role', ) print(response) """ pass def delete_saml_provider(SAMLProviderArn=None): """ Deletes a SAML provider resource in IAM. Deleting the provider resource from IAM does not update any roles that reference the SAML provider resource's ARN as a principal in their trust policies. Any attempt to assume a role that references a non-existent provider resource ARN fails. See also: AWS API Documentation :example: response = client.delete_saml_provider( SAMLProviderArn='string' ) :type SAMLProviderArn: string :param SAMLProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the SAML provider to delete. """ pass def delete_server_certificate(ServerCertificateName=None): """ Deletes the specified server certificate. For more information about working with server certificates, including a list of AWS services that can use the server certificates that you manage with IAM, go to Working with Server Certificates in the IAM User Guide . See also: AWS API Documentation :example: response = client.delete_server_certificate( ServerCertificateName='string' ) :type ServerCertificateName: string :param ServerCertificateName: [REQUIRED] The name of the server certificate you want to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- """ pass def delete_service_specific_credential(UserName=None, ServiceSpecificCredentialId=None): """ Deletes the specified service-specific credential. See also: AWS API Documentation :example: response = client.delete_service_specific_credential( UserName='string', ServiceSpecificCredentialId='string' ) :type UserName: string :param UserName: The name of the IAM user associated with the service-specific credential. If this value is not specified, then the operation assumes the user whose credentials are used to call the operation. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type ServiceSpecificCredentialId: string :param ServiceSpecificCredentialId: [REQUIRED] The unique identifier of the service-specific credential. You can get this value by calling ListServiceSpecificCredentials . This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. """ pass def delete_signing_certificate(UserName=None, CertificateId=None): """ Deletes a signing certificate associated with the specified IAM user. If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated IAM users. See also: AWS API Documentation Examples The following command deletes the specified signing certificate for the IAM user named Anika. Expected Output: :example: response = client.delete_signing_certificate( UserName='string', CertificateId='string' ) :type UserName: string :param UserName: The name of the user the signing certificate belongs to. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type CertificateId: string :param CertificateId: [REQUIRED] The ID of the signing certificate to delete. The format of this parameter, as described by its regex pattern, is a string of characters that can be upper- or lower-cased letters or digits. :return: response = client.delete_signing_certificate( CertificateId='TA7SMP42TDN5Z26OBPJE7EXAMPLE', UserName='Anika', ) print(response) """ pass def delete_ssh_public_key(UserName=None, SSHPublicKeyId=None): """ Deletes the specified SSH public key. The SSH public key deleted by this action is used only for authenticating the associated IAM user to an AWS CodeCommit repository. For more information about using SSH keys to authenticate to an AWS CodeCommit repository, see Set up AWS CodeCommit for SSH Connections in the AWS CodeCommit User Guide . See also: AWS API Documentation :example: response = client.delete_ssh_public_key( UserName='string', SSHPublicKeyId='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user associated with the SSH public key. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SSHPublicKeyId: string :param SSHPublicKeyId: [REQUIRED] The unique identifier for the SSH public key. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. """ pass def delete_user(UserName=None): """ Deletes the specified IAM user. The user must not belong to any groups or have any access keys, signing certificates, or attached policies. See also: AWS API Documentation Examples The following command removes the IAM user named Bob from the current account. Expected Output: :example: response = client.delete_user( UserName='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.delete_user( UserName='Bob', ) print(response) """ pass def delete_user_policy(UserName=None, PolicyName=None): """ Deletes the specified inline policy that is embedded in the specified IAM user. A user can also have managed policies attached to it. To detach a managed policy from a user, use DetachUserPolicy . For more information about policies, refer to Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation Examples The following delete-user-policy command removes the specified policy from the IAM user named Juan: Expected Output: :example: response = client.delete_user_policy( UserName='string', PolicyName='string' ) :type UserName: string :param UserName: [REQUIRED] The name (friendly name, not ARN) identifying the user that the policy is embedded in. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name identifying the policy document to delete. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.delete_user_policy( PolicyName='ExamplePolicy', UserName='Juan', ) print(response) """ pass def delete_virtual_mfa_device(SerialNumber=None): """ Deletes a virtual MFA device. See also: AWS API Documentation Examples The following delete-virtual-mfa-device command removes the specified MFA device from the current AWS account. Expected Output: :example: response = client.delete_virtual_mfa_device( SerialNumber='string' ) :type SerialNumber: string :param SerialNumber: [REQUIRED] The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the same as the ARN. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@:/- :return: response = client.delete_virtual_mfa_device( SerialNumber='arn:aws:iam::123456789012:mfa/ExampleName', ) print(response) """ pass def detach_group_policy(GroupName=None, PolicyArn=None): """ Removes the specified managed policy from the specified IAM group. A group can also have inline policies embedded with it. To delete an inline policy, use the DeleteGroupPolicy API. For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.detach_group_policy( GroupName='string', PolicyArn='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name (friendly name, not ARN) of the IAM group to detach the policy from. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to detach. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . """ pass def detach_role_policy(RoleName=None, PolicyArn=None): """ Removes the specified managed policy from the specified role. A role can also have inline policies embedded with it. To delete an inline policy, use the DeleteRolePolicy API. For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.detach_role_policy( RoleName='string', PolicyArn='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name (friendly name, not ARN) of the IAM role to detach the policy from. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to detach. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . """ pass def detach_user_policy(UserName=None, PolicyArn=None): """ Removes the specified managed policy from the specified user. A user can also have inline policies embedded with it. To delete an inline policy, use the DeleteUserPolicy API. For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.detach_user_policy( UserName='string', PolicyArn='string' ) :type UserName: string :param UserName: [REQUIRED] The name (friendly name, not ARN) of the IAM user to detach the policy from. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy you want to detach. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . """ pass def enable_mfa_device(UserName=None, SerialNumber=None, AuthenticationCode1=None, AuthenticationCode2=None): """ Enables the specified MFA device and associates it with the specified IAM user. When enabled, the MFA device is required for every subsequent login by the IAM user associated with the device. See also: AWS API Documentation :example: response = client.enable_mfa_device( UserName='string', SerialNumber='string', AuthenticationCode1='string', AuthenticationCode2='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user for whom you want to enable the MFA device. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SerialNumber: string :param SerialNumber: [REQUIRED] The serial number that uniquely identifies the MFA device. For virtual MFA devices, the serial number is the device ARN. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@:/- :type AuthenticationCode1: string :param AuthenticationCode1: [REQUIRED] An authentication code emitted by the device. The format for this parameter is a string of 6 digits. Warning Submit your request immediately after generating the authentication codes. If you generate the codes and then wait too long to submit the request, the MFA device successfully associates with the user but the MFA device becomes out of sync. This happens because time-based one-time passwords (TOTP) expire after a short period of time. If this happens, you can resync the device . :type AuthenticationCode2: string :param AuthenticationCode2: [REQUIRED] A subsequent authentication code emitted by the device. The format for this parameter is a string of 6 digits. Warning Submit your request immediately after generating the authentication codes. If you generate the codes and then wait too long to submit the request, the MFA device successfully associates with the user but the MFA device becomes out of sync. This happens because time-based one-time passwords (TOTP) expire after a short period of time. If this happens, you can resync the device . """ pass def generate_credential_report(): """ Generates a credential report for the AWS account. For more information about the credential report, see Getting Credential Reports in the IAM User Guide . See also: AWS API Documentation :example: response = client.generate_credential_report() :rtype: dict :return: { 'State': 'STARTED'|'INPROGRESS'|'COMPLETE', 'Description': 'string' } """ pass def generate_presigned_url(ClientMethod=None, Params=None, ExpiresIn=None, HttpMethod=None): """ Generate a presigned url given a client, its method, and arguments :type ClientMethod: string :param ClientMethod: The client method to presign for :type Params: dict :param Params: The parameters normally passed to ClientMethod. :type ExpiresIn: int :param ExpiresIn: The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds) :type HttpMethod: string :param HttpMethod: The http method to use on the generated url. By default, the http method is whatever is used in the method's model. """ pass def get_access_key_last_used(AccessKeyId=None): """ Retrieves information about when the specified access key was last used. The information includes the date and time of last use, along with the AWS service and region that were specified in the last request made with that key. See also: AWS API Documentation :example: response = client.get_access_key_last_used( AccessKeyId='string' ) :type AccessKeyId: string :param AccessKeyId: [REQUIRED] The identifier of an access key. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :rtype: dict :return: { 'UserName': 'string', 'AccessKeyLastUsed': { 'LastUsedDate': datetime(2015, 1, 1), 'ServiceName': 'string', 'Region': 'string' } } :returns: The user does not have an access key. An access key exists but has never been used, at least not since IAM started tracking this information on April 22nd, 2015. There is no sign-in data associated with the user """ pass def get_account_authorization_details(Filter=None, MaxItems=None, Marker=None): """ Retrieves information about all IAM users, groups, roles, and policies in your AWS account, including their relationships to one another. Use this API to obtain a snapshot of the configuration of IAM permissions (users, groups, roles, and policies) in your account. You can optionally filter the results using the Filter parameter. You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.get_account_authorization_details( Filter=[ 'User'|'Role'|'Group'|'LocalManagedPolicy'|'AWSManagedPolicy', ], MaxItems=123, Marker='string' ) :type Filter: list :param Filter: A list of entity types used to filter the results. Only the entities that match the types you specify are included in the output. Use the value LocalManagedPolicy to include customer managed policies. The format for this parameter is a comma-separated (if more than one) list of strings. Each string value in the list must be one of the valid values listed below. (string) -- :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :rtype: dict :return: { 'UserDetailList': [ { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'UserPolicyList': [ { 'PolicyName': 'string', 'PolicyDocument': 'string' }, ], 'GroupList': [ 'string', ], 'AttachedManagedPolicies': [ { 'PolicyName': 'string', 'PolicyArn': 'string' }, ] }, ], 'GroupDetailList': [ { 'Path': 'string', 'GroupName': 'string', 'GroupId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'GroupPolicyList': [ { 'PolicyName': 'string', 'PolicyDocument': 'string' }, ], 'AttachedManagedPolicies': [ { 'PolicyName': 'string', 'PolicyArn': 'string' }, ] }, ], 'RoleDetailList': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'InstanceProfileList': [ { 'Path': 'string', 'InstanceProfileName': 'string', 'InstanceProfileId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'Roles': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' }, ] }, ], 'RolePolicyList': [ { 'PolicyName': 'string', 'PolicyDocument': 'string' }, ], 'AttachedManagedPolicies': [ { 'PolicyName': 'string', 'PolicyArn': 'string' }, ] }, ], 'Policies': [ { 'PolicyName': 'string', 'PolicyId': 'string', 'Arn': 'string', 'Path': 'string', 'DefaultVersionId': 'string', 'AttachmentCount': 123, 'IsAttachable': True|False, 'Description': 'string', 'CreateDate': datetime(2015, 1, 1), 'UpdateDate': datetime(2015, 1, 1), 'PolicyVersionList': [ { 'Document': 'string', 'VersionId': 'string', 'IsDefaultVersion': True|False, 'CreateDate': datetime(2015, 1, 1) }, ] }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def get_account_password_policy(): """ Retrieves the password policy for the AWS account. For more information about using a password policy, go to Managing an IAM Password Policy . See also: AWS API Documentation Examples The following command displays details about the password policy for the current AWS account. Expected Output: :example: response = client.get_account_password_policy() :rtype: dict :return: { 'PasswordPolicy': { 'MinimumPasswordLength': 123, 'RequireSymbols': True|False, 'RequireNumbers': True|False, 'RequireUppercaseCharacters': True|False, 'RequireLowercaseCharacters': True|False, 'AllowUsersToChangePassword': True|False, 'ExpirePasswords': True|False, 'MaxPasswordAge': 123, 'PasswordReusePrevention': 123, 'HardExpiry': True|False } } """ pass def get_account_summary(): """ Retrieves information about IAM entity usage and IAM quotas in the AWS account. For information about limitations on IAM entities, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command returns information about the IAM entity quotas and usage in the current AWS account. Expected Output: :example: response = client.get_account_summary() :rtype: dict :return: { 'SummaryMap': { 'string': 123 } } """ pass def get_context_keys_for_custom_policy(PolicyInputList=None): """ Gets a list of all of the context keys referenced in the input policies. The policies are supplied as a list of one or more strings. To get the context keys from policies associated with an IAM user, group, or role, use GetContextKeysForPrincipalPolicy . Context keys are variables maintained by AWS and its services that provide details about the context of an API query request, and can be evaluated by testing against a value specified in an IAM policy. Use GetContextKeysForCustomPolicy to understand what key names and values you must supply when you call SimulateCustomPolicy . Note that all parameters are shown in unencoded form here for clarity, but must be URL encoded to be included as a part of a real HTML request. See also: AWS API Documentation :example: response = client.get_context_keys_for_custom_policy( PolicyInputList=[ 'string', ] ) :type PolicyInputList: list :param PolicyInputList: [REQUIRED] A list of policies for which you want the list of context keys referenced in those policies. Each document is specified as a string containing the complete, valid JSON text of an IAM policy. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). (string) -- :rtype: dict :return: { 'ContextKeyNames': [ 'string', ] } :returns: (string) -- """ pass def get_context_keys_for_principal_policy(PolicySourceArn=None, PolicyInputList=None): """ Gets a list of all of the context keys referenced in all of the IAM policies attached to the specified IAM entity. The entity can be an IAM user, group, or role. If you specify a user, then the request also includes all of the policies attached to groups that the user is a member of. You can optionally include a list of one or more additional policies, specified as strings. If you want to include only a list of policies by string, use GetContextKeysForCustomPolicy instead. Context keys are variables maintained by AWS and its services that provide details about the context of an API query request, and can be evaluated by testing against a value in an IAM policy. Use GetContextKeysForPrincipalPolicy to understand what key names and values you must supply when you call SimulatePrincipalPolicy . See also: AWS API Documentation :example: response = client.get_context_keys_for_principal_policy( PolicySourceArn='string', PolicyInputList=[ 'string', ] ) :type PolicySourceArn: string :param PolicySourceArn: [REQUIRED] The ARN of a user, group, or role whose policies contain the context keys that you want listed. If you specify a user, the list includes context keys that are found in all policies attached to the user as well as to all groups that the user is a member of. If you pick a group or a role, then it includes only those context keys that are found in policies attached to that entity. Note that all parameters are shown in unencoded form here for clarity, but must be URL encoded to be included as a part of a real HTML request. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type PolicyInputList: list :param PolicyInputList: An optional list of additional policies for which you want the list of context keys that are referenced. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). (string) -- :rtype: dict :return: { 'ContextKeyNames': [ 'string', ] } :returns: (string) -- """ pass def get_credential_report(): """ Retrieves a credential report for the AWS account. For more information about the credential report, see Getting Credential Reports in the IAM User Guide . See also: AWS API Documentation :example: response = client.get_credential_report() :rtype: dict :return: { 'Content': b'bytes', 'ReportFormat': 'text/csv', 'GeneratedTime': datetime(2015, 1, 1) } """ pass def get_group(GroupName=None, Marker=None, MaxItems=None): """ Returns a list of IAM users that are in the specified IAM group. You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.get_group( GroupName='string', Marker='string', MaxItems=123 ) :type GroupName: string :param GroupName: [REQUIRED] The name of the group. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Group': { 'Path': 'string', 'GroupName': 'string', 'GroupId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1) }, 'Users': [ { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordLastUsed': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: CreateUser GetUser ListUsers """ pass def get_group_policy(GroupName=None, PolicyName=None): """ Retrieves the specified inline policy document that is embedded in the specified IAM group. An IAM group can also have managed policies attached to it. To retrieve a managed policy document that is attached to a group, use GetPolicy to determine the policy's default version, then use GetPolicyVersion to retrieve the policy document. For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.get_group_policy( GroupName='string', PolicyName='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name of the group the policy is associated with. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the policy document to get. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'GroupName': 'string', 'PolicyName': 'string', 'PolicyDocument': 'string' } """ pass def get_instance_profile(InstanceProfileName=None): """ Retrieves information about the specified instance profile, including the instance profile's path, GUID, ARN, and role. For more information about instance profiles, see About Instance Profiles in the IAM User Guide . See also: AWS API Documentation Examples The following command gets information about the instance profile named ExampleInstanceProfile. Expected Output: :example: response = client.get_instance_profile( InstanceProfileName='string' ) :type InstanceProfileName: string :param InstanceProfileName: [REQUIRED] The name of the instance profile to get information about. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'InstanceProfile': { 'Path': 'string', 'InstanceProfileName': 'string', 'InstanceProfileId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'Roles': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' }, ] } } """ pass def get_login_profile(UserName=None): """ Retrieves the user name and password-creation date for the specified IAM user. If the user has not been assigned a password, the action returns a 404 (NoSuchEntity ) error. See also: AWS API Documentation Examples The following command gets information about the password for the IAM user named Anika. Expected Output: :example: response = client.get_login_profile( UserName='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user whose login profile you want to retrieve. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'LoginProfile': { 'UserName': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordResetRequired': True|False } } """ pass def get_open_id_connect_provider(OpenIDConnectProviderArn=None): """ Returns information about the specified OpenID Connect (OIDC) provider resource object in IAM. See also: AWS API Documentation :example: response = client.get_open_id_connect_provider( OpenIDConnectProviderArn='string' ) :type OpenIDConnectProviderArn: string :param OpenIDConnectProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the OIDC provider resource object in IAM to get information for. You can get a list of OIDC provider resource ARNs by using the ListOpenIDConnectProviders action. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :rtype: dict :return: { 'Url': 'string', 'ClientIDList': [ 'string', ], 'ThumbprintList': [ 'string', ], 'CreateDate': datetime(2015, 1, 1) } """ pass def get_paginator(operation_name=None): """ Create a paginator for an operation. :type operation_name: string :param operation_name: The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator('create_foo'). :rtype: L{botocore.paginate.Paginator} """ pass def get_policy(PolicyArn=None): """ Retrieves information about the specified managed policy, including the policy's default version and the total number of IAM users, groups, and roles to which the policy is attached. To retrieve the list of the specific users, groups, and roles that the policy is attached to, use the ListEntitiesForPolicy API. This API returns metadata about the policy. To retrieve the actual policy document for a specific version of the policy, use GetPolicyVersion . This API retrieves information about managed policies. To retrieve information about an inline policy that is embedded with an IAM user, group, or role, use the GetUserPolicy , GetGroupPolicy , or GetRolePolicy API. For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.get_policy( PolicyArn='string' ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the managed policy that you want information about. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :rtype: dict :return: { 'Policy': { 'PolicyName': 'string', 'PolicyId': 'string', 'Arn': 'string', 'Path': 'string', 'DefaultVersionId': 'string', 'AttachmentCount': 123, 'IsAttachable': True|False, 'Description': 'string', 'CreateDate': datetime(2015, 1, 1), 'UpdateDate': datetime(2015, 1, 1) } } """ pass def get_policy_version(PolicyArn=None, VersionId=None): """ Retrieves information about the specified version of the specified managed policy, including the policy document. To list the available versions for a policy, use ListPolicyVersions . This API retrieves information about managed policies. To retrieve information about an inline policy that is embedded in a user, group, or role, use the GetUserPolicy , GetGroupPolicy , or GetRolePolicy API. For more information about the types of policies, see Managed Policies and Inline Policies in the IAM User Guide . For more information about managed policy versions, see Versioning for Managed Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.get_policy_version( PolicyArn='string', VersionId='string' ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the managed policy that you want information about. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type VersionId: string :param VersionId: [REQUIRED] Identifies the policy version to retrieve. This parameter allows (per its regex pattern ) a string of characters that consists of the lowercase letter 'v' followed by one or two digits, and optionally followed by a period '.' and a string of letters and digits. :rtype: dict :return: { 'PolicyVersion': { 'Document': 'string', 'VersionId': 'string', 'IsDefaultVersion': True|False, 'CreateDate': datetime(2015, 1, 1) } } """ pass def get_role(RoleName=None): """ Retrieves information about the specified role, including the role's path, GUID, ARN, and the role's trust policy that grants permission to assume the role. For more information about roles, see Working with Roles . See also: AWS API Documentation Examples The following command gets information about the role named Test-Role. Expected Output: :example: response = client.get_role( RoleName='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name of the IAM role to get information about. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :rtype: dict :return: { 'Role': { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' } } """ pass def get_role_policy(RoleName=None, PolicyName=None): """ Retrieves the specified inline policy document that is embedded with the specified IAM role. An IAM role can also have managed policies attached to it. To retrieve a managed policy document that is attached to a role, use GetPolicy to determine the policy's default version, then use GetPolicyVersion to retrieve the policy document. For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . For more information about roles, see Using Roles to Delegate Permissions and Federate Identities . See also: AWS API Documentation :example: response = client.get_role_policy( RoleName='string', PolicyName='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role associated with the policy. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the policy document to get. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'RoleName': 'string', 'PolicyName': 'string', 'PolicyDocument': 'string' } """ pass def get_saml_provider(SAMLProviderArn=None): """ Returns the SAML provider metadocument that was uploaded when the IAM SAML provider resource object was created or updated. See also: AWS API Documentation :example: response = client.get_saml_provider( SAMLProviderArn='string' ) :type SAMLProviderArn: string :param SAMLProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the SAML provider resource object in IAM to get information about. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :rtype: dict :return: { 'SAMLMetadataDocument': 'string', 'CreateDate': datetime(2015, 1, 1), 'ValidUntil': datetime(2015, 1, 1) } """ pass def get_server_certificate(ServerCertificateName=None): """ Retrieves information about the specified server certificate stored in IAM. For more information about working with server certificates, including a list of AWS services that can use the server certificates that you manage with IAM, go to Working with Server Certificates in the IAM User Guide . See also: AWS API Documentation :example: response = client.get_server_certificate( ServerCertificateName='string' ) :type ServerCertificateName: string :param ServerCertificateName: [REQUIRED] The name of the server certificate you want to retrieve information about. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'ServerCertificate': { 'ServerCertificateMetadata': { 'Path': 'string', 'ServerCertificateName': 'string', 'ServerCertificateId': 'string', 'Arn': 'string', 'UploadDate': datetime(2015, 1, 1), 'Expiration': datetime(2015, 1, 1) }, 'CertificateBody': 'string', 'CertificateChain': 'string' } } """ pass def get_ssh_public_key(UserName=None, SSHPublicKeyId=None, Encoding=None): """ Retrieves the specified SSH public key, including metadata about the key. The SSH public key retrieved by this action is used only for authenticating the associated IAM user to an AWS CodeCommit repository. For more information about using SSH keys to authenticate to an AWS CodeCommit repository, see Set up AWS CodeCommit for SSH Connections in the AWS CodeCommit User Guide . See also: AWS API Documentation :example: response = client.get_ssh_public_key( UserName='string', SSHPublicKeyId='string', Encoding='SSH'|'PEM' ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user associated with the SSH public key. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SSHPublicKeyId: string :param SSHPublicKeyId: [REQUIRED] The unique identifier for the SSH public key. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :type Encoding: string :param Encoding: [REQUIRED] Specifies the public key encoding format to use in the response. To retrieve the public key in ssh-rsa format, use SSH . To retrieve the public key in PEM format, use PEM . :rtype: dict :return: { 'SSHPublicKey': { 'UserName': 'string', 'SSHPublicKeyId': 'string', 'Fingerprint': 'string', 'SSHPublicKeyBody': 'string', 'Status': 'Active'|'Inactive', 'UploadDate': datetime(2015, 1, 1) } } """ pass def get_user(UserName=None): """ Retrieves information about the specified IAM user, including the user's creation date, path, unique ID, and ARN. If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID used to sign the request to this API. See also: AWS API Documentation Examples The following command gets information about the IAM user named Bob. Expected Output: :example: response = client.get_user( UserName='string' ) :type UserName: string :param UserName: The name of the user to get information about. This parameter is optional. If it is not included, it defaults to the user making the request. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'User': { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordLastUsed': datetime(2015, 1, 1) } } """ pass def get_user_policy(UserName=None, PolicyName=None): """ Retrieves the specified inline policy document that is embedded in the specified IAM user. An IAM user can also have managed policies attached to it. To retrieve a managed policy document that is attached to a user, use GetPolicy to determine the policy's default version, then use GetPolicyVersion to retrieve the policy document. For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.get_user_policy( UserName='string', PolicyName='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user who the policy is associated with. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the policy document to get. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :rtype: dict :return: { 'UserName': 'string', 'PolicyName': 'string', 'PolicyDocument': 'string' } """ pass def get_waiter(): """ """ pass def list_access_keys(UserName=None, Marker=None, MaxItems=None): """ Returns information about the access key IDs associated with the specified IAM user. If there are none, the action returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName field is not specified, the UserName is determined implicitly based on the AWS access key ID used to sign the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. See also: AWS API Documentation Examples The following command lists the access keys IDs for the IAM user named Alice. Expected Output: :example: response = client.list_access_keys( UserName='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: The name of the user. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'AccessKeyMetadata': [ { 'UserName': 'string', 'AccessKeyId': 'string', 'Status': 'Active'|'Inactive', 'CreateDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_account_aliases(Marker=None, MaxItems=None): """ Lists the account alias associated with the AWS account (Note: you can have only one). For information about using an AWS account alias, see Using an Alias for Your AWS Account ID in the IAM User Guide . See also: AWS API Documentation Examples The following command lists the aliases for the current account. Expected Output: :example: response = client.list_account_aliases( Marker='string', MaxItems=123 ) :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'AccountAliases': [ 'string', ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def list_attached_group_policies(GroupName=None, PathPrefix=None, Marker=None, MaxItems=None): """ Lists all managed policies that are attached to the specified IAM group. An IAM group can also have inline policies embedded with it. To list the inline policies for a group, use the ListGroupPolicies API. For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . You can paginate the results using the MaxItems and Marker parameters. You can use the PathPrefix parameter to limit the list of policies to only those matching the specified path prefix. If there are no policies attached to the specified group (or none that match the specified path prefix), the action returns an empty list. See also: AWS API Documentation :example: response = client.list_attached_group_policies( GroupName='string', PathPrefix='string', Marker='string', MaxItems=123 ) :type GroupName: string :param GroupName: [REQUIRED] The name (friendly name, not ARN) of the group to list attached policies for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all policies. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'AttachedPolicies': [ { 'PolicyName': 'string', 'PolicyArn': 'string' }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_attached_role_policies(RoleName=None, PathPrefix=None, Marker=None, MaxItems=None): """ Lists all managed policies that are attached to the specified IAM role. An IAM role can also have inline policies embedded with it. To list the inline policies for a role, use the ListRolePolicies API. For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . You can paginate the results using the MaxItems and Marker parameters. You can use the PathPrefix parameter to limit the list of policies to only those matching the specified path prefix. If there are no policies attached to the specified role (or none that match the specified path prefix), the action returns an empty list. See also: AWS API Documentation :example: response = client.list_attached_role_policies( RoleName='string', PathPrefix='string', Marker='string', MaxItems=123 ) :type RoleName: string :param RoleName: [REQUIRED] The name (friendly name, not ARN) of the role to list attached policies for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all policies. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'AttachedPolicies': [ { 'PolicyName': 'string', 'PolicyArn': 'string' }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_attached_user_policies(UserName=None, PathPrefix=None, Marker=None, MaxItems=None): """ Lists all managed policies that are attached to the specified IAM user. An IAM user can also have inline policies embedded with it. To list the inline policies for a user, use the ListUserPolicies API. For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . You can paginate the results using the MaxItems and Marker parameters. You can use the PathPrefix parameter to limit the list of policies to only those matching the specified path prefix. If there are no policies attached to the specified group (or none that match the specified path prefix), the action returns an empty list. See also: AWS API Documentation :example: response = client.list_attached_user_policies( UserName='string', PathPrefix='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: [REQUIRED] The name (friendly name, not ARN) of the user to list attached policies for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all policies. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'AttachedPolicies': [ { 'PolicyName': 'string', 'PolicyArn': 'string' }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_entities_for_policy(PolicyArn=None, EntityFilter=None, PathPrefix=None, Marker=None, MaxItems=None): """ Lists all IAM users, groups, and roles that the specified managed policy is attached to. You can use the optional EntityFilter parameter to limit the results to a particular type of entity (users, groups, or roles). For example, to list only the roles that are attached to the specified policy, set EntityFilter to Role . You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.list_entities_for_policy( PolicyArn='string', EntityFilter='User'|'Role'|'Group'|'LocalManagedPolicy'|'AWSManagedPolicy', PathPrefix='string', Marker='string', MaxItems=123 ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy for which you want the versions. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type EntityFilter: string :param EntityFilter: The entity type to use for filtering the results. For example, when EntityFilter is Role , only the roles that are attached to the specified policy are returned. This parameter is optional. If it is not included, all attached entities (users, groups, and roles) are returned. The argument for this parameter must be one of the valid values listed below. :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all entities. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'PolicyGroups': [ { 'GroupName': 'string', 'GroupId': 'string' }, ], 'PolicyUsers': [ { 'UserName': 'string', 'UserId': 'string' }, ], 'PolicyRoles': [ { 'RoleName': 'string', 'RoleId': 'string' }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_group_policies(GroupName=None, Marker=None, MaxItems=None): """ Lists the names of the inline policies that are embedded in the specified IAM group. An IAM group can also have managed policies attached to it. To list the managed policies that are attached to a group, use ListAttachedGroupPolicies . For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . You can paginate the results using the MaxItems and Marker parameters. If there are no inline policies embedded with the specified group, the action returns an empty list. See also: AWS API Documentation Examples The following command lists the names of in-line policies that are embedded in the IAM group named Admins. Expected Output: :example: response = client.list_group_policies( GroupName='string', Marker='string', MaxItems=123 ) :type GroupName: string :param GroupName: [REQUIRED] The name of the group to list policies for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'PolicyNames': [ 'string', ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def list_groups(PathPrefix=None, Marker=None, MaxItems=None): """ Lists the IAM groups that have the specified path prefix. You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation Examples The following command lists the IAM groups in the current account: Expected Output: :example: response = client.list_groups( PathPrefix='string', Marker='string', MaxItems=123 ) :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. For example, the prefix /division_abc/subdivision_xyz/ gets all groups whose path starts with /division_abc/subdivision_xyz/ . This parameter is optional. If it is not included, it defaults to a slash (/), listing all groups. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Groups': [ { 'Path': 'string', 'GroupName': 'string', 'GroupId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: CreateGroup GetGroup ListGroups """ pass def list_groups_for_user(UserName=None, Marker=None, MaxItems=None): """ Lists the IAM groups that the specified IAM user belongs to. You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation Examples The following command displays the groups that the IAM user named Bob belongs to. Expected Output: :example: response = client.list_groups_for_user( UserName='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: [REQUIRED] The name of the user to list groups for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Groups': [ { 'Path': 'string', 'GroupName': 'string', 'GroupId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: CreateGroup GetGroup ListGroups """ pass def list_instance_profiles(PathPrefix=None, Marker=None, MaxItems=None): """ Lists the instance profiles that have the specified path prefix. If there are none, the action returns an empty list. For more information about instance profiles, go to About Instance Profiles . You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.list_instance_profiles( PathPrefix='string', Marker='string', MaxItems=123 ) :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. For example, the prefix /application_abc/component_xyz/ gets all instance profiles whose path starts with /application_abc/component_xyz/ . This parameter is optional. If it is not included, it defaults to a slash (/), listing all instance profiles. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'InstanceProfiles': [ { 'Path': 'string', 'InstanceProfileName': 'string', 'InstanceProfileId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'Roles': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' }, ] }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: CreateInstanceProfile GetInstanceProfile ListInstanceProfiles ListInstanceProfilesForRole """ pass def list_instance_profiles_for_role(RoleName=None, Marker=None, MaxItems=None): """ Lists the instance profiles that have the specified associated IAM role. If there are none, the action returns an empty list. For more information about instance profiles, go to About Instance Profiles . You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.list_instance_profiles_for_role( RoleName='string', Marker='string', MaxItems=123 ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role to list instance profiles for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'InstanceProfiles': [ { 'Path': 'string', 'InstanceProfileName': 'string', 'InstanceProfileId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'Roles': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' }, ] }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: CreateInstanceProfile GetInstanceProfile ListInstanceProfiles ListInstanceProfilesForRole """ pass def list_mfa_devices(UserName=None, Marker=None, MaxItems=None): """ Lists the MFA devices for an IAM user. If the request includes a IAM user name, then this action lists all the MFA devices associated with the specified user. If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request for this API. You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.list_mfa_devices( UserName='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: The name of the user whose MFA devices you want to list. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'MFADevices': [ { 'UserName': 'string', 'SerialNumber': 'string', 'EnableDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_open_id_connect_providers(): """ Lists information about the IAM OpenID Connect (OIDC) provider resource objects defined in the AWS account. See also: AWS API Documentation :example: response = client.list_open_id_connect_providers() :rtype: dict :return: { 'OpenIDConnectProviderList': [ { 'Arn': 'string' }, ] } """ pass def list_policies(Scope=None, OnlyAttached=None, PathPrefix=None, Marker=None, MaxItems=None): """ Lists all the managed policies that are available in your AWS account, including your own customer-defined managed policies and all AWS managed policies. You can filter the list of policies that is returned using the optional OnlyAttached , Scope , and PathPrefix parameters. For example, to list only the customer managed policies in your AWS account, set Scope to Local . To list only AWS managed policies, set Scope to AWS . You can paginate the results using the MaxItems and Marker parameters. For more information about managed policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.list_policies( Scope='All'|'AWS'|'Local', OnlyAttached=True|False, PathPrefix='string', Marker='string', MaxItems=123 ) :type Scope: string :param Scope: The scope to use for filtering the results. To list only AWS managed policies, set Scope to AWS . To list only the customer managed policies in your AWS account, set Scope to Local . This parameter is optional. If it is not included, or if it is set to All , all policies are returned. :type OnlyAttached: boolean :param OnlyAttached: A flag to filter the results to only the attached policies. When OnlyAttached is true , the returned list contains only the policies that are attached to an IAM user, group, or role. When OnlyAttached is false , or when the parameter is not included, all policies are returned. :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (/), listing all policies. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Policies': [ { 'PolicyName': 'string', 'PolicyId': 'string', 'Arn': 'string', 'Path': 'string', 'DefaultVersionId': 'string', 'AttachmentCount': 123, 'IsAttachable': True|False, 'Description': 'string', 'CreateDate': datetime(2015, 1, 1), 'UpdateDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_policy_versions(PolicyArn=None, Marker=None, MaxItems=None): """ Lists information about the versions of the specified managed policy, including the version that is currently set as the policy's default version. For more information about managed policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.list_policy_versions( PolicyArn='string', Marker='string', MaxItems=123 ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy for which you want the versions. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Versions': [ { 'Document': 'string', 'VersionId': 'string', 'IsDefaultVersion': True|False, 'CreateDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_role_policies(RoleName=None, Marker=None, MaxItems=None): """ Lists the names of the inline policies that are embedded in the specified IAM role. An IAM role can also have managed policies attached to it. To list the managed policies that are attached to a role, use ListAttachedRolePolicies . For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . You can paginate the results using the MaxItems and Marker parameters. If there are no inline policies embedded with the specified role, the action returns an empty list. See also: AWS API Documentation :example: response = client.list_role_policies( RoleName='string', Marker='string', MaxItems=123 ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role to list policies for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'PolicyNames': [ 'string', ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def list_roles(PathPrefix=None, Marker=None, MaxItems=None): """ Lists the IAM roles that have the specified path prefix. If there are none, the action returns an empty list. For more information about roles, go to Working with Roles . You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.list_roles( PathPrefix='string', Marker='string', MaxItems=123 ) :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. For example, the prefix /application_abc/component_xyz/ gets all roles whose path starts with /application_abc/component_xyz/ . This parameter is optional. If it is not included, it defaults to a slash (/), listing all roles. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Roles': [ { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_saml_providers(): """ Lists the SAML provider resource objects defined in IAM in the account. See also: AWS API Documentation :example: response = client.list_saml_providers() :rtype: dict :return: { 'SAMLProviderList': [ { 'Arn': 'string', 'ValidUntil': datetime(2015, 1, 1), 'CreateDate': datetime(2015, 1, 1) }, ] } """ pass def list_server_certificates(PathPrefix=None, Marker=None, MaxItems=None): """ Lists the server certificates stored in IAM that have the specified path prefix. If none exist, the action returns an empty list. You can paginate the results using the MaxItems and Marker parameters. For more information about working with server certificates, including a list of AWS services that can use the server certificates that you manage with IAM, go to Working with Server Certificates in the IAM User Guide . See also: AWS API Documentation :example: response = client.list_server_certificates( PathPrefix='string', Marker='string', MaxItems=123 ) :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. For example: /company/servercerts would get all server certificates for which the path starts with /company/servercerts . This parameter is optional. If it is not included, it defaults to a slash (/), listing all server certificates. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'ServerCertificateMetadataList': [ { 'Path': 'string', 'ServerCertificateName': 'string', 'ServerCertificateId': 'string', 'Arn': 'string', 'UploadDate': datetime(2015, 1, 1), 'Expiration': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_service_specific_credentials(UserName=None, ServiceName=None): """ Returns information about the service-specific credentials associated with the specified IAM user. If there are none, the action returns an empty list. The service-specific credentials returned by this action are used only for authenticating the IAM user to a specific service. For more information about using service-specific credentials to authenticate to an AWS service, see Set Up service-specific credentials in the AWS CodeCommit User Guide. See also: AWS API Documentation :example: response = client.list_service_specific_credentials( UserName='string', ServiceName='string' ) :type UserName: string :param UserName: The name of the user whose service-specific credentials you want information about. If this value is not specified then the operation assumes the user whose credentials are used to call the operation. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type ServiceName: string :param ServiceName: Filters the returned results to only those for the specified AWS service. If not specified, then AWS returns service-specific credentials for all services. :rtype: dict :return: { 'ServiceSpecificCredentials': [ { 'UserName': 'string', 'Status': 'Active'|'Inactive', 'ServiceUserName': 'string', 'CreateDate': datetime(2015, 1, 1), 'ServiceSpecificCredentialId': 'string', 'ServiceName': 'string' }, ] } """ pass def list_signing_certificates(UserName=None, Marker=None, MaxItems=None): """ Returns information about the signing certificates associated with the specified IAM user. If there are none, the action returns an empty list. Although each user is limited to a small number of signing certificates, you can still paginate the results using the MaxItems and Marker parameters. If the UserName field is not specified, the user name is determined implicitly based on the AWS access key ID used to sign the request for this API. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. See also: AWS API Documentation Examples The following command lists the signing certificates for the IAM user named Bob. Expected Output: :example: response = client.list_signing_certificates( UserName='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: The name of the IAM user whose signing certificates you want to examine. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Certificates': [ { 'UserName': 'string', 'CertificateId': 'string', 'CertificateBody': 'string', 'Status': 'Active'|'Inactive', 'UploadDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_ssh_public_keys(UserName=None, Marker=None, MaxItems=None): """ Returns information about the SSH public keys associated with the specified IAM user. If there are none, the action returns an empty list. The SSH public keys returned by this action are used only for authenticating the IAM user to an AWS CodeCommit repository. For more information about using SSH keys to authenticate to an AWS CodeCommit repository, see Set up AWS CodeCommit for SSH Connections in the AWS CodeCommit User Guide . Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation :example: response = client.list_ssh_public_keys( UserName='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: The name of the IAM user to list SSH public keys for. If none is specified, the UserName field is determined implicitly based on the AWS access key used to sign the request. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'SSHPublicKeys': [ { 'UserName': 'string', 'SSHPublicKeyId': 'string', 'Status': 'Active'|'Inactive', 'UploadDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } """ pass def list_user_policies(UserName=None, Marker=None, MaxItems=None): """ Lists the names of the inline policies embedded in the specified IAM user. An IAM user can also have managed policies attached to it. To list the managed policies that are attached to a user, use ListAttachedUserPolicies . For more information about policies, see Managed Policies and Inline Policies in the IAM User Guide . You can paginate the results using the MaxItems and Marker parameters. If there are no inline policies embedded with the specified user, the action returns an empty list. See also: AWS API Documentation :example: response = client.list_user_policies( UserName='string', Marker='string', MaxItems=123 ) :type UserName: string :param UserName: [REQUIRED] The name of the user to list policies for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'PolicyNames': [ 'string', ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def list_users(PathPrefix=None, Marker=None, MaxItems=None): """ Lists the IAM users that have the specified path prefix. If no path prefix is specified, the action returns all users in the AWS account. If there are none, the action returns an empty list. You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation Examples The following command lists the IAM users in the current account. Expected Output: :example: response = client.list_users( PathPrefix='string', Marker='string', MaxItems=123 ) :type PathPrefix: string :param PathPrefix: The path prefix for filtering the results. For example: /division_abc/subdivision_xyz/ , which would get all user names whose path starts with /division_abc/subdivision_xyz/ . This parameter is optional. If it is not included, it defaults to a slash (/), listing all user names. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'Users': [ { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordLastUsed': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: CreateUser GetUser ListUsers """ pass def list_virtual_mfa_devices(AssignmentStatus=None, Marker=None, MaxItems=None): """ Lists the virtual MFA devices defined in the AWS account by assignment status. If you do not specify an assignment status, the action returns a list of all virtual MFA devices. Assignment status can be Assigned , Unassigned , or Any . You can paginate the results using the MaxItems and Marker parameters. See also: AWS API Documentation Examples The following command lists the virtual MFA devices that have been configured for the current account. Expected Output: :example: response = client.list_virtual_mfa_devices( AssignmentStatus='Assigned'|'Unassigned'|'Any', Marker='string', MaxItems=123 ) :type AssignmentStatus: string :param AssignmentStatus: The status (Unassigned or Assigned ) of the devices to list. If you do not specify an AssignmentStatus , the action defaults to Any which lists both assigned and unassigned virtual MFA devices. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :rtype: dict :return: { 'VirtualMFADevices': [ { 'SerialNumber': 'string', 'Base32StringSeed': b'bytes', 'QRCodePNG': b'bytes', 'User': { 'Path': 'string', 'UserName': 'string', 'UserId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'PasswordLastUsed': datetime(2015, 1, 1) }, 'EnableDate': datetime(2015, 1, 1) }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: The user does not have a password The password exists but has never been used (at least not since IAM started tracking this information on October 20th, 2014 there is no sign-in data associated with the user """ pass def put_group_policy(GroupName=None, PolicyName=None, PolicyDocument=None): """ Adds or updates an inline policy document that is embedded in the specified IAM group. A user can also have managed policies attached to it. To attach a managed policy to a group, use AttachGroupPolicy . To create a new managed policy, use CreatePolicy . For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . For information about limits on the number of inline policies that you can embed in a group, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command adds a policy named AllPerms to the IAM group named Admins. Expected Output: :example: response = client.put_group_policy( GroupName='string', PolicyName='string', PolicyDocument='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name of the group to associate the policy with. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the policy document. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyDocument: string :param PolicyDocument: [REQUIRED] The policy document. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :return: response = client.put_group_policy( GroupName='Admins', PolicyDocument='{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"*","Resource":"*"}}', PolicyName='AllPerms', ) print(response) """ pass def put_role_policy(RoleName=None, PolicyName=None, PolicyDocument=None): """ Adds or updates an inline policy document that is embedded in the specified IAM role. When you embed an inline policy in a role, the inline policy is used as part of the role's access (permissions) policy. The role's trust policy is created at the same time as the role, using CreateRole . You can update a role's trust policy using UpdateAssumeRolePolicy . For more information about IAM roles, go to Using Roles to Delegate Permissions and Federate Identities . A role can also have a managed policy attached to it. To attach a managed policy to a role, use AttachRolePolicy . To create a new managed policy, use CreatePolicy . For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . For information about limits on the number of inline policies that you can embed with a role, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command adds a permissions policy to the role named Test-Role. Expected Output: :example: response = client.put_role_policy( RoleName='string', PolicyName='string', PolicyDocument='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role to associate the policy with. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the policy document. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyDocument: string :param PolicyDocument: [REQUIRED] The policy document. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :return: response = client.put_role_policy( PolicyDocument='{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"s3:*","Resource":"*"}}', PolicyName='S3AccessPolicy', RoleName='S3Access', ) print(response) """ pass def put_user_policy(UserName=None, PolicyName=None, PolicyDocument=None): """ Adds or updates an inline policy document that is embedded in the specified IAM user. An IAM user can also have a managed policy attached to it. To attach a managed policy to a user, use AttachUserPolicy . To create a new managed policy, use CreatePolicy . For information about policies, see Managed Policies and Inline Policies in the IAM User Guide . For information about limits on the number of inline policies that you can embed in a user, see Limitations on IAM Entities in the IAM User Guide . See also: AWS API Documentation Examples The following command attaches a policy to the IAM user named Bob. Expected Output: :example: response = client.put_user_policy( UserName='string', PolicyName='string', PolicyDocument='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user to associate the policy with. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyName: string :param PolicyName: [REQUIRED] The name of the policy document. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type PolicyDocument: string :param PolicyDocument: [REQUIRED] The policy document. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :return: response = client.put_user_policy( PolicyDocument='{"Version":"2012-10-17","Statement":{"Effect":"Allow","Action":"*","Resource":"*"}}', PolicyName='AllAccessPolicy', UserName='Bob', ) print(response) """ pass def remove_client_id_from_open_id_connect_provider(OpenIDConnectProviderArn=None, ClientID=None): """ Removes the specified client ID (also known as audience) from the list of client IDs registered for the specified IAM OpenID Connect (OIDC) provider resource object. This action is idempotent; it does not fail or return an error if you try to remove a client ID that does not exist. See also: AWS API Documentation :example: response = client.remove_client_id_from_open_id_connect_provider( OpenIDConnectProviderArn='string', ClientID='string' ) :type OpenIDConnectProviderArn: string :param OpenIDConnectProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM OIDC provider resource to remove the client ID from. You can get a list of OIDC provider ARNs by using the ListOpenIDConnectProviders action. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type ClientID: string :param ClientID: [REQUIRED] The client ID (also known as audience) to remove from the IAM OIDC provider resource. For more information about client IDs, see CreateOpenIDConnectProvider . """ pass def remove_role_from_instance_profile(InstanceProfileName=None, RoleName=None): """ Removes the specified IAM role from the specified EC2 instance profile. For more information about IAM roles, go to Working with Roles . For more information about instance profiles, go to About Instance Profiles . See also: AWS API Documentation Examples The following command removes the role named Test-Role from the instance profile named ExampleInstanceProfile. Expected Output: :example: response = client.remove_role_from_instance_profile( InstanceProfileName='string', RoleName='string' ) :type InstanceProfileName: string :param InstanceProfileName: [REQUIRED] The name of the instance profile to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type RoleName: string :param RoleName: [REQUIRED] The name of the role to remove. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :return: response = client.remove_role_from_instance_profile( InstanceProfileName='ExampleInstanceProfile', RoleName='Test-Role', ) print(response) """ pass def remove_user_from_group(GroupName=None, UserName=None): """ Removes the specified user from the specified group. See also: AWS API Documentation Examples The following command removes the user named Bob from the IAM group named Admins. Expected Output: :example: response = client.remove_user_from_group( GroupName='string', UserName='string' ) :type GroupName: string :param GroupName: [REQUIRED] The name of the group to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type UserName: string :param UserName: [REQUIRED] The name of the user to remove. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.remove_user_from_group( GroupName='Admins', UserName='Bob', ) print(response) """ pass def reset_service_specific_credential(UserName=None, ServiceSpecificCredentialId=None): """ Resets the password for a service-specific credential. The new password is AWS generated and cryptographically strong. It cannot be configured by the user. Resetting the password immediately invalidates the previous password associated with this user. See also: AWS API Documentation :example: response = client.reset_service_specific_credential( UserName='string', ServiceSpecificCredentialId='string' ) :type UserName: string :param UserName: The name of the IAM user associated with the service-specific credential. If this value is not specified, then the operation assumes the user whose credentials are used to call the operation. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type ServiceSpecificCredentialId: string :param ServiceSpecificCredentialId: [REQUIRED] The unique identifier of the service-specific credential. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :rtype: dict :return: { 'ServiceSpecificCredential': { 'CreateDate': datetime(2015, 1, 1), 'ServiceName': 'string', 'ServiceUserName': 'string', 'ServicePassword': 'string', 'ServiceSpecificCredentialId': 'string', 'UserName': 'string', 'Status': 'Active'|'Inactive' } } """ pass def resync_mfa_device(UserName=None, SerialNumber=None, AuthenticationCode1=None, AuthenticationCode2=None): """ Synchronizes the specified MFA device with its IAM resource object on the AWS servers. For more information about creating and working with virtual MFA devices, go to Using a Virtual MFA Device in the IAM User Guide . See also: AWS API Documentation :example: response = client.resync_mfa_device( UserName='string', SerialNumber='string', AuthenticationCode1='string', AuthenticationCode2='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the user whose MFA device you want to resynchronize. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SerialNumber: string :param SerialNumber: [REQUIRED] Serial number that uniquely identifies the MFA device. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type AuthenticationCode1: string :param AuthenticationCode1: [REQUIRED] An authentication code emitted by the device. The format for this parameter is a sequence of six digits. :type AuthenticationCode2: string :param AuthenticationCode2: [REQUIRED] A subsequent authentication code emitted by the device. The format for this parameter is a sequence of six digits. """ pass def set_default_policy_version(PolicyArn=None, VersionId=None): """ Sets the specified version of the specified policy as the policy's default (operative) version. This action affects all users, groups, and roles that the policy is attached to. To list the users, groups, and roles that the policy is attached to, use the ListEntitiesForPolicy API. For information about managed policies, see Managed Policies and Inline Policies in the IAM User Guide . See also: AWS API Documentation :example: response = client.set_default_policy_version( PolicyArn='string', VersionId='string' ) :type PolicyArn: string :param PolicyArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM policy whose default version you want to set. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type VersionId: string :param VersionId: [REQUIRED] The version of the policy to set as the default (operative) version. For more information about managed policy versions, see Versioning for Managed Policies in the IAM User Guide . """ pass def simulate_custom_policy(PolicyInputList=None, ActionNames=None, ResourceArns=None, ResourcePolicy=None, ResourceOwner=None, CallerArn=None, ContextEntries=None, ResourceHandlingOption=None, MaxItems=None, Marker=None): """ Simulate how a set of IAM policies and optionally a resource-based policy works with a list of API actions and AWS resources to determine the policies' effective permissions. The policies are provided as strings. The simulation does not perform the API actions; it only checks the authorization to determine if the simulated policies allow or deny the actions. If you want to simulate existing policies attached to an IAM user, group, or role, use SimulatePrincipalPolicy instead. Context keys are variables maintained by AWS and its services that provide details about the context of an API query request. You can use the Condition element of an IAM policy to evaluate context keys. To get the list of context keys that the policies require for correct simulation, use GetContextKeysForCustomPolicy . If the output is long, you can use MaxItems and Marker parameters to paginate the results. See also: AWS API Documentation :example: response = client.simulate_custom_policy( PolicyInputList=[ 'string', ], ActionNames=[ 'string', ], ResourceArns=[ 'string', ], ResourcePolicy='string', ResourceOwner='string', CallerArn='string', ContextEntries=[ { 'ContextKeyName': 'string', 'ContextKeyValues': [ 'string', ], 'ContextKeyType': 'string'|'stringList'|'numeric'|'numericList'|'boolean'|'booleanList'|'ip'|'ipList'|'binary'|'binaryList'|'date'|'dateList' }, ], ResourceHandlingOption='string', MaxItems=123, Marker='string' ) :type PolicyInputList: list :param PolicyInputList: [REQUIRED] A list of policy documents to include in the simulation. Each document is specified as a string containing the complete, valid JSON text of an IAM policy. Do not include any resource-based policies in this parameter. Any resource-based policy must be submitted with the ResourcePolicy parameter. The policies cannot be 'scope-down' policies, such as you could include in a call to GetFederationToken or one of the AssumeRole APIs to restrict what a user can do while using the temporary credentials. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). (string) -- :type ActionNames: list :param ActionNames: [REQUIRED] A list of names of API actions to evaluate in the simulation. Each action is evaluated against each resource. Each action must include the service identifier, such as iam:CreateUser . (string) -- :type ResourceArns: list :param ResourceArns: A list of ARNs of AWS resources to include in the simulation. If this parameter is not provided then the value defaults to * (all resources). Each API in the ActionNames parameter is evaluated for each resource in this list. The simulation determines the access result (allowed or denied) of each combination and reports it in the response. The simulation does not automatically retrieve policies for the specified resources. If you want to include a resource policy in the simulation, then you must include the policy as a string in the ResourcePolicy parameter. If you include a ResourcePolicy , then it must be applicable to all of the resources included in the simulation or you receive an invalid input error. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . (string) -- :type ResourcePolicy: string :param ResourcePolicy: A resource-based policy to include in the simulation provided as a string. Each resource in the simulation is treated as if it had this policy attached. You can include only one resource-based policy in a simulation. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type ResourceOwner: string :param ResourceOwner: An AWS account ID that specifies the owner of any simulated resource that does not identify its owner in the resource ARN, such as an S3 bucket or object. If ResourceOwner is specified, it is also used as the account owner of any ResourcePolicy included in the simulation. If the ResourceOwner parameter is not specified, then the owner of the resources and the resource policy defaults to the account of the identity provided in CallerArn . This parameter is required only if you specify a resource-based policy and account that owns the resource is different from the account that owns the simulated calling user CallerArn . :type CallerArn: string :param CallerArn: The ARN of the IAM user that you want to use as the simulated caller of the APIs. CallerArn is required if you include a ResourcePolicy so that the policy's Principal element has a value to use in evaluating the policy. You can specify only the ARN of an IAM user. You cannot specify the ARN of an assumed role, federated user, or a service principal. :type ContextEntries: list :param ContextEntries: A list of context keys and corresponding values for the simulation to use. Whenever a context key is evaluated in one of the simulated IAM permission policies, the corresponding value is supplied. (dict) --Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the Condition elements of the input policies. This data type is used as an input parameter to `` SimulateCustomPolicy `` and `` SimulateCustomPolicy `` . ContextKeyName (string) --The full name of a condition context key, including the service prefix. For example, aws:SourceIp or s3:VersionId . ContextKeyValues (list) --The value (or values, if the condition context key supports multiple values) to provide to the simulation for use when the key is referenced by a Condition element in an input policy. (string) -- ContextKeyType (string) --The data type of the value (or values) specified in the ContextKeyValues parameter. :type ResourceHandlingOption: string :param ResourceHandlingOption: Specifies the type of simulation to run. Different APIs that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security-group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network-interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported Platforms in the AWS EC2 User Guide . EC2-Classic-InstanceStore instance, image, security-group EC2-Classic-EBS instance, image, security-group, volume EC2-VPC-InstanceStore instance, image, security-group, network-interface EC2-VPC-InstanceStore-Subnet instance, image, security-group, network-interface, subnet EC2-VPC-EBS instance, image, security-group, network-interface, volume EC2-VPC-EBS-Subnet instance, image, security-group, network-interface, subnet, volume :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :rtype: dict :return: { 'EvaluationResults': [ { 'EvalActionName': 'string', 'EvalResourceName': 'string', 'EvalDecision': 'allowed'|'explicitDeny'|'implicitDeny', 'MatchedStatements': [ { 'SourcePolicyId': 'string', 'SourcePolicyType': 'user'|'group'|'role'|'aws-managed'|'user-managed'|'resource'|'none', 'StartPosition': { 'Line': 123, 'Column': 123 }, 'EndPosition': { 'Line': 123, 'Column': 123 } }, ], 'MissingContextValues': [ 'string', ], 'OrganizationsDecisionDetail': { 'AllowedByOrganizations': True|False }, 'EvalDecisionDetails': { 'string': 'allowed'|'explicitDeny'|'implicitDeny' }, 'ResourceSpecificResults': [ { 'EvalResourceName': 'string', 'EvalResourceDecision': 'allowed'|'explicitDeny'|'implicitDeny', 'MatchedStatements': [ { 'SourcePolicyId': 'string', 'SourcePolicyType': 'user'|'group'|'role'|'aws-managed'|'user-managed'|'resource'|'none', 'StartPosition': { 'Line': 123, 'Column': 123 }, 'EndPosition': { 'Line': 123, 'Column': 123 } }, ], 'MissingContextValues': [ 'string', ], 'EvalDecisionDetails': { 'string': 'allowed'|'explicitDeny'|'implicitDeny' } }, ] }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def simulate_principal_policy(PolicySourceArn=None, PolicyInputList=None, ActionNames=None, ResourceArns=None, ResourcePolicy=None, ResourceOwner=None, CallerArn=None, ContextEntries=None, ResourceHandlingOption=None, MaxItems=None, Marker=None): """ Simulate how a set of IAM policies attached to an IAM entity works with a list of API actions and AWS resources to determine the policies' effective permissions. The entity can be an IAM user, group, or role. If you specify a user, then the simulation also includes all of the policies that are attached to groups that the user belongs to . You can optionally include a list of one or more additional policies specified as strings to include in the simulation. If you want to simulate only policies specified as strings, use SimulateCustomPolicy instead. You can also optionally include one resource-based policy to be evaluated with each of the resources included in the simulation. The simulation does not perform the API actions, it only checks the authorization to determine if the simulated policies allow or deny the actions. Context keys are variables maintained by AWS and its services that provide details about the context of an API query request. You can use the Condition element of an IAM policy to evaluate context keys. To get the list of context keys that the policies require for correct simulation, use GetContextKeysForPrincipalPolicy . If the output is long, you can use the MaxItems and Marker parameters to paginate the results. See also: AWS API Documentation :example: response = client.simulate_principal_policy( PolicySourceArn='string', PolicyInputList=[ 'string', ], ActionNames=[ 'string', ], ResourceArns=[ 'string', ], ResourcePolicy='string', ResourceOwner='string', CallerArn='string', ContextEntries=[ { 'ContextKeyName': 'string', 'ContextKeyValues': [ 'string', ], 'ContextKeyType': 'string'|'stringList'|'numeric'|'numericList'|'boolean'|'booleanList'|'ip'|'ipList'|'binary'|'binaryList'|'date'|'dateList' }, ], ResourceHandlingOption='string', MaxItems=123, Marker='string' ) :type PolicySourceArn: string :param PolicySourceArn: [REQUIRED] The Amazon Resource Name (ARN) of a user, group, or role whose policies you want to include in the simulation. If you specify a user, group, or role, the simulation includes all policies that are associated with that entity. If you specify a user, the simulation also includes all policies that are attached to any groups the user belongs to. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type PolicyInputList: list :param PolicyInputList: An optional list of additional policy documents to include in the simulation. Each document is specified as a string containing the complete, valid JSON text of an IAM policy. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). (string) -- :type ActionNames: list :param ActionNames: [REQUIRED] A list of names of API actions to evaluate in the simulation. Each action is evaluated for each resource. Each action must include the service identifier, such as iam:CreateUser . (string) -- :type ResourceArns: list :param ResourceArns: A list of ARNs of AWS resources to include in the simulation. If this parameter is not provided then the value defaults to * (all resources). Each API in the ActionNames parameter is evaluated for each resource in this list. The simulation determines the access result (allowed or denied) of each combination and reports it in the response. The simulation does not automatically retrieve policies for the specified resources. If you want to include a resource policy in the simulation, then you must include the policy as a string in the ResourcePolicy parameter. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . (string) -- :type ResourcePolicy: string :param ResourcePolicy: A resource-based policy to include in the simulation provided as a string. Each resource in the simulation is treated as if it had this policy attached. You can include only one resource-based policy in a simulation. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type ResourceOwner: string :param ResourceOwner: An AWS account ID that specifies the owner of any simulated resource that does not identify its owner in the resource ARN, such as an S3 bucket or object. If ResourceOwner is specified, it is also used as the account owner of any ResourcePolicy included in the simulation. If the ResourceOwner parameter is not specified, then the owner of the resources and the resource policy defaults to the account of the identity provided in CallerArn . This parameter is required only if you specify a resource-based policy and account that owns the resource is different from the account that owns the simulated calling user CallerArn . :type CallerArn: string :param CallerArn: The ARN of the IAM user that you want to specify as the simulated caller of the APIs. If you do not specify a CallerArn , it defaults to the ARN of the user that you specify in PolicySourceArn , if you specified a user. If you include both a PolicySourceArn (for example, arn:aws:iam::123456789012:user/David ) and a CallerArn (for example, arn:aws:iam::123456789012:user/Bob ), the result is that you simulate calling the APIs as Bob, as if Bob had David's policies. You can specify only the ARN of an IAM user. You cannot specify the ARN of an assumed role, federated user, or a service principal. CallerArn is required if you include a ResourcePolicy and the PolicySourceArn is not the ARN for an IAM user. This is required so that the resource-based policy's Principal element has a value to use in evaluating the policy. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type ContextEntries: list :param ContextEntries: A list of context keys and corresponding values for the simulation to use. Whenever a context key is evaluated in one of the simulated IAM permission policies, the corresponding value is supplied. (dict) --Contains information about a condition context key. It includes the name of the key and specifies the value (or values, if the context key supports multiple values) to use in the simulation. This information is used when evaluating the Condition elements of the input policies. This data type is used as an input parameter to `` SimulateCustomPolicy `` and `` SimulateCustomPolicy `` . ContextKeyName (string) --The full name of a condition context key, including the service prefix. For example, aws:SourceIp or s3:VersionId . ContextKeyValues (list) --The value (or values, if the condition context key supports multiple values) to provide to the simulation for use when the key is referenced by a Condition element in an input policy. (string) -- ContextKeyType (string) --The data type of the value (or values) specified in the ContextKeyValues parameter. :type ResourceHandlingOption: string :param ResourceHandlingOption: Specifies the type of simulation to run. Different APIs that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security-group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network-interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported Platforms in the AWS EC2 User Guide . EC2-Classic-InstanceStore instance, image, security-group EC2-Classic-EBS instance, image, security-group, volume EC2-VPC-InstanceStore instance, image, security-group, network-interface EC2-VPC-InstanceStore-Subnet instance, image, security-group, network-interface, subnet EC2-VPC-EBS instance, image, security-group, network-interface, volume EC2-VPC-EBS-Subnet instance, image, security-group, network-interface, subnet, volume :type MaxItems: integer :param MaxItems: (Optional) Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true . If you do not include this parameter, it defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true and Marker contains a value to include in the subsequent call that tells the service where to continue from. :type Marker: string :param Marker: Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start. :rtype: dict :return: { 'EvaluationResults': [ { 'EvalActionName': 'string', 'EvalResourceName': 'string', 'EvalDecision': 'allowed'|'explicitDeny'|'implicitDeny', 'MatchedStatements': [ { 'SourcePolicyId': 'string', 'SourcePolicyType': 'user'|'group'|'role'|'aws-managed'|'user-managed'|'resource'|'none', 'StartPosition': { 'Line': 123, 'Column': 123 }, 'EndPosition': { 'Line': 123, 'Column': 123 } }, ], 'MissingContextValues': [ 'string', ], 'OrganizationsDecisionDetail': { 'AllowedByOrganizations': True|False }, 'EvalDecisionDetails': { 'string': 'allowed'|'explicitDeny'|'implicitDeny' }, 'ResourceSpecificResults': [ { 'EvalResourceName': 'string', 'EvalResourceDecision': 'allowed'|'explicitDeny'|'implicitDeny', 'MatchedStatements': [ { 'SourcePolicyId': 'string', 'SourcePolicyType': 'user'|'group'|'role'|'aws-managed'|'user-managed'|'resource'|'none', 'StartPosition': { 'Line': 123, 'Column': 123 }, 'EndPosition': { 'Line': 123, 'Column': 123 } }, ], 'MissingContextValues': [ 'string', ], 'EvalDecisionDetails': { 'string': 'allowed'|'explicitDeny'|'implicitDeny' } }, ] }, ], 'IsTruncated': True|False, 'Marker': 'string' } :returns: (string) -- """ pass def update_access_key(UserName=None, AccessKeyId=None, Status=None): """ Changes the status of the specified access key from Active to Inactive, or vice versa. This action can be used to disable a user's key as part of a key rotation work flow. If the UserName field is not specified, the UserName is determined implicitly based on the AWS access key ID used to sign the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. For information about rotating keys, see Managing Keys and Certificates in the IAM User Guide . See also: AWS API Documentation Examples The following command deactivates the specified access key (access key ID and secret access key) for the IAM user named Bob. Expected Output: :example: response = client.update_access_key( UserName='string', AccessKeyId='string', Status='Active'|'Inactive' ) :type UserName: string :param UserName: The name of the user whose key you want to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type AccessKeyId: string :param AccessKeyId: [REQUIRED] The access key ID of the secret access key you want to update. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :type Status: string :param Status: [REQUIRED] The status you want to assign to the secret access key. Active means the key can be used for API calls to AWS, while Inactive means the key cannot be used. :return: response = client.update_access_key( AccessKeyId='AKIAIOSFODNN7EXAMPLE', Status='Inactive', UserName='Bob', ) print(response) """ pass def update_account_password_policy(MinimumPasswordLength=None, RequireSymbols=None, RequireNumbers=None, RequireUppercaseCharacters=None, RequireLowercaseCharacters=None, AllowUsersToChangePassword=None, MaxPasswordAge=None, PasswordReusePrevention=None, HardExpiry=None): """ Updates the password policy settings for the AWS account. For more information about using a password policy, see Managing an IAM Password Policy in the IAM User Guide . See also: AWS API Documentation Examples The following command sets the password policy to require a minimum length of eight characters and to require one or more numbers in the password: Expected Output: :example: response = client.update_account_password_policy( MinimumPasswordLength=123, RequireSymbols=True|False, RequireNumbers=True|False, RequireUppercaseCharacters=True|False, RequireLowercaseCharacters=True|False, AllowUsersToChangePassword=True|False, MaxPasswordAge=123, PasswordReusePrevention=123, HardExpiry=True|False ) :type MinimumPasswordLength: integer :param MinimumPasswordLength: The minimum number of characters allowed in an IAM user password. Default value: 6 :type RequireSymbols: boolean :param RequireSymbols: Specifies whether IAM user passwords must contain at least one of the following non-alphanumeric characters: ! @ # $ % ^ amp; * ( ) _ + - = [ ] { } | ' Default value: false :type RequireNumbers: boolean :param RequireNumbers: Specifies whether IAM user passwords must contain at least one numeric character (0 to 9). Default value: false :type RequireUppercaseCharacters: boolean :param RequireUppercaseCharacters: Specifies whether IAM user passwords must contain at least one uppercase character from the ISO basic Latin alphabet (A to Z). Default value: false :type RequireLowercaseCharacters: boolean :param RequireLowercaseCharacters: Specifies whether IAM user passwords must contain at least one lowercase character from the ISO basic Latin alphabet (a to z). Default value: false :type AllowUsersToChangePassword: boolean :param AllowUsersToChangePassword: Allows all IAM users in your account to use the AWS Management Console to change their own passwords. For more information, see Letting IAM Users Change Their Own Passwords in the IAM User Guide . Default value: false :type MaxPasswordAge: integer :param MaxPasswordAge: The number of days that an IAM user password is valid. The default value of 0 means IAM user passwords never expire. Default value: 0 :type PasswordReusePrevention: integer :param PasswordReusePrevention: Specifies the number of previous passwords that IAM users are prevented from reusing. The default value of 0 means IAM users are not prevented from reusing previous passwords. Default value: 0 :type HardExpiry: boolean :param HardExpiry: Prevents IAM users from setting a new password after their password has expired. Default value: false :return: response = client.update_account_password_policy( MinimumPasswordLength=8, RequireNumbers=True, ) print(response) """ pass def update_assume_role_policy(RoleName=None, PolicyDocument=None): """ Updates the policy that grants an IAM entity permission to assume a role. This is typically referred to as the "role trust policy". For more information about roles, go to Using Roles to Delegate Permissions and Federate Identities . See also: AWS API Documentation Examples The following command updates the role trust policy for the role named Test-Role: Expected Output: :example: response = client.update_assume_role_policy( RoleName='string', PolicyDocument='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role to update with the new policy. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- :type PolicyDocument: string :param PolicyDocument: [REQUIRED] The policy that grants an entity permission to assume the role. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :return: response = client.update_assume_role_policy( PolicyDocument='{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Principal":{"Service":["ec2.amazonaws.com"]},"Action":["sts:AssumeRole"]}]}', RoleName='S3AccessForEC2Instances', ) print(response) """ pass def update_group(GroupName=None, NewPath=None, NewGroupName=None): """ Updates the name and/or the path of the specified IAM group. See also: AWS API Documentation Examples The following command changes the name of the IAM group Test to Test-1. Expected Output: :example: response = client.update_group( GroupName='string', NewPath='string', NewGroupName='string' ) :type GroupName: string :param GroupName: [REQUIRED] Name of the IAM group to update. If you're changing the name of the group, this is the original name. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type NewPath: string :param NewPath: New path for the IAM group. Only include this if changing the group's path. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type NewGroupName: string :param NewGroupName: New name for the IAM group. Only include this if changing the group's name. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.update_group( GroupName='Test', NewGroupName='Test-1', ) print(response) """ pass def update_login_profile(UserName=None, Password=None, PasswordResetRequired=None): """ Changes the password for the specified IAM user. IAM users can change their own passwords by calling ChangePassword . For more information about modifying passwords, see Managing Passwords in the IAM User Guide . See also: AWS API Documentation Examples The following command creates or changes the password for the IAM user named Bob. Expected Output: :example: response = client.update_login_profile( UserName='string', Password='string', PasswordResetRequired=True|False ) :type UserName: string :param UserName: [REQUIRED] The name of the user whose password you want to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type Password: string :param Password: The new password for the specified IAM user. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). However, the format can be further restricted by the account administrator by setting a password policy on the AWS account. For more information, see UpdateAccountPasswordPolicy . :type PasswordResetRequired: boolean :param PasswordResetRequired: Allows this new password to be used only once by requiring the specified IAM user to set a new password on next sign-in. :return: response = client.update_login_profile( Password='SomeKindOfPassword123!@#', UserName='Bob', ) print(response) """ pass def update_open_id_connect_provider_thumbprint(OpenIDConnectProviderArn=None, ThumbprintList=None): """ Replaces the existing list of server certificate thumbprints associated with an OpenID Connect (OIDC) provider resource object with a new list of thumbprints. The list that you pass with this action completely replaces the existing list of thumbprints. (The lists are not merged.) Typically, you need to update a thumbprint only when the identity provider's certificate changes, which occurs rarely. However, if the provider's certificate does change, any attempt to assume an IAM role that specifies the OIDC provider as a principal fails until the certificate thumbprint is updated. See also: AWS API Documentation :example: response = client.update_open_id_connect_provider_thumbprint( OpenIDConnectProviderArn='string', ThumbprintList=[ 'string', ] ) :type OpenIDConnectProviderArn: string :param OpenIDConnectProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the IAM OIDC provider resource object for which you want to update the thumbprint. You can get a list of OIDC provider ARNs by using the ListOpenIDConnectProviders action. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :type ThumbprintList: list :param ThumbprintList: [REQUIRED] A list of certificate thumbprints that are associated with the specified IAM OpenID Connect provider. For more information, see CreateOpenIDConnectProvider . (string) --Contains a thumbprint for an identity provider's server certificate. The identity provider's server certificate thumbprint is the hex-encoded SHA-1 hash value of the self-signed X.509 certificate used by the domain where the OpenID Connect provider makes its keys available. It is always a 40-character string. """ pass def update_role_description(RoleName=None, Description=None): """ Modifies the description of a role. See also: AWS API Documentation :example: response = client.update_role_description( RoleName='string', Description='string' ) :type RoleName: string :param RoleName: [REQUIRED] The name of the role that you want to modify. :type Description: string :param Description: [REQUIRED] The new description that you want to apply to the specified role. :rtype: dict :return: { 'Role': { 'Path': 'string', 'RoleName': 'string', 'RoleId': 'string', 'Arn': 'string', 'CreateDate': datetime(2015, 1, 1), 'AssumeRolePolicyDocument': 'string', 'Description': 'string' } } """ pass def update_saml_provider(SAMLMetadataDocument=None, SAMLProviderArn=None): """ Updates the metadata document for an existing SAML provider resource object. See also: AWS API Documentation :example: response = client.update_saml_provider( SAMLMetadataDocument='string', SAMLProviderArn='string' ) :type SAMLMetadataDocument: string :param SAMLMetadataDocument: [REQUIRED] An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your organization's IdP. :type SAMLProviderArn: string :param SAMLProviderArn: [REQUIRED] The Amazon Resource Name (ARN) of the SAML provider to update. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference . :rtype: dict :return: { 'SAMLProviderArn': 'string' } """ pass def update_server_certificate(ServerCertificateName=None, NewPath=None, NewServerCertificateName=None): """ Updates the name and/or the path of the specified server certificate stored in IAM. For more information about working with server certificates, including a list of AWS services that can use the server certificates that you manage with IAM, go to Working with Server Certificates in the IAM User Guide . See also: AWS API Documentation :example: response = client.update_server_certificate( ServerCertificateName='string', NewPath='string', NewServerCertificateName='string' ) :type ServerCertificateName: string :param ServerCertificateName: [REQUIRED] The name of the server certificate that you want to update. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type NewPath: string :param NewPath: The new path for the server certificate. Include this only if you are updating the server certificate's path. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type NewServerCertificateName: string :param NewServerCertificateName: The new name for the server certificate. Include this only if you are updating the server certificate's name. The name of the certificate cannot contain any spaces. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- """ pass def update_service_specific_credential(UserName=None, ServiceSpecificCredentialId=None, Status=None): """ Sets the status of a service-specific credential to Active or Inactive . Service-specific credentials that are inactive cannot be used for authentication to the service. This action can be used to disable a users service-specific credential as part of a credential rotation work flow. See also: AWS API Documentation :example: response = client.update_service_specific_credential( UserName='string', ServiceSpecificCredentialId='string', Status='Active'|'Inactive' ) :type UserName: string :param UserName: The name of the IAM user associated with the service-specific credential. If you do not specify this value, then the operation assumes the user whose credentials are used to call the operation. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type ServiceSpecificCredentialId: string :param ServiceSpecificCredentialId: [REQUIRED] The unique identifier of the service-specific credential. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :type Status: string :param Status: [REQUIRED] The status to be assigned to the service-specific credential. """ pass def update_signing_certificate(UserName=None, CertificateId=None, Status=None): """ Changes the status of the specified user signing certificate from active to disabled, or vice versa. This action can be used to disable an IAM user's signing certificate as part of a certificate rotation work flow. If the UserName field is not specified, the UserName is determined implicitly based on the AWS access key ID used to sign the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. See also: AWS API Documentation Examples The following command changes the status of a signing certificate for a user named Bob to Inactive. Expected Output: :example: response = client.update_signing_certificate( UserName='string', CertificateId='string', Status='Active'|'Inactive' ) :type UserName: string :param UserName: The name of the IAM user the signing certificate belongs to. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type CertificateId: string :param CertificateId: [REQUIRED] The ID of the signing certificate you want to update. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :type Status: string :param Status: [REQUIRED] The status you want to assign to the certificate. Active means the certificate can be used for API calls to AWS, while Inactive means the certificate cannot be used. :return: response = client.update_signing_certificate( CertificateId='TA7SMP42TDN5Z26OBPJE7EXAMPLE', Status='Inactive', UserName='Bob', ) print(response) """ pass def update_ssh_public_key(UserName=None, SSHPublicKeyId=None, Status=None): """ Sets the status of an IAM user's SSH public key to active or inactive. SSH public keys that are inactive cannot be used for authentication. This action can be used to disable a user's SSH public key as part of a key rotation work flow. The SSH public key affected by this action is used only for authenticating the associated IAM user to an AWS CodeCommit repository. For more information about using SSH keys to authenticate to an AWS CodeCommit repository, see Set up AWS CodeCommit for SSH Connections in the AWS CodeCommit User Guide . See also: AWS API Documentation :example: response = client.update_ssh_public_key( UserName='string', SSHPublicKeyId='string', Status='Active'|'Inactive' ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user associated with the SSH public key. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SSHPublicKeyId: string :param SSHPublicKeyId: [REQUIRED] The unique identifier for the SSH public key. This parameter allows (per its regex pattern ) a string of characters that can consist of any upper or lowercased letter or digit. :type Status: string :param Status: [REQUIRED] The status to assign to the SSH public key. Active means the key can be used for authentication with an AWS CodeCommit repository. Inactive means the key cannot be used. """ pass def update_user(UserName=None, NewPath=None, NewUserName=None): """ Updates the name and/or the path of the specified IAM user. See also: AWS API Documentation Examples The following command changes the name of the IAM user Bob to Robert. It does not change the user's path. Expected Output: :example: response = client.update_user( UserName='string', NewPath='string', NewUserName='string' ) :type UserName: string :param UserName: [REQUIRED] Name of the user to update. If you're changing the name of the user, this is the original user name. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type NewPath: string :param NewPath: New path for the IAM user. Include this parameter only if you're changing the user's path. This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. :type NewUserName: string :param NewUserName: New name for the user. Include this parameter only if you're changing the user's name. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :return: response = client.update_user( NewUserName='Robert', UserName='Bob', ) print(response) """ pass def upload_server_certificate(Path=None, ServerCertificateName=None, CertificateBody=None, PrivateKey=None, CertificateChain=None): """ Uploads a server certificate entity for the AWS account. The server certificate entity includes a public key certificate, a private key, and an optional certificate chain, which should all be PEM-encoded. We recommend that you use AWS Certificate Manager to provision, manage, and deploy your server certificates. With ACM you can request a certificate, deploy it to AWS resources, and let ACM handle certificate renewals for you. Certificates provided by ACM are free. For more information about using ACM, see the AWS Certificate Manager User Guide . For more information about working with server certificates, including a list of AWS services that can use the server certificates that you manage with IAM, go to Working with Server Certificates in the IAM User Guide . For information about the number of server certificates you can upload, see Limitations on IAM Entities and Objects in the IAM User Guide . See also: AWS API Documentation Examples The following upload-server-certificate command uploads a server certificate to your AWS account: Expected Output: :example: response = client.upload_server_certificate( Path='string', ServerCertificateName='string', CertificateBody='string', PrivateKey='string', CertificateChain='string' ) :type Path: string :param Path: The path for the server certificate. For more information about paths, see IAM Identifiers in the IAM User Guide . This parameter is optional. If it is not included, it defaults to a slash (/). This paramater allows (per its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes, containing any ASCII character from the ! (u0021) thru the DEL character (u007F), including most punctuation characters, digits, and upper and lowercased letters. Note If you are uploading a server certificate specifically for use with Amazon CloudFront distributions, you must specify a path using the --path option. The path must begin with /cloudfront and must include a trailing slash (for example, /cloudfront/test/ ). :type ServerCertificateName: string :param ServerCertificateName: [REQUIRED] The name for the server certificate. Do not include the path in this value. The name of the certificate cannot contain any spaces. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type CertificateBody: string :param CertificateBody: [REQUIRED] The contents of the public key certificate in PEM-encoded format. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type PrivateKey: string :param PrivateKey: [REQUIRED] The contents of the private key in PEM-encoded format. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :type CertificateChain: string :param CertificateChain: The contents of the certificate chain. This is typically a concatenation of the PEM-encoded public key certificates of the chain. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :rtype: dict :return: { 'ServerCertificateMetadata': { 'Path': 'string', 'ServerCertificateName': 'string', 'ServerCertificateId': 'string', 'Arn': 'string', 'UploadDate': datetime(2015, 1, 1), 'Expiration': datetime(2015, 1, 1) } } """ pass def upload_signing_certificate(UserName=None, CertificateBody=None): """ Uploads an X.509 signing certificate and associates it with the specified IAM user. Some AWS services use X.509 signing certificates to validate requests that are signed with a corresponding private key. When you upload the certificate, its default status is Active . If the UserName field is not specified, the IAM user name is determined implicitly based on the AWS access key ID used to sign the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated users. See also: AWS API Documentation Examples The following command uploads a signing certificate for the IAM user named Bob. Expected Output: :example: response = client.upload_signing_certificate( UserName='string', CertificateBody='string' ) :type UserName: string :param UserName: The name of the user the signing certificate is for. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type CertificateBody: string :param CertificateBody: [REQUIRED] The contents of the signing certificate. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :rtype: dict :return: { 'Certificate': { 'UserName': 'string', 'CertificateId': 'string', 'CertificateBody': 'string', 'Status': 'Active'|'Inactive', 'UploadDate': datetime(2015, 1, 1) } } """ pass def upload_ssh_public_key(UserName=None, SSHPublicKeyBody=None): """ Uploads an SSH public key and associates it with the specified IAM user. The SSH public key uploaded by this action can be used only for authenticating the associated IAM user to an AWS CodeCommit repository. For more information about using SSH keys to authenticate to an AWS CodeCommit repository, see Set up AWS CodeCommit for SSH Connections in the AWS CodeCommit User Guide . See also: AWS API Documentation :example: response = client.upload_ssh_public_key( UserName='string', SSHPublicKeyBody='string' ) :type UserName: string :param UserName: [REQUIRED] The name of the IAM user to associate the SSH public key with. This parameter allows (per its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- :type SSHPublicKeyBody: string :param SSHPublicKeyBody: [REQUIRED] The SSH public key. The public key must be encoded in ssh-rsa format or PEM format. The regex pattern used to validate this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range as well as the printable characters in the Basic Latin and Latin-1 Supplement character set (through u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D). :rtype: dict :return: { 'SSHPublicKey': { 'UserName': 'string', 'SSHPublicKeyId': 'string', 'Fingerprint': 'string', 'SSHPublicKeyBody': 'string', 'Status': 'Active'|'Inactive', 'UploadDate': datetime(2015, 1, 1) } } """ pass
class MetadataNotFound(Exception): pass class MetadataCorruption(Exception): pass class NotYetImplemented(Exception): pass class SPConfigurationMissing(Exception): pass
inp = input() arr = inp.split(' ') L = int(arr[0]) N = int(arr[1]) dic = [] for i in range(0,L): st = input() stri = st.split(' ') dic.append(stri) for i in range(0,N): inp = input() tr = False for j in range(0,L): temp = dic[j] if(inp == temp[0]): print(temp[1]) tr = True break if(tr): continue if(inp[len(inp)-1] == 'y' and len(inp)>1): if(inp[len(inp)-2] != 'a' and inp[len(inp)-2] != 'e' and inp[len(inp)-2] != 'i' and inp[len(inp)-2] != 'o' and inp[len(inp)-2] != 'u'): print(inp[0:len(inp)-1] + 'ies') continue if(inp[len(inp)-1] == 'o' or inp[len(inp)-1] == 's' or inp[len(inp)-1] == 'x' or (inp[len(inp)-2] == 'c' and inp[len(inp)-1] == 'h') or (inp[len(inp)-2] == 's' and inp[len(inp)-1] == 'h')): print(inp + 'es') continue print(inp + 's')
__all__ = ( 'decode_int', 'decode_str', 'decode_lst' ) def decode_int(data, pos): end = data[pos:].index(b'e') if data[pos+1] == ord('-'): return (int(data[pos + 2:pos + end]) * -1, end) else: return (int(data[pos + 1:pos + end]), end + pos) # return data as raw bytes not decoded to ASCII def decode_str(data, pos): index = data[pos:].find(b':') length = int(data[pos: pos+ index]) return (data[pos + index + 1: pos + index + length+1], length + pos + index + 1) def decode_lst(data): lst = [] i = 1 while data[i] != ord(b'e'): elem, newpos = decode_dic[bytes([data[i]])](data, i) i = newpos lst.append(elem) return lst decode_dic = {} decode_dic[b'0'] = decode_str decode_dic[b'1'] = decode_str decode_dic[b'2'] = decode_str decode_dic[b'3'] = decode_str decode_dic[b'4'] = decode_str decode_dic[b'5'] = decode_str decode_dic[b'6'] = decode_str decode_dic[b'7'] = decode_str decode_dic[b'8'] = decode_str decode_dic[b'9'] = decode_str decode_dic[b'i'] = decode_int
def seat_decode(seat): row = int(seat[:7].replace("F", "0").replace("B", "1"), 2) column = int(seat[7:].replace("L", "0").replace("R", "1"), 2) return row * 8 + column if __name__ == "__main__": with open("input.txt", "r") as f: ids = {seat_decode(line.strip()) for line in f.readlines()} result1 = max(ids) print(f"Result 1: {result1}") for seat in range(min(ids), max(ids)): if seat - 1 in ids and seat + 1 in ids and seat not in ids: result2 = seat break print(f"Result 2: {result2}")
__all__ = ['MODEL_URL', 'MODEL_VIEW'] MODEL_URL = """from rest_framework.routers import SimpleRouter from {{ app }}.api import views router = SimpleRouter() {% for model in models %} router.register(r'{{ model | lower }}', views.{{ model }}ViewSet){% endfor %} urlpatterns = router.urls """ MODEL_VIEW = """from rest_framework import viewsets, permissions from {{ app }}.api.serializers import * {% for model in models %} class {{ model }}ViewSet(viewsets.ModelViewSet): \"\"\" ViewSet for {{ model }} model retrieve: Return the given {{ model }}. list: Return a list of all the existing {{ model }}. create: Create a new {{ model }} instance. update: Update a {{ model }} instance. partial_update: Partial update a {{ model }} instance by pk. destroy: Delete a {{ model }} instance. \"\"\" queryset = {{ model }}.objects.order_by('pk') serializer_class = {{ model }}Serializer permission_classes = (permissions.IsAuthenticated, ) {% endfor %}"""
dicio = {"Nome": str(input('Nome do jogador: '))} partidas = int(input(f'Quantas partidas {dicio["Nome"]} jogou? ')) lista = [] for c in range(partidas): dicio["Gols"] = int((input(f'Quantos gols na partida {c+1}: '))) lista.append(dicio["Gols"]) dicio["Gols"] = lista total = int() for c in lista: total += c dicio["Total"] = total print('-='*30) print(dicio) print('-='*30) for c, v in dicio.items(): print(f'O campo {c} tem o valor {v}') print('-='*30) print(f'O jogador {dicio["Nome"]} jogou {partidas} partidas.') for c, v in enumerate(lista): print(f' => Na partida {c+1}, fez {v} gols.') print(f'Foi um total de {total} gols.')
class Solution(object): def countNumbersWithUniqueDigits(self, n): """ :type n: int :rtype: int """ if n == 0: return 1 if n == 1: return 10 ans, base = 10, 9 for i in range(1, n): base *= (10 - i) ans += base return ans if __name__ == '__main__': solution = Solution() print(solution.countNumbersWithUniqueDigits(2))
print("Welcome to my Game") print("Instructions: During this game you will use somethings keywords for continue with the story. You can play again to know the different endings.") print() start = input("Type, START ") print() print("Wake Up") print("Yo me desperte en la calle, a mi alrededor escuchaba gritos y veia fuego, al parecer algo ocurria en la ciudad.\n Entonces escuche un ruido en mi bolsillo, era mi telefono, entonces decidi: ") Q1 = input("Teclea la palabra, CONTESTAR/NO: ") if Q1.lower() == "contestar": print("Yo escuche una voz algo cortada que me decia,\nTe estoy viendo por la camara del poste de luz, en la siguiente calle hay un carro policia con armas y proteccion, tomalas y te ayudare a salir.") print("Yo me sentia confundido, no sabia quien era y tenia que tomar una decision") Q1_2 = input("Teclea la palabra. SEGUIR/BUSCAR_AYUDA: ") if Q1_2.lower() == "seguir": print("Decidi seguir a la voz, corri lo mas rapido que podia y llegue al carro policia.") print("La proteccion era muy pesada entonces tenia que escoger que arma tomar, entonces elegi: ") Q1_3 = input("Teclea la palabra, AK47,ESCOPETA,PISTOLA_DE_MANO: ") if Q1_3.lower() == "ak47": print("Cuando agarre el arma entendi lo que ocurria.") print("Era una invacion alienigena, vi las naves volar en el cielo.") print("Una gran nave empezo a desplegar un arma muy grande.\nEntonces a los pocos metros vi un misil, quizas con eso podria destruir a la nabe\nEntonces tenia que escoger.") Q1_4 = input("Teclea la palabra, ESCAPAR/DISPARAR_EL_MISIL: ") if Q1_4.lower() == "escapar": print("Decidi escapar en el carro pero cuando abri la puerta,\nLa nave grande disparo su arma.") print("Cerre los ojos y cuando los abri, Desperte en mi cuarto. Todo fue un sueño")# FINAL 1 else: print("Decidi correr hacia el misil. Cuando estaba listo para destruir la nave,\nvi como todo cambiaba de color, entonces cerre los ojos y cuando los abri, estaba en mi cuarto.") print("Todo fue un sueño.") #FINAL 1.2 elif Q1_3.lower() == "escopeta": print("Cuando tome la escopeta, Entendi lo que ocurria.") print("Una horda de zombies me rodeaba.\n Dispare hasta quedarme con 1 bala pero todavia eran muchos, entonces tenia que decidir.") print("Suicidarme o usar la ultima bala para buscar una salida\nEntonces elegi: ") Q1_3_2 = input("Teclea la palabra, SUICIDARME/ULTIMA_OPORTUNIDAD: ") if Q1_3_2.lower() == "suicidarme": print("Cuando estaba a punto de disparar escuche un ruido como una alarma,\nentonces cerre los ojos y los volvi a abrir,") print("Me di cuenta que estaba en mi cuarto y Todo fue un sueño.")# final 2 else: print("Elegi la ultima oportunidad") print("Cuando estaba a punto de disparar vi un misil volando en el cielo y entendi que lo destruiria todo") print("Cerre los ojos y cuando los abri me di cuenta que estaba en mi cuarto, Todo fue un sueño.")# Final 2.2 else: print("Cuando tome la pistola de mano entendi lo que ocurria.") print("Estaba en medio de una protesta politica y yo tenia que proteger al president.\nEntonces el servicio secreto otra vez me llamo y me dijo.") print("Ya es hora de despertar") print("Cerre y abri los ojos y yo estaba en mi cuarto y mi papa me estaba despertando para ir a la escuela. Todo fue un sueño")# Final 3 else: print("Decidi no hacer caso al hombre de la llamada y busque ayuda.") print("Tenia que decidir a quien preguntar por que solo habia un hombre o una mujer, ambos de aspectos raros.") Q1_2_1 = input("Teclea la palabra, HOMBRE/MUJER: ") if Q1_2_1.lower() == "hombre": print("Le pregunte al hombre, pero cuando me acerque su cara cambio.") print("Su cara era de huesos y yo no lo podia creer, entonces cerre los ojos y cuando los abri.\nYo estaba en mi cuarto y Todo fue un sueño")# Final 4 else: print("Le pregunte a la mujer pero cuando abrio la boca vi que tenia colmillos como un vampiro") print("Entonces salto a mi cuello para beber mi sangre.") print("Yo estaba tan asustado que lo unico que pude hacer fue cerrar y abrir los ojos y me di cuenta que estaba en mi cuarto y Todo fue un sueño")#Final 4.2 else: print("Decidi no contestar, solo se escuchaba un ruido cada vez mas fuerte.") print("Vi a un policia y un bombero y corri hacia el....") Q2 = input("Teclea la palabra, POLICIA/BOMBERO: ") if Q2.lower() == "policia": print("El policia me dijo que varios edificios se desplomaron por un terremoto.") print("En ese momento otro edificio estaba cayendo y cuando estaba a punto de llegar al suelo 'grite' y desperte ajitado en mi cama y Todo fue un sueño")# Final 5 else: print("El bombero me dijo que varios edificios estaban en llamas y que probablemente me habia desmayado por el humo.") print("Entonces ocurrio una explosion y cuando abri los ojos estaa en mi cuarto y Todo fue un sueño.")# Final 6 print() print("The End")
def data(): return { "test": { "min/layer2/weights": { "displayName": "min/layer2/weights", "description": "" } }, "train": { "min/layer2/weights": { "displayName": "min/layer2/weights", "description": "" } } }
#!/usr/bin/env/ python # encoding: utf-8 __author__ = 'aldur'
# -*- coding: utf-8 -*- """Data literal storing emoji French names and Unicode codes.""" __all__ = ['EMOJI_UNICODE_FRENCH', 'UNICODE_EMOJI_FRENCH',] EMOJI_UNICODE_FRENCH = { u':visage_rieur:': u'\U0001F600', u':visage_souriant_avec_de_grands_yeux:': u'\U0001F603', u':visage_très_souriant_aux_yeux_rieurs:': u'\U0001F604', u':visage_souriant_aux_yeux_rieurs:': u'\U0001F601', u':visage_souriant_avec_yeux_plissés:': u'\U0001F606', u':visage_souriant_avec_une_goutte_de_sueur:': u'\U0001F605', u':se_rouler_par_terre_de_rire:': u'\U0001F923', u':visage_riant_aux_larmes:': u'\U0001F602', u':visage_avec_un_léger_sourire:': u'\U0001F642', u':tête_à_l’envers:': u'\U0001F643', u':visage_faisant_un_clin_d’œil:': u'\U0001F609', u':visage_souriant_avec_yeux_rieurs:': u'\U0001F60A', u':visage_souriant_avec_auréole:': u'\U0001F607', u':visage_souriant_avec_cœurs:': u'\U0001F970', u':visage_souriant_avec_yeux_en_forme_de_cœur:': u'\U0001F60D', u':visage_avec_des_étoiles_à_la_place_des_yeux:': u'\U0001F929', u':visage_envoyant_un_bisou:': u'\U0001F618', u':visage_faisant_un_bisou:': u'\U0001F617', u':visage_souriant:': u'\U0000263A\U0000FE0F', u':visage_faisant_un_bisou_avec_les_yeux_fermés:': u'\U0001F61A', u':visage_aux_yeux_rieurs_faisant_un_bisou:': u'\U0001F619', u':visage_souriant_avec_une_larme:': u'\U0001F972', u':miam:': u'\U0001F60B', u':visage_qui_tire_la_langue:': u'\U0001F61B', u':visage_qui_tire_la_langue_et_fait_un_clin_d’œil:': u'\U0001F61C', u':tête_de_fou:': u'\U0001F92A', u':visage_qui_tire_la_langue_les_yeux_plissés:': u'\U0001F61D', u':argent_dans_les_yeux_et_la_bouche:': u'\U0001F911', u':visage_qui_fait_un_câlin:': u'\U0001F917', u':visage_avec_une_main_sur_la_bouche:': u'\U0001F92D', u':visage_avec_un_doigt_sur_la_bouche:': u'\U0001F92B', u':visage_en_pleine_réflexion:': u'\U0001F914', u':visage_avec_bouche_fermeture_éclair:': u'\U0001F910', u':visage_avec_les_sourcils_relevés:': u'\U0001F928', u':visage_neutre:': u'\U0001F610', u':visage_sans_expression:': u'\U0001F611', u':visage_sans_bouche:': u'\U0001F636', u':visage_avec_un_sourire_malin:': u'\U0001F60F', u':visage_blasé:': u'\U0001F612', u':visage_roulant_des_yeux:': u'\U0001F644', u':visage_grimaçant:': u'\U0001F62C', u':visage_de_menteur:': u'\U0001F925', u':visage_soulagé:': u'\U0001F60C', u':visage_pensif:': u'\U0001F614', u':visage_endormi:': u'\U0001F62A', u':visage_qui_bave:': u'\U0001F924', u':visage_somnolent:': u'\U0001F634', u':visage_avec_masque:': u'\U0001F637', u':visage_avec_thermomètre:': u'\U0001F912', u':visage_avec_bandage_autour_de_la_tête:': u'\U0001F915', u':visage_nauséeux:': u'\U0001F922', u':visage_qui_vomit:': u'\U0001F92E', u':visage_qui_éternue:': u'\U0001F927', u':visage_rouge_et_chaud:': u'\U0001F975', u':visage_bleu_et_froid:': u'\U0001F976', u':visage_éméché:': u'\U0001F974', u':visage_étourdi:': u'\U0001F635', u':tête_qui_explose:': u'\U0001F92F', u':visage_avec_chapeau_de_cowboy:': u'\U0001F920', u':visage_festif:': u'\U0001F973', u':visage_déguisé:': u'\U0001F978', u':visage_avec_lunettes_de_soleil:': u'\U0001F60E', u':visage_de_geek:': u'\U0001F913', u':visage_avec_un_monocle:': u'\U0001F9D0', u':visage_confus:': u'\U0001F615', u':visage_inquiet:': u'\U0001F61F', u':visage_légèrement_mécontent:': u'\U0001F641', u':visage_mécontent:': u'\U00002639\U0000FE0F', u':visage_avec_bouche_ouverte:': u'\U0001F62E', u':visage_ébahi:': u'\U0001F62F', u':visage_stupéfait:': u'\U0001F632', u':visage_qui_rougit:': u'\U0001F633', u':visage_implorant:': u'\U0001F97A', u':visage_mécontent_avec_bouche_ouverte:': u'\U0001F626', u':visage_angoissé:': u'\U0001F627', u':visage_effrayé:': u'\U0001F628', u':visage_anxieux_avec_goutte_de_sueur:': u'\U0001F630', u':visage_triste_mais_soulagé:': u'\U0001F625', u':visage_qui_pleure:': u'\U0001F622', u':visage_qui_pleure_à_chaudes_larmes:': u'\U0001F62D', u':visage_qui_hurle_de_peur:': u'\U0001F631', u':visage_déconcerté:': u'\U0001F616', u':visage_persévérant:': u'\U0001F623', u':visage_déçu:': u'\U0001F61E', u':visage_démoralisé_avec_goutte_de_sueur:': u'\U0001F613', u':visage_épuisé:': u'\U0001F629', u':visage_fatigué:': u'\U0001F62B', u':visage_bâillant:': u'\U0001F971', u':visage_avec_fumée_sortant_des_narines:': u'\U0001F624', u':visage_boudeur:': u'\U0001F621', u':visage_en_colère:': u'\U0001F620', u':visage_avec_des_symboles_dans_la_bouche:': u'\U0001F92C', u':visage_souriant_avec_des_cornes:': u'\U0001F608', u':visage_en_colère_avec_des_cornes:': u'\U0001F47F', u':crâne:': u'\U0001F480', u':tête_de_mort:': u'\U00002620\U0000FE0F', u':tas_de_crotte:': u'\U0001F4A9', u':visage_de_clown:': u'\U0001F921', u':ogre:': u'\U0001F479', u':monstre_japonais:': u'\U0001F47A', u':fantôme:': u'\U0001F47B', u':alien:': u'\U0001F47D', u':monstre_de_l’espace:': u'\U0001F47E', u':robot:': u'\U0001F916', u':chat_qui_sourit:': u'\U0001F63A', u':chat_qui_sourit_avec_des_yeux_rieurs:': u'\U0001F638', u':chat_qui_pleure_de_joie:': u'\U0001F639', u':chat_souriant_aux_yeux_en_cœurs:': u'\U0001F63B', u':chat_avec_sourire_en_coin:': u'\U0001F63C', u':chat_qui_fait_un_bisou:': u'\U0001F63D', u':chat_fatigué:': u'\U0001F640', u':chat_qui_pleure:': u'\U0001F63F', u':chat_qui_boude:': u'\U0001F63E', u':singe_ne_rien_voir:': u'\U0001F648', u':singe_ne_rien_entendre:': u'\U0001F649', u':singe_ne_rien_dire:': u'\U0001F64A', u':trace_de_rouge_à_lèvres:': u'\U0001F48B', u':lettre_d’amour:': u'\U0001F48C', u':cœur_et_flèche:': u'\U0001F498', u':cœur_avec_ruban:': u'\U0001F49D', u':cœur_étincelant:': u'\U0001F496', u':cœur_grandissant:': u'\U0001F497', u':cœur_battant:': u'\U0001F493', u':cœurs_qui_tournent:': u'\U0001F49E', u':deux_cœurs:': u'\U0001F495', u':décoration_avec_cœur:': u'\U0001F49F', u':cœur_point_d’exclamation:': u'\U00002763\U0000FE0F', u':cœur_brisé:': u'\U0001F494', u':cœur_rouge:': u'\U00002764\U0000FE0F', u':cœur_orange:': u'\U0001F9E1', u':cœur_jaune:': u'\U0001F49B', u':cœur_vert:': u'\U0001F49A', u':cœur_bleu:': u'\U0001F499', u':cœur_violet:': u'\U0001F49C', u':cœur_marron:': u'\U0001F90E', u':cœur_noir:': u'\U0001F5A4', u':cœur_blanc:': u'\U0001F90D', u':cent_points:': u'\U0001F4AF', u':symbole_de_colère:': u'\U0001F4A2', u':explosion:': u'\U0001F4A5', u':étourdissement:': u'\U0001F4AB', u':gouttes_de_sueur:': u'\U0001F4A6', u':décamper:': u'\U0001F4A8', u':trou:': u'\U0001F573\U0000FE0F', u':bombe:': u'\U0001F4A3', u':bulle_de_parole:': u'\U0001F4AC', u':œil_dans_une_bulle_de_bd:': u'\U0001F441\U0000FE0F\U0000200D\U0001F5E8\U0000FE0F', u':bulle_de_parole_gauche:': u'\U0001F5E8\U0000FE0F', u':bulle_colère_droite:': u'\U0001F5EF\U0000FE0F', u':bulle_de_pensée:': u'\U0001F4AD', u':endormi:': u'\U0001F4A4', u':signe_de_la_main:': u'\U0001F44B', u':signe_de_la_main_peau_claire:': u'\U0001F44B\U0001F3FB', u':signe_de_la_main_peau_moyennement_claire:': u'\U0001F44B\U0001F3FC', u':signe_de_la_main_peau_légèrement_mate:': u'\U0001F44B\U0001F3FD', u':signe_de_la_main_peau_mate:': u'\U0001F44B\U0001F3FE', u':signe_de_la_main_peau_foncée:': u'\U0001F44B\U0001F3FF', u':dos_de_main_levée:': u'\U0001F91A', u':dos_de_main_levée_peau_claire:': u'\U0001F91A\U0001F3FB', u':dos_de_main_levée_peau_moyennement_claire:': u'\U0001F91A\U0001F3FC', u':dos_de_main_levée_peau_légèrement_mate:': u'\U0001F91A\U0001F3FD', u':dos_de_main_levée_peau_mate:': u'\U0001F91A\U0001F3FE', u':dos_de_main_levée_peau_foncée:': u'\U0001F91A\U0001F3FF', u':main_levée_doigts_écartés:': u'\U0001F590\U0000FE0F', u':main_levée_doigts_écartés_peau_claire:': u'\U0001F590\U0001F3FB', u':main_levée_doigts_écartés_peau_moyennement_claire:': u'\U0001F590\U0001F3FC', u':main_levée_doigts_écartés_peau_légèrement_mate:': u'\U0001F590\U0001F3FD', u':main_levée_doigts_écartés_peau_mate:': u'\U0001F590\U0001F3FE', u':main_levée_doigts_écartés_peau_foncée:': u'\U0001F590\U0001F3FF', u':main_levée:': u'\U0000270B', u':main_levée_peau_claire:': u'\U0000270B\U0001F3FB', u':main_levée_peau_moyennement_claire:': u'\U0000270B\U0001F3FC', u':main_levée_peau_légèrement_mate:': u'\U0000270B\U0001F3FD', u':main_levée_peau_mate:': u'\U0000270B\U0001F3FE', u':main_levée_peau_foncée:': u'\U0000270B\U0001F3FF', u':salut_vulcain:': u'\U0001F596', u':salut_vulcain_peau_claire:': u'\U0001F596\U0001F3FB', u':salut_vulcain_peau_moyennement_claire:': u'\U0001F596\U0001F3FC', u':salut_vulcain_peau_légèrement_mate:': u'\U0001F596\U0001F3FD', u':salut_vulcain_peau_mate:': u'\U0001F596\U0001F3FE', u':salut_vulcain_peau_foncée:': u'\U0001F596\U0001F3FF', u':ok:': u'\U0001F44C', u':ok_peau_claire:': u'\U0001F44C\U0001F3FB', u':ok_peau_moyennement_claire:': u'\U0001F44C\U0001F3FC', u':ok_peau_légèrement_mate:': u'\U0001F44C\U0001F3FD', u':ok_peau_mate:': u'\U0001F44C\U0001F3FE', u':ok_peau_foncée:': u'\U0001F44C\U0001F3FF', u':bout_des_doigts_joints:': u'\U0001F90C', u':bout_des_doigts_joints_peau_claire:': u'\U0001F90C\U0001F3FB', u':bout_des_doigts_joints_peau_moyennement_claire:': u'\U0001F90C\U0001F3FC', u':bout_des_doigts_joints_peau_légèrement_mate:': u'\U0001F90C\U0001F3FD', u':bout_des_doigts_joints_peau_mate:': u'\U0001F90C\U0001F3FE', u':bout_des_doigts_joints_peau_foncée:': u'\U0001F90C\U0001F3FF', u':pouce_et_index_rapprochés:': u'\U0001F90F', u':pouce_et_index_rapprochés_peau_claire:': u'\U0001F90F\U0001F3FB', u':pouce_et_index_rapprochés_peau_moyennement_claire:': u'\U0001F90F\U0001F3FC', u':pouce_et_index_rapprochés_peau_légèrement_mate:': u'\U0001F90F\U0001F3FD', u':pouce_et_index_rapprochés_peau_mate:': u'\U0001F90F\U0001F3FE', u':pouce_et_index_rapprochés_peau_foncée:': u'\U0001F90F\U0001F3FF', u':v_de_la_victoire:': u'\U0000270C\U0000FE0F', u':v_de_la_victoire_peau_claire:': u'\U0000270C\U0001F3FB', u':v_de_la_victoire_peau_moyennement_claire:': u'\U0000270C\U0001F3FC', u':v_de_la_victoire_peau_légèrement_mate:': u'\U0000270C\U0001F3FD', u':v_de_la_victoire_peau_mate:': u'\U0000270C\U0001F3FE', u':v_de_la_victoire_peau_foncée:': u'\U0000270C\U0001F3FF', u':doigts_croisés:': u'\U0001F91E', u':doigts_croisés_peau_claire:': u'\U0001F91E\U0001F3FB', u':doigts_croisés_peau_moyennement_claire:': u'\U0001F91E\U0001F3FC', u':doigts_croisés_peau_légèrement_mate:': u'\U0001F91E\U0001F3FD', u':doigts_croisés_peau_mate:': u'\U0001F91E\U0001F3FE', u':doigts_croisés_peau_foncée:': u'\U0001F91E\U0001F3FF', u':signe_je_t’aime:': u'\U0001F91F', u':signe_je_t’aime_peau_claire:': u'\U0001F91F\U0001F3FB', u':signe_je_t’aime_peau_moyennement_claire:': u'\U0001F91F\U0001F3FC', u':signe_je_t’aime_peau_légèrement_mate:': u'\U0001F91F\U0001F3FD', u':signe_je_t’aime_peau_mate:': u'\U0001F91F\U0001F3FE', u':signe_je_t’aime_peau_foncée:': u'\U0001F91F\U0001F3FF', u':cornes_avec_les_doigts:': u'\U0001F918', u':cornes_avec_les_doigts_peau_claire:': u'\U0001F918\U0001F3FB', u':cornes_avec_les_doigts_peau_moyennement_claire:': u'\U0001F918\U0001F3FC', u':cornes_avec_les_doigts_peau_légèrement_mate:': u'\U0001F918\U0001F3FD', u':cornes_avec_les_doigts_peau_mate:': u'\U0001F918\U0001F3FE', u':cornes_avec_les_doigts_peau_foncée:': u'\U0001F918\U0001F3FF', u':signe_appel_téléphonique_avec_les_doigts:': u'\U0001F919', u':signe_appel_téléphonique_avec_les_doigts_peau_claire:': u'\U0001F919\U0001F3FB', u':signe_appel_téléphonique_avec_les_doigts_peau_moyennement_claire:': u'\U0001F919\U0001F3FC', u':signe_appel_téléphonique_avec_les_doigts_peau_légèrement_mate:': u'\U0001F919\U0001F3FD', u':signe_appel_téléphonique_avec_les_doigts_peau_mate:': u'\U0001F919\U0001F3FE', u':signe_appel_téléphonique_avec_les_doigts_peau_foncée:': u'\U0001F919\U0001F3FF', u':main_avec_index_pointant_à_gauche:': u'\U0001F448', u':main_avec_index_pointant_à_gauche_peau_claire:': u'\U0001F448\U0001F3FB', u':main_avec_index_pointant_à_gauche_peau_moyennement_claire:': u'\U0001F448\U0001F3FC', u':main_avec_index_pointant_à_gauche_peau_légèrement_mate:': u'\U0001F448\U0001F3FD', u':main_avec_index_pointant_à_gauche_peau_mate:': u'\U0001F448\U0001F3FE', u':main_avec_index_pointant_à_gauche_peau_foncée:': u'\U0001F448\U0001F3FF', u':main_avec_index_pointant_à_droite:': u'\U0001F449', u':main_avec_index_pointant_à_droite_peau_claire:': u'\U0001F449\U0001F3FB', u':main_avec_index_pointant_à_droite_peau_moyennement_claire:': u'\U0001F449\U0001F3FC', u':main_avec_index_pointant_à_droite_peau_légèrement_mate:': u'\U0001F449\U0001F3FD', u':main_avec_index_pointant_à_droite_peau_mate:': u'\U0001F449\U0001F3FE', u':main_avec_index_pointant_à_droite_peau_foncée:': u'\U0001F449\U0001F3FF', u':main_avec_index_pointant_vers_le_haut:': u'\U0001F446', u':main_avec_index_pointant_vers_le_haut_peau_claire:': u'\U0001F446\U0001F3FB', u':main_avec_index_pointant_vers_le_haut_peau_moyennement_claire:': u'\U0001F446\U0001F3FC', u':main_avec_index_pointant_vers_le_haut_peau_légèrement_mate:': u'\U0001F446\U0001F3FD', u':main_avec_index_pointant_vers_le_haut_peau_mate:': u'\U0001F446\U0001F3FE', u':main_avec_index_pointant_vers_le_haut_peau_foncée:': u'\U0001F446\U0001F3FF', u':doigt_d’honneur:': u'\U0001F595', u':doigt_d’honneur_peau_claire:': u'\U0001F595\U0001F3FB', u':doigt_d’honneur_peau_moyennement_claire:': u'\U0001F595\U0001F3FC', u':doigt_d’honneur_peau_légèrement_mate:': u'\U0001F595\U0001F3FD', u':doigt_d’honneur_peau_mate:': u'\U0001F595\U0001F3FE', u':doigt_d’honneur_peau_foncée:': u'\U0001F595\U0001F3FF', u':main_avec_index_pointant_vers_le_bas:': u'\U0001F447', u':main_avec_index_pointant_vers_le_bas_peau_claire:': u'\U0001F447\U0001F3FB', u':main_avec_index_pointant_vers_le_bas_peau_moyennement_claire:': u'\U0001F447\U0001F3FC', u':main_avec_index_pointant_vers_le_bas_peau_légèrement_mate:': u'\U0001F447\U0001F3FD', u':main_avec_index_pointant_vers_le_bas_peau_mate:': u'\U0001F447\U0001F3FE', u':main_avec_index_pointant_vers_le_bas_peau_foncée:': u'\U0001F447\U0001F3FF', u':index_pointant_vers_le_haut:': u'\U0000261D\U0000FE0F', u':index_pointant_vers_le_haut_peau_claire:': u'\U0000261D\U0001F3FB', u':index_pointant_vers_le_haut_peau_moyennement_claire:': u'\U0000261D\U0001F3FC', u':index_pointant_vers_le_haut_peau_légèrement_mate:': u'\U0000261D\U0001F3FD', u':index_pointant_vers_le_haut_peau_mate:': u'\U0000261D\U0001F3FE', u':index_pointant_vers_le_haut_peau_foncée:': u'\U0000261D\U0001F3FF', u':pouce_vers_le_haut:': u'\U0001F44D', u':pouce_vers_le_haut_peau_claire:': u'\U0001F44D\U0001F3FB', u':pouce_vers_le_haut_peau_moyennement_claire:': u'\U0001F44D\U0001F3FC', u':pouce_vers_le_haut_peau_légèrement_mate:': u'\U0001F44D\U0001F3FD', u':pouce_vers_le_haut_peau_mate:': u'\U0001F44D\U0001F3FE', u':pouce_vers_le_haut_peau_foncée:': u'\U0001F44D\U0001F3FF', u':pouce_vers_le_bas:': u'\U0001F44E', u':pouce_vers_le_bas_peau_claire:': u'\U0001F44E\U0001F3FB', u':pouce_vers_le_bas_peau_moyennement_claire:': u'\U0001F44E\U0001F3FC', u':pouce_vers_le_bas_peau_légèrement_mate:': u'\U0001F44E\U0001F3FD', u':pouce_vers_le_bas_peau_mate:': u'\U0001F44E\U0001F3FE', u':pouce_vers_le_bas_peau_foncée:': u'\U0001F44E\U0001F3FF', u':poing_levé:': u'\U0000270A', u':poing_levé_peau_claire:': u'\U0000270A\U0001F3FB', u':poing_levé_peau_moyennement_claire:': u'\U0000270A\U0001F3FC', u':poing_levé_peau_légèrement_mate:': u'\U0000270A\U0001F3FD', u':poing_levé_peau_mate:': u'\U0000270A\U0001F3FE', u':poing_levé_peau_foncée:': u'\U0000270A\U0001F3FF', u':poing_de_face:': u'\U0001F44A', u':poing_de_face_peau_claire:': u'\U0001F44A\U0001F3FB', u':poing_de_face_peau_moyennement_claire:': u'\U0001F44A\U0001F3FC', u':poing_de_face_peau_légèrement_mate:': u'\U0001F44A\U0001F3FD', u':poing_de_face_peau_mate:': u'\U0001F44A\U0001F3FE', u':poing_de_face_peau_foncée:': u'\U0001F44A\U0001F3FF', u':poing_à_gauche:': u'\U0001F91B', u':poing_à_gauche_peau_claire:': u'\U0001F91B\U0001F3FB', u':poing_à_gauche_peau_moyennement_claire:': u'\U0001F91B\U0001F3FC', u':poing_à_gauche_peau_légèrement_mate:': u'\U0001F91B\U0001F3FD', u':poing_à_gauche_peau_mate:': u'\U0001F91B\U0001F3FE', u':poing_à_gauche_peau_foncée:': u'\U0001F91B\U0001F3FF', u':poing_à_droite:': u'\U0001F91C', u':poing_à_droite_peau_claire:': u'\U0001F91C\U0001F3FB', u':poing_à_droite_peau_moyennement_claire:': u'\U0001F91C\U0001F3FC', u':poing_à_droite_peau_légèrement_mate:': u'\U0001F91C\U0001F3FD', u':poing_à_droite_peau_mate:': u'\U0001F91C\U0001F3FE', u':poing_à_droite_peau_foncée:': u'\U0001F91C\U0001F3FF', u':applaudissements:': u'\U0001F44F', u':applaudissements_peau_claire:': u'\U0001F44F\U0001F3FB', u':applaudissements_peau_moyennement_claire:': u'\U0001F44F\U0001F3FC', u':applaudissements_peau_légèrement_mate:': u'\U0001F44F\U0001F3FD', u':applaudissements_peau_mate:': u'\U0001F44F\U0001F3FE', u':applaudissements_peau_foncée:': u'\U0001F44F\U0001F3FF', u':mains_levées:': u'\U0001F64C', u':mains_levées_peau_claire:': u'\U0001F64C\U0001F3FB', u':mains_levées_peau_moyennement_claire:': u'\U0001F64C\U0001F3FC', u':mains_levées_peau_légèrement_mate:': u'\U0001F64C\U0001F3FD', u':mains_levées_peau_mate:': u'\U0001F64C\U0001F3FE', u':mains_levées_peau_foncée:': u'\U0001F64C\U0001F3FF', u':mains_ouvertes:': u'\U0001F450', u':mains_ouvertes_peau_claire:': u'\U0001F450\U0001F3FB', u':mains_ouvertes_peau_moyennement_claire:': u'\U0001F450\U0001F3FC', u':mains_ouvertes_peau_légèrement_mate:': u'\U0001F450\U0001F3FD', u':mains_ouvertes_peau_mate:': u'\U0001F450\U0001F3FE', u':mains_ouvertes_peau_foncée:': u'\U0001F450\U0001F3FF', u':paume_contre_paume_doigts_vers_le_haut:': u'\U0001F932', u':paume_contre_paume_doigts_vers_le_haut_peau_claire:': u'\U0001F932\U0001F3FB', u':paume_contre_paume_doigts_vers_le_haut_peau_moyennement_claire:': u'\U0001F932\U0001F3FC', u':paume_contre_paume_doigts_vers_le_haut_peau_légèrement_mate:': u'\U0001F932\U0001F3FD', u':paume_contre_paume_doigts_vers_le_haut_peau_mate:': u'\U0001F932\U0001F3FE', u':paume_contre_paume_doigts_vers_le_haut_peau_foncée:': u'\U0001F932\U0001F3FF', u':poignée_de_main:': u'\U0001F91D', u':mains_en_prière:': u'\U0001F64F', u':mains_en_prière_peau_claire:': u'\U0001F64F\U0001F3FB', u':mains_en_prière_peau_moyennement_claire:': u'\U0001F64F\U0001F3FC', u':mains_en_prière_peau_légèrement_mate:': u'\U0001F64F\U0001F3FD', u':mains_en_prière_peau_mate:': u'\U0001F64F\U0001F3FE', u':mains_en_prière_peau_foncée:': u'\U0001F64F\U0001F3FF', u':main_qui_écrit:': u'\U0000270D\U0000FE0F', u':main_qui_écrit_peau_claire:': u'\U0000270D\U0001F3FB', u':main_qui_écrit_peau_moyennement_claire:': u'\U0000270D\U0001F3FC', u':main_qui_écrit_peau_légèrement_mate:': u'\U0000270D\U0001F3FD', u':main_qui_écrit_peau_mate:': u'\U0000270D\U0001F3FE', u':main_qui_écrit_peau_foncée:': u'\U0000270D\U0001F3FF', u':vernis_à_ongles:': u'\U0001F485', u':vernis_à_ongles_peau_claire:': u'\U0001F485\U0001F3FB', u':vernis_à_ongles_peau_moyennement_claire:': u'\U0001F485\U0001F3FC', u':vernis_à_ongles_peau_légèrement_mate:': u'\U0001F485\U0001F3FD', u':vernis_à_ongles_peau_mate:': u'\U0001F485\U0001F3FE', u':vernis_à_ongles_peau_foncée:': u'\U0001F485\U0001F3FF', u':selfie:': u'\U0001F933', u':selfie_peau_claire:': u'\U0001F933\U0001F3FB', u':selfie_peau_moyennement_claire:': u'\U0001F933\U0001F3FC', u':selfie_peau_légèrement_mate:': u'\U0001F933\U0001F3FD', u':selfie_peau_mate:': u'\U0001F933\U0001F3FE', u':selfie_peau_foncée:': u'\U0001F933\U0001F3FF', u':biceps_contracté:': u'\U0001F4AA', u':biceps_contracté_peau_claire:': u'\U0001F4AA\U0001F3FB', u':biceps_contracté_peau_moyennement_claire:': u'\U0001F4AA\U0001F3FC', u':biceps_contracté_peau_légèrement_mate:': u'\U0001F4AA\U0001F3FD', u':biceps_contracté_peau_mate:': u'\U0001F4AA\U0001F3FE', u':biceps_contracté_peau_foncée:': u'\U0001F4AA\U0001F3FF', u':bras_mécanique:': u'\U0001F9BE', u':jambe_mécanique:': u'\U0001F9BF', u':jambe:': u'\U0001F9B5', u':jambe_peau_claire:': u'\U0001F9B5\U0001F3FB', u':jambe_peau_moyennement_claire:': u'\U0001F9B5\U0001F3FC', u':jambe_peau_légèrement_mate:': u'\U0001F9B5\U0001F3FD', u':jambe_peau_mate:': u'\U0001F9B5\U0001F3FE', u':jambe_peau_foncée:': u'\U0001F9B5\U0001F3FF', u':pied:': u'\U0001F9B6', u':pied_peau_claire:': u'\U0001F9B6\U0001F3FB', u':pied_peau_moyennement_claire:': u'\U0001F9B6\U0001F3FC', u':pied_peau_légèrement_mate:': u'\U0001F9B6\U0001F3FD', u':pied_peau_mate:': u'\U0001F9B6\U0001F3FE', u':pied_peau_foncée:': u'\U0001F9B6\U0001F3FF', u':oreille:': u'\U0001F442', u':oreille_peau_claire:': u'\U0001F442\U0001F3FB', u':oreille_peau_moyennement_claire:': u'\U0001F442\U0001F3FC', u':oreille_peau_légèrement_mate:': u'\U0001F442\U0001F3FD', u':oreille_peau_mate:': u'\U0001F442\U0001F3FE', u':oreille_peau_foncée:': u'\U0001F442\U0001F3FF', u':oreille_appareillée:': u'\U0001F9BB', u':oreille_appareillée_peau_claire:': u'\U0001F9BB\U0001F3FB', u':oreille_appareillée_peau_moyennement_claire:': u'\U0001F9BB\U0001F3FC', u':oreille_appareillée_peau_légèrement_mate:': u'\U0001F9BB\U0001F3FD', u':oreille_appareillée_peau_mate:': u'\U0001F9BB\U0001F3FE', u':oreille_appareillée_peau_foncée:': u'\U0001F9BB\U0001F3FF', u':nez:': u'\U0001F443', u':nez_peau_claire:': u'\U0001F443\U0001F3FB', u':nez_peau_moyennement_claire:': u'\U0001F443\U0001F3FC', u':nez_peau_légèrement_mate:': u'\U0001F443\U0001F3FD', u':nez_peau_mate:': u'\U0001F443\U0001F3FE', u':nez_peau_foncée:': u'\U0001F443\U0001F3FF', u':cerveau:': u'\U0001F9E0', u':cœur:': u'\U0001FAC0', u':poumons:': u'\U0001FAC1', u':dent:': u'\U0001F9B7', u':os:': u'\U0001F9B4', u':yeux:': u'\U0001F440', u':œil:': u'\U0001F441\U0000FE0F', u':langue:': u'\U0001F445', u':bouche:': u'\U0001F444', u':bébé:': u'\U0001F476', u':bébé_peau_claire:': u'\U0001F476\U0001F3FB', u':bébé_peau_moyennement_claire:': u'\U0001F476\U0001F3FC', u':bébé_peau_légèrement_mate:': u'\U0001F476\U0001F3FD', u':bébé_peau_mate:': u'\U0001F476\U0001F3FE', u':bébé_peau_foncée:': u'\U0001F476\U0001F3FF', u':enfant:': u'\U0001F9D2', u':enfant_peau_claire:': u'\U0001F9D2\U0001F3FB', u':enfant_peau_moyennement_claire:': u'\U0001F9D2\U0001F3FC', u':enfant_peau_légèrement_mate:': u'\U0001F9D2\U0001F3FD', u':enfant_peau_mate:': u'\U0001F9D2\U0001F3FE', u':enfant_peau_foncée:': u'\U0001F9D2\U0001F3FF', u':garçon:': u'\U0001F466', u':garçon_peau_claire:': u'\U0001F466\U0001F3FB', u':garçon_peau_moyennement_claire:': u'\U0001F466\U0001F3FC', u':garçon_peau_légèrement_mate:': u'\U0001F466\U0001F3FD', u':garçon_peau_mate:': u'\U0001F466\U0001F3FE', u':garçon_peau_foncée:': u'\U0001F466\U0001F3FF', u':fille:': u'\U0001F467', u':fille_peau_claire:': u'\U0001F467\U0001F3FB', u':fille_peau_moyennement_claire:': u'\U0001F467\U0001F3FC', u':fille_peau_légèrement_mate:': u'\U0001F467\U0001F3FD', u':fille_peau_mate:': u'\U0001F467\U0001F3FE', u':fille_peau_foncée:': u'\U0001F467\U0001F3FF', u':adulte:': u'\U0001F9D1', u':adulte_peau_claire:': u'\U0001F9D1\U0001F3FB', u':adulte_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC', u':adulte_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD', u':adulte_peau_mate:': u'\U0001F9D1\U0001F3FE', u':adulte_peau_foncée:': u'\U0001F9D1\U0001F3FF', u':personne_blonde:': u'\U0001F471', u':personne_blonde_peau_claire:': u'\U0001F471\U0001F3FB', u':personne_blonde_peau_moyennement_claire:': u'\U0001F471\U0001F3FC', u':personne_blonde_peau_légèrement_mate:': u'\U0001F471\U0001F3FD', u':personne_blonde_peau_mate:': u'\U0001F471\U0001F3FE', u':personne_blonde_peau_foncée:': u'\U0001F471\U0001F3FF', u':homme:': u'\U0001F468', u':homme_peau_claire:': u'\U0001F468\U0001F3FB', u':homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC', u':homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD', u':homme_peau_mate:': u'\U0001F468\U0001F3FE', u':homme_peau_foncée:': u'\U0001F468\U0001F3FF', u':homme_barbu:': u'\U0001F9D4', u':homme_barbu_peau_claire:': u'\U0001F9D4\U0001F3FB', u':homme_barbu_peau_moyennement_claire:': u'\U0001F9D4\U0001F3FC', u':homme_barbu_peau_légèrement_mate:': u'\U0001F9D4\U0001F3FD', u':homme_barbu_peau_mate:': u'\U0001F9D4\U0001F3FE', u':homme_barbu_peau_foncée:': u'\U0001F9D4\U0001F3FF', u':homme_cheveux_roux:': u'\U0001F468\U0000200D\U0001F9B0', u':homme_peau_claire_et_cheveux_roux:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9B0', u':homme_peau_moyennement_claire_et_cheveux_roux:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9B0', u':homme_peau_légèrement_mate_et_cheveux_roux:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9B0', u':homme_peau_mate_et_cheveux_roux:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9B0', u':homme_peau_foncée_et_cheveux_roux:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9B0', u':homme_cheveux_bouclés:': u'\U0001F468\U0000200D\U0001F9B1', u':homme_peau_claire_et_cheveux_bouclés:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9B1', u':homme_peau_moyennement_claire_et_cheveux_bouclés:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9B1', u':homme_peau_légèrement_mate_et_cheveux_bouclés:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9B1', u':homme_peau_mate_et_cheveux_bouclés:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9B1', u':homme_peau_foncée_et_cheveux_bouclés:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9B1', u':homme_cheveux_blancs:': u'\U0001F468\U0000200D\U0001F9B3', u':homme_peau_claire_et_cheveux_blancs:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9B3', u':homme_peau_moyennement_claire_et_cheveux_blancs:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9B3', u':homme_peau_légèrement_mate_et_cheveux_blancs:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9B3', u':homme_peau_mate_et_cheveux_blancs:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9B3', u':homme_peau_foncée_et_cheveux_blancs:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9B3', u':homme_chauve:': u'\U0001F468\U0000200D\U0001F9B2', u':homme_peau_claire_et_chauve:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9B2', u':homme_peau_moyennement_claire_et_chauve:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9B2', u':homme_peau_légèrement_mate_et_chauve:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9B2', u':homme_peau_mate_et_chauve:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9B2', u':homme_peau_foncée_et_chauve:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9B2', u':femme:': u'\U0001F469', u':femme_peau_claire:': u'\U0001F469\U0001F3FB', u':femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC', u':femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD', u':femme_peau_mate:': u'\U0001F469\U0001F3FE', u':femme_peau_foncée:': u'\U0001F469\U0001F3FF', u':femme_cheveux_roux:': u'\U0001F469\U0000200D\U0001F9B0', u':femme_peau_claire_et_cheveux_roux:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9B0', u':femme_peau_moyennement_claire_et_cheveux_roux:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9B0', u':femme_peau_légèrement_mate_et_cheveux_roux:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9B0', u':femme_peau_mate_et_cheveux_roux:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9B0', u':femme_peau_foncée_et_cheveux_roux:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9B0', u':adulte_cheveux_roux:': u'\U0001F9D1\U0000200D\U0001F9B0', u':adulte_peau_claire_et_cheveux_roux:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9B0', u':adulte_peau_moyennement_claire_et_cheveux_roux:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9B0', u':adulte_peau_légèrement_mate_et_cheveux_roux:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9B0', u':adulte_peau_mate_et_cheveux_roux:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9B0', u':adulte_peau_foncée_et_cheveux_roux:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9B0', u':femme_cheveux_bouclés:': u'\U0001F469\U0000200D\U0001F9B1', u':femme_peau_claire_et_cheveux_bouclés:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9B1', u':femme_peau_moyennement_claire_et_cheveux_bouclés:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9B1', u':femme_peau_légèrement_mate_et_cheveux_bouclés:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9B1', u':femme_peau_mate_et_cheveux_bouclés:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9B1', u':femme_peau_foncée_et_cheveux_bouclés:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9B1', u':adulte_cheveux_bouclés:': u'\U0001F9D1\U0000200D\U0001F9B1', u':adulte_peau_claire_et_cheveux_bouclés:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9B1', u':adulte_peau_moyennement_claire_et_cheveux_bouclés:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9B1', u':adulte_peau_légèrement_mate_et_cheveux_bouclés:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9B1', u':adulte_peau_mate_et_cheveux_bouclés:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9B1', u':adulte_peau_foncée_et_cheveux_bouclés:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9B1', u':femme_cheveux_blancs:': u'\U0001F469\U0000200D\U0001F9B3', u':femme_peau_claire_et_cheveux_blancs:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9B3', u':femme_peau_moyennement_claire_et_cheveux_blancs:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9B3', u':femme_peau_légèrement_mate_et_cheveux_blancs:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9B3', u':femme_peau_mate_et_cheveux_blancs:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9B3', u':femme_peau_foncée_et_cheveux_blancs:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9B3', u':adulte_cheveux_blancs:': u'\U0001F9D1\U0000200D\U0001F9B3', u':adulte_peau_claire_et_cheveux_blancs:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9B3', u':adulte_peau_moyennement_claire_et_cheveux_blancs:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9B3', u':adulte_peau_légèrement_mate_et_cheveux_blancs:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9B3', u':adulte_peau_mate_et_cheveux_blancs:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9B3', u':adulte_peau_foncée_et_cheveux_blancs:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9B3', u':femme_chauve:': u'\U0001F469\U0000200D\U0001F9B2', u':femme_peau_claire_et_chauve:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9B2', u':femme_peau_moyennement_claire_et_chauve:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9B2', u':femme_peau_légèrement_mate_et_chauve:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9B2', u':femme_peau_mate_et_chauve:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9B2', u':femme_peau_foncée_et_chauve:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9B2', u':adulte_chauve:': u'\U0001F9D1\U0000200D\U0001F9B2', u':adulte_peau_claire_et_chauve:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9B2', u':adulte_peau_moyennement_claire_et_chauve:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9B2', u':adulte_peau_légèrement_mate_et_chauve:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9B2', u':adulte_peau_mate_et_chauve:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9B2', u':adulte_peau_foncée_et_chauve:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9B2', u':femme_blonde:': u'\U0001F471\U0000200D\U00002640\U0000FE0F', u':femme_blonde_peau_claire:': u'\U0001F471\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_blonde_peau_moyennement_claire:': u'\U0001F471\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_blonde_peau_légèrement_mate:': u'\U0001F471\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_blonde_peau_mate:': u'\U0001F471\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_blonde_peau_foncée:': u'\U0001F471\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':homme_blond:': u'\U0001F471\U0000200D\U00002642\U0000FE0F', u':homme_blond_peau_claire:': u'\U0001F471\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_blond_peau_moyennement_claire:': u'\U0001F471\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_blond_peau_légèrement_mate:': u'\U0001F471\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_blond_peau_mate:': u'\U0001F471\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_blond_peau_foncée:': u'\U0001F471\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':personne_âgée:': u'\U0001F9D3', u':personne_âgée_peau_claire:': u'\U0001F9D3\U0001F3FB', u':personne_âgée_peau_moyennement_claire:': u'\U0001F9D3\U0001F3FC', u':personne_âgée_peau_légèrement_mate:': u'\U0001F9D3\U0001F3FD', u':personne_âgée_peau_mate:': u'\U0001F9D3\U0001F3FE', u':personne_âgée_peau_foncée:': u'\U0001F9D3\U0001F3FF', u':homme_âgé:': u'\U0001F474', u':homme_âgé_peau_claire:': u'\U0001F474\U0001F3FB', u':homme_âgé_peau_moyennement_claire:': u'\U0001F474\U0001F3FC', u':homme_âgé_peau_légèrement_mate:': u'\U0001F474\U0001F3FD', u':homme_âgé_peau_mate:': u'\U0001F474\U0001F3FE', u':homme_âgé_peau_foncée:': u'\U0001F474\U0001F3FF', u':femme_âgée:': u'\U0001F475', u':femme_âgée_peau_claire:': u'\U0001F475\U0001F3FB', u':femme_âgée_peau_moyennement_claire:': u'\U0001F475\U0001F3FC', u':femme_âgée_peau_légèrement_mate:': u'\U0001F475\U0001F3FD', u':femme_âgée_peau_mate:': u'\U0001F475\U0001F3FE', u':femme_âgée_peau_foncée:': u'\U0001F475\U0001F3FF', u':personne_fronçant_les_sourcils:': u'\U0001F64D', u':personne_fronçant_les_sourcils_peau_claire:': u'\U0001F64D\U0001F3FB', u':personne_fronçant_les_sourcils_peau_moyennement_claire:': u'\U0001F64D\U0001F3FC', u':personne_fronçant_les_sourcils_peau_légèrement_mate:': u'\U0001F64D\U0001F3FD', u':personne_fronçant_les_sourcils_peau_mate:': u'\U0001F64D\U0001F3FE', u':personne_fronçant_les_sourcils_peau_foncée:': u'\U0001F64D\U0001F3FF', u':homme_fronçant_les_sourcils:': u'\U0001F64D\U0000200D\U00002642\U0000FE0F', u':homme_fronçant_les_sourcils_peau_claire:': u'\U0001F64D\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_fronçant_les_sourcils_peau_moyennement_claire:': u'\U0001F64D\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_fronçant_les_sourcils_peau_légèrement_mate:': u'\U0001F64D\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_fronçant_les_sourcils_peau_mate:': u'\U0001F64D\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_fronçant_les_sourcils_peau_foncée:': u'\U0001F64D\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_fronçant_les_sourcils:': u'\U0001F64D\U0000200D\U00002640\U0000FE0F', u':femme_fronçant_les_sourcils_peau_claire:': u'\U0001F64D\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_fronçant_les_sourcils_peau_moyennement_claire:': u'\U0001F64D\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_fronçant_les_sourcils_peau_légèrement_mate:': u'\U0001F64D\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_fronçant_les_sourcils_peau_mate:': u'\U0001F64D\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_fronçant_les_sourcils_peau_foncée:': u'\U0001F64D\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_boude:': u'\U0001F64E', u':personne_qui_boude_peau_claire:': u'\U0001F64E\U0001F3FB', u':personne_qui_boude_peau_moyennement_claire:': u'\U0001F64E\U0001F3FC', u':personne_qui_boude_peau_légèrement_mate:': u'\U0001F64E\U0001F3FD', u':personne_qui_boude_peau_mate:': u'\U0001F64E\U0001F3FE', u':personne_qui_boude_peau_foncée:': u'\U0001F64E\U0001F3FF', u':homme_qui_boude:': u'\U0001F64E\U0000200D\U00002642\U0000FE0F', u':homme_qui_boude_peau_claire:': u'\U0001F64E\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_boude_peau_moyennement_claire:': u'\U0001F64E\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_boude_peau_légèrement_mate:': u'\U0001F64E\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_boude_peau_mate:': u'\U0001F64E\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_boude_peau_foncée:': u'\U0001F64E\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_boude:': u'\U0001F64E\U0000200D\U00002640\U0000FE0F', u':femme_qui_boude_peau_claire:': u'\U0001F64E\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_boude_peau_moyennement_claire:': u'\U0001F64E\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_boude_peau_légèrement_mate:': u'\U0001F64E\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_boude_peau_mate:': u'\U0001F64E\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_boude_peau_foncée:': u'\U0001F64E\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_faisant_un_geste_d’interdiction:': u'\U0001F645', u':personne_faisant_un_geste_d’interdiction_peau_claire:': u'\U0001F645\U0001F3FB', u':personne_faisant_un_geste_d’interdiction_peau_moyennement_claire:': u'\U0001F645\U0001F3FC', u':personne_faisant_un_geste_d’interdiction_peau_légèrement_mate:': u'\U0001F645\U0001F3FD', u':personne_faisant_un_geste_d’interdiction_peau_mate:': u'\U0001F645\U0001F3FE', u':personne_faisant_un_geste_d’interdiction_peau_foncée:': u'\U0001F645\U0001F3FF', u':homme_faisant_un_geste_d’interdiction:': u'\U0001F645\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’interdiction_peau_claire:': u'\U0001F645\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’interdiction_peau_moyennement_claire:': u'\U0001F645\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’interdiction_peau_légèrement_mate:': u'\U0001F645\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’interdiction_peau_mate:': u'\U0001F645\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’interdiction_peau_foncée:': u'\U0001F645\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_faisant_un_geste_d’interdiction:': u'\U0001F645\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’interdiction_peau_claire:': u'\U0001F645\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’interdiction_peau_moyennement_claire:': u'\U0001F645\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’interdiction_peau_légèrement_mate:': u'\U0001F645\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’interdiction_peau_mate:': u'\U0001F645\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’interdiction_peau_foncée:': u'\U0001F645\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_faisant_un_geste_d’acceptation:': u'\U0001F646', u':personne_faisant_un_geste_d’acceptation_peau_claire:': u'\U0001F646\U0001F3FB', u':personne_faisant_un_geste_d’acceptation_peau_moyennement_claire:': u'\U0001F646\U0001F3FC', u':personne_faisant_un_geste_d’acceptation_peau_légèrement_mate:': u'\U0001F646\U0001F3FD', u':personne_faisant_un_geste_d’acceptation_peau_mate:': u'\U0001F646\U0001F3FE', u':personne_faisant_un_geste_d’acceptation_peau_foncée:': u'\U0001F646\U0001F3FF', u':homme_faisant_un_geste_d’acceptation:': u'\U0001F646\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’acceptation_peau_claire:': u'\U0001F646\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’acceptation_peau_moyennement_claire:': u'\U0001F646\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’acceptation_peau_légèrement_mate:': u'\U0001F646\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’acceptation_peau_mate:': u'\U0001F646\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_faisant_un_geste_d’acceptation_peau_foncée:': u'\U0001F646\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_faisant_un_geste_d’acceptation:': u'\U0001F646\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’acceptation_peau_claire:': u'\U0001F646\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’acceptation_peau_moyennement_claire:': u'\U0001F646\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’acceptation_peau_légèrement_mate:': u'\U0001F646\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’acceptation_peau_mate:': u'\U0001F646\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_faisant_un_geste_d’acceptation_peau_foncée:': u'\U0001F646\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_paume_vers_le_haut:': u'\U0001F481', u':personne_paume_vers_le_haut_peau_claire:': u'\U0001F481\U0001F3FB', u':personne_paume_vers_le_haut_peau_moyennement_claire:': u'\U0001F481\U0001F3FC', u':personne_paume_vers_le_haut_peau_légèrement_mate:': u'\U0001F481\U0001F3FD', u':personne_paume_vers_le_haut_peau_mate:': u'\U0001F481\U0001F3FE', u':personne_paume_vers_le_haut_peau_foncée:': u'\U0001F481\U0001F3FF', u':homme_paume_vers_le_haut:': u'\U0001F481\U0000200D\U00002642\U0000FE0F', u':homme_paume_vers_le_haut_peau_claire:': u'\U0001F481\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_paume_vers_le_haut_peau_moyennement_claire:': u'\U0001F481\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_paume_vers_le_haut_peau_légèrement_mate:': u'\U0001F481\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_paume_vers_le_haut_peau_mate:': u'\U0001F481\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_paume_vers_le_haut_peau_foncée:': u'\U0001F481\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_paume_vers_le_haut:': u'\U0001F481\U0000200D\U00002640\U0000FE0F', u':femme_paume_vers_le_haut_peau_claire:': u'\U0001F481\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_paume_vers_le_haut_peau_moyennement_claire:': u'\U0001F481\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_paume_vers_le_haut_peau_légèrement_mate:': u'\U0001F481\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_paume_vers_le_haut_peau_mate:': u'\U0001F481\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_paume_vers_le_haut_peau_foncée:': u'\U0001F481\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_lève_la_main:': u'\U0001F64B', u':personne_qui_lève_la_main_peau_claire:': u'\U0001F64B\U0001F3FB', u':personne_qui_lève_la_main_peau_moyennement_claire:': u'\U0001F64B\U0001F3FC', u':personne_qui_lève_la_main_peau_légèrement_mate:': u'\U0001F64B\U0001F3FD', u':personne_qui_lève_la_main_peau_mate:': u'\U0001F64B\U0001F3FE', u':personne_qui_lève_la_main_peau_foncée:': u'\U0001F64B\U0001F3FF', u':homme_qui_lève_la_main:': u'\U0001F64B\U0000200D\U00002642\U0000FE0F', u':homme_qui_lève_la_main_peau_claire:': u'\U0001F64B\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_lève_la_main_peau_moyennement_claire:': u'\U0001F64B\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_lève_la_main_peau_légèrement_mate:': u'\U0001F64B\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_lève_la_main_peau_mate:': u'\U0001F64B\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_lève_la_main_peau_foncée:': u'\U0001F64B\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_lève_la_main:': u'\U0001F64B\U0000200D\U00002640\U0000FE0F', u':femme_qui_lève_la_main_peau_claire:': u'\U0001F64B\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_lève_la_main_peau_moyennement_claire:': u'\U0001F64B\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_lève_la_main_peau_légèrement_mate:': u'\U0001F64B\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_lève_la_main_peau_mate:': u'\U0001F64B\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_lève_la_main_peau_foncée:': u'\U0001F64B\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_sourde:': u'\U0001F9CF', u':personne_sourde_peau_claire:': u'\U0001F9CF\U0001F3FB', u':personne_sourde_peau_moyennement_claire:': u'\U0001F9CF\U0001F3FC', u':personne_sourde_peau_légèrement_mate:': u'\U0001F9CF\U0001F3FD', u':personne_sourde_peau_mate:': u'\U0001F9CF\U0001F3FE', u':personne_sourde_peau_foncée:': u'\U0001F9CF\U0001F3FF', u':homme_sourd:': u'\U0001F9CF\U0000200D\U00002642\U0000FE0F', u':homme_sourd_peau_claire:': u'\U0001F9CF\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_sourd_peau_moyennement_claire:': u'\U0001F9CF\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_sourd_peau_légèrement_mate:': u'\U0001F9CF\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_sourd_peau_mate:': u'\U0001F9CF\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_sourd_peau_foncée:': u'\U0001F9CF\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_sourde:': u'\U0001F9CF\U0000200D\U00002640\U0000FE0F', u':femme_sourde_peau_claire:': u'\U0001F9CF\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_sourde_peau_moyennement_claire:': u'\U0001F9CF\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_sourde_peau_légèrement_mate:': u'\U0001F9CF\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_sourde_peau_mate:': u'\U0001F9CF\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_sourde_peau_foncée:': u'\U0001F9CF\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_s’incline:': u'\U0001F647', u':personne_qui_s’incline_peau_claire:': u'\U0001F647\U0001F3FB', u':personne_qui_s’incline_peau_moyennement_claire:': u'\U0001F647\U0001F3FC', u':personne_qui_s’incline_peau_légèrement_mate:': u'\U0001F647\U0001F3FD', u':personne_qui_s’incline_peau_mate:': u'\U0001F647\U0001F3FE', u':personne_qui_s’incline_peau_foncée:': u'\U0001F647\U0001F3FF', u':homme_qui_s’incline:': u'\U0001F647\U0000200D\U00002642\U0000FE0F', u':homme_qui_s’incline_peau_claire:': u'\U0001F647\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_s’incline_peau_moyennement_claire:': u'\U0001F647\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_s’incline_peau_légèrement_mate:': u'\U0001F647\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_s’incline_peau_mate:': u'\U0001F647\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_s’incline_peau_foncée:': u'\U0001F647\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_s’incline:': u'\U0001F647\U0000200D\U00002640\U0000FE0F', u':femme_qui_s’incline_peau_claire:': u'\U0001F647\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_s’incline_peau_moyennement_claire:': u'\U0001F647\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_s’incline_peau_légèrement_mate:': u'\U0001F647\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_s’incline_peau_mate:': u'\U0001F647\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_s’incline_peau_foncée:': u'\U0001F647\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_avec_la_paume_sur_le_visage:': u'\U0001F926', u':personne_avec_la_paume_sur_le_visage_peau_claire:': u'\U0001F926\U0001F3FB', u':personne_avec_la_paume_sur_le_visage_peau_moyennement_claire:': u'\U0001F926\U0001F3FC', u':personne_avec_la_paume_sur_le_visage_peau_légèrement_mate:': u'\U0001F926\U0001F3FD', u':personne_avec_la_paume_sur_le_visage_peau_mate:': u'\U0001F926\U0001F3FE', u':personne_avec_la_paume_sur_le_visage_peau_foncée:': u'\U0001F926\U0001F3FF', u':homme_avec_la_paume_sur_le_visage:': u'\U0001F926\U0000200D\U00002642\U0000FE0F', u':homme_avec_la_paume_sur_le_visage_peau_claire:': u'\U0001F926\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_avec_la_paume_sur_le_visage_peau_moyennement_claire:': u'\U0001F926\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_avec_la_paume_sur_le_visage_peau_légèrement_mate:': u'\U0001F926\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_avec_la_paume_sur_le_visage_peau_mate:': u'\U0001F926\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_avec_la_paume_sur_le_visage_peau_foncée:': u'\U0001F926\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_avec_la_paume_sur_le_visage:': u'\U0001F926\U0000200D\U00002640\U0000FE0F', u':femme_avec_la_paume_sur_le_visage_peau_claire:': u'\U0001F926\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_avec_la_paume_sur_le_visage_peau_moyennement_claire:': u'\U0001F926\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_avec_la_paume_sur_le_visage_peau_légèrement_mate:': u'\U0001F926\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_avec_la_paume_sur_le_visage_peau_mate:': u'\U0001F926\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_avec_la_paume_sur_le_visage_peau_foncée:': u'\U0001F926\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_hausse_les_épaules:': u'\U0001F937', u':personne_qui_hausse_les_épaules_peau_claire:': u'\U0001F937\U0001F3FB', u':personne_qui_hausse_les_épaules_peau_moyennement_claire:': u'\U0001F937\U0001F3FC', u':personne_qui_hausse_les_épaules_peau_légèrement_mate:': u'\U0001F937\U0001F3FD', u':personne_qui_hausse_les_épaules_peau_mate:': u'\U0001F937\U0001F3FE', u':personne_qui_hausse_les_épaules_peau_foncée:': u'\U0001F937\U0001F3FF', u':homme_qui_hausse_les_épaules:': u'\U0001F937\U0000200D\U00002642\U0000FE0F', u':homme_qui_hausse_les_épaules_peau_claire:': u'\U0001F937\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_hausse_les_épaules_peau_moyennement_claire:': u'\U0001F937\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_hausse_les_épaules_peau_légèrement_mate:': u'\U0001F937\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_hausse_les_épaules_peau_mate:': u'\U0001F937\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_hausse_les_épaules_peau_foncée:': u'\U0001F937\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_hausse_les_épaules:': u'\U0001F937\U0000200D\U00002640\U0000FE0F', u':femme_qui_hausse_les_épaules_peau_claire:': u'\U0001F937\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_hausse_les_épaules_peau_moyennement_claire:': u'\U0001F937\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_hausse_les_épaules_peau_légèrement_mate:': u'\U0001F937\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_hausse_les_épaules_peau_mate:': u'\U0001F937\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_hausse_les_épaules_peau_foncée:': u'\U0001F937\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':professionnel_de_la_santé_(tous_genres):': u'\U0001F9D1\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé:': u'\U0001F468\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U00002695\U0000FE0F', u':professionnel_de_la_santé_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U00002695\U0000FE0F', u':professionnelle_de_la_santé:': u'\U0001F469\U0000200D\U00002695\U0000FE0F', u':professionnelle_de_la_santé_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U00002695\U0000FE0F', u':professionnelle_de_la_santé_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U00002695\U0000FE0F', u':professionnelle_de_la_santé_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U00002695\U0000FE0F', u':professionnelle_de_la_santé_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U00002695\U0000FE0F', u':professionnelle_de_la_santé_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U00002695\U0000FE0F', u':étudiant_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F393', u':étudiant_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F393', u':étudiant_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F393', u':étudiant_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F393', u':étudiant_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F393', u':étudiant_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F393', u':étudiant:': u'\U0001F468\U0000200D\U0001F393', u':étudiant_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F393', u':étudiant_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F393', u':étudiant_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F393', u':étudiant_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F393', u':étudiant_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F393', u':étudiante:': u'\U0001F469\U0000200D\U0001F393', u':étudiante_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F393', u':étudiante_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F393', u':étudiante_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F393', u':étudiante_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F393', u':étudiante_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F393', u':personnel_enseignant:': u'\U0001F9D1\U0000200D\U0001F3EB', u':personnel_enseignant_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F3EB', u':personnel_enseignant_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F3EB', u':personnel_enseignant_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F3EB', u':personnel_enseignant_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F3EB', u':personnel_enseignant_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F3EB', u':enseignant:': u'\U0001F468\U0000200D\U0001F3EB', u':enseignant_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F3EB', u':enseignant_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F3EB', u':enseignant_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F3EB', u':enseignant_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F3EB', u':enseignant_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F3EB', u':enseignante:': u'\U0001F469\U0000200D\U0001F3EB', u':enseignante_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F3EB', u':enseignante_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F3EB', u':enseignante_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F3EB', u':enseignante_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F3EB', u':enseignante_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F3EB', u':juge:': u'\U0001F9D1\U0000200D\U00002696\U0000FE0F', u':juge_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U00002696\U0000FE0F', u':juge_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U00002696\U0000FE0F', u':juge_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U00002696\U0000FE0F', u':juge_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U00002696\U0000FE0F', u':juge_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U00002696\U0000FE0F', u':juge_homme:': u'\U0001F468\U0000200D\U00002696\U0000FE0F', u':juge_homme_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U00002696\U0000FE0F', u':juge_homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U00002696\U0000FE0F', u':juge_homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U00002696\U0000FE0F', u':juge_homme_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U00002696\U0000FE0F', u':juge_homme_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U00002696\U0000FE0F', u':juge_femme:': u'\U0001F469\U0000200D\U00002696\U0000FE0F', u':juge_femme_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U00002696\U0000FE0F', u':juge_femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U00002696\U0000FE0F', u':juge_femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U00002696\U0000FE0F', u':juge_femme_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U00002696\U0000FE0F', u':juge_femme_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U00002696\U0000FE0F', u':fermier_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F33E', u':fermier_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F33E', u':fermier_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F33E', u':fermier_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F33E', u':fermier_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F33E', u':fermier_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F33E', u':fermier:': u'\U0001F468\U0000200D\U0001F33E', u':fermier_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F33E', u':fermier_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F33E', u':fermier_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F33E', u':fermier_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F33E', u':fermier_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F33E', u':fermière:': u'\U0001F469\U0000200D\U0001F33E', u':fermière_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F33E', u':fermière_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F33E', u':fermière_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F33E', u':fermière_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F33E', u':fermière_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F33E', u':cuisinier_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F373', u':cuisinier_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F373', u':cuisinier_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F373', u':cuisinier_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F373', u':cuisinier_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F373', u':cuisinier_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F373', u':cuisinier:': u'\U0001F468\U0000200D\U0001F373', u':cuisinier_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F373', u':cuisinier_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F373', u':cuisinier_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F373', u':cuisinier_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F373', u':cuisinier_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F373', u':cuisinière:': u'\U0001F469\U0000200D\U0001F373', u':cuisinière_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F373', u':cuisinière_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F373', u':cuisinière_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F373', u':cuisinière_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F373', u':cuisinière_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F373', u':mécanicien_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F527', u':mécanicien_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F527', u':mécanicien_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F527', u':mécanicien_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F527', u':mécanicien_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F527', u':mécanicien_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F527', u':mécanicien:': u'\U0001F468\U0000200D\U0001F527', u':mécanicien_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F527', u':mécanicien_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F527', u':mécanicien_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F527', u':mécanicien_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F527', u':mécanicien_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F527', u':mécanicienne:': u'\U0001F469\U0000200D\U0001F527', u':mécanicienne_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F527', u':mécanicienne_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F527', u':mécanicienne_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F527', u':mécanicienne_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F527', u':mécanicienne_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F527', u':ouvrier_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F3ED', u':ouvrier_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F3ED', u':ouvrier_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F3ED', u':ouvrier_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F3ED', u':ouvrier_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F3ED', u':ouvrier_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F3ED', u':ouvrier:': u'\U0001F468\U0000200D\U0001F3ED', u':ouvrier_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F3ED', u':ouvrier_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F3ED', u':ouvrier_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F3ED', u':ouvrier_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F3ED', u':ouvrier_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F3ED', u':ouvrière:': u'\U0001F469\U0000200D\U0001F3ED', u':ouvrière_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F3ED', u':ouvrière_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F3ED', u':ouvrière_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F3ED', u':ouvrière_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F3ED', u':ouvrière_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F3ED', u':employé_de_bureau_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F4BC', u':employé_de_bureau_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F4BC', u':employé_de_bureau_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F4BC', u':employé_de_bureau_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F4BC', u':employé_de_bureau_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F4BC', u':employé_de_bureau_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F4BC', u':employé_de_bureau:': u'\U0001F468\U0000200D\U0001F4BC', u':employé_de_bureau_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F4BC', u':employé_de_bureau_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F4BC', u':employé_de_bureau_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F4BC', u':employé_de_bureau_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F4BC', u':employé_de_bureau_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F4BC', u':employée_de_bureau:': u'\U0001F469\U0000200D\U0001F4BC', u':employée_de_bureau_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F4BC', u':employée_de_bureau_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F4BC', u':employée_de_bureau_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F4BC', u':employée_de_bureau_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F4BC', u':employée_de_bureau_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F4BC', u':scientifique:': u'\U0001F9D1\U0000200D\U0001F52C', u':scientifique_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F52C', u':scientifique_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F52C', u':scientifique_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F52C', u':scientifique_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F52C', u':scientifique_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F52C', u':scientifique_homme:': u'\U0001F468\U0000200D\U0001F52C', u':scientifique_homme_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F52C', u':scientifique_homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F52C', u':scientifique_homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F52C', u':scientifique_homme_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F52C', u':scientifique_homme_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F52C', u':scientifique_femme:': u'\U0001F469\U0000200D\U0001F52C', u':scientifique_femme_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F52C', u':scientifique_femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F52C', u':scientifique_femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F52C', u':scientifique_femme_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F52C', u':scientifique_femme_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F52C', u':informaticien_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F4BB', u':informaticien_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F4BB', u':informaticien_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F4BB', u':informaticien_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F4BB', u':informaticien_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F4BB', u':informaticien_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F4BB', u':informaticien:': u'\U0001F468\U0000200D\U0001F4BB', u':informaticien_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F4BB', u':informaticien_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F4BB', u':informaticien_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F4BB', u':informaticien_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F4BB', u':informaticien_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F4BB', u':informaticienne:': u'\U0001F469\U0000200D\U0001F4BB', u':informaticienne_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F4BB', u':informaticienne_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F4BB', u':informaticienne_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F4BB', u':informaticienne_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F4BB', u':informaticienne_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F4BB', u':chanteur_(tous_genres):': u'\U0001F9D1\U0000200D\U0001F3A4', u':chanteur_(tous_genres)_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F3A4', u':chanteur_(tous_genres)_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F3A4', u':chanteur_(tous_genres)_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F3A4', u':chanteur_(tous_genres)_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F3A4', u':chanteur_(tous_genres)_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F3A4', u':chanteur:': u'\U0001F468\U0000200D\U0001F3A4', u':chanteur_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F3A4', u':chanteur_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F3A4', u':chanteur_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F3A4', u':chanteur_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F3A4', u':chanteur_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F3A4', u':chanteuse:': u'\U0001F469\U0000200D\U0001F3A4', u':chanteuse_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F3A4', u':chanteuse_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F3A4', u':chanteuse_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F3A4', u':chanteuse_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F3A4', u':chanteuse_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F3A4', u':artiste:': u'\U0001F9D1\U0000200D\U0001F3A8', u':artiste_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F3A8', u':artiste_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F3A8', u':artiste_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F3A8', u':artiste_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F3A8', u':artiste_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F3A8', u':artiste_homme:': u'\U0001F468\U0000200D\U0001F3A8', u':artiste_homme_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F3A8', u':artiste_homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F3A8', u':artiste_homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F3A8', u':artiste_homme_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F3A8', u':artiste_homme_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F3A8', u':artiste_femme:': u'\U0001F469\U0000200D\U0001F3A8', u':artiste_femme_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F3A8', u':artiste_femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F3A8', u':artiste_femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F3A8', u':artiste_femme_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F3A8', u':artiste_femme_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F3A8', u':pilote:': u'\U0001F9D1\U0000200D\U00002708\U0000FE0F', u':pilote_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U00002708\U0000FE0F', u':pilote_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U00002708\U0000FE0F', u':pilote_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U00002708\U0000FE0F', u':pilote_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U00002708\U0000FE0F', u':pilote_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U00002708\U0000FE0F', u':pilote_homme:': u'\U0001F468\U0000200D\U00002708\U0000FE0F', u':pilote_homme_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U00002708\U0000FE0F', u':pilote_homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U00002708\U0000FE0F', u':pilote_homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U00002708\U0000FE0F', u':pilote_homme_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U00002708\U0000FE0F', u':pilote_homme_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U00002708\U0000FE0F', u':pilote_femme:': u'\U0001F469\U0000200D\U00002708\U0000FE0F', u':pilote_femme_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U00002708\U0000FE0F', u':pilote_femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U00002708\U0000FE0F', u':pilote_femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U00002708\U0000FE0F', u':pilote_femme_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U00002708\U0000FE0F', u':pilote_femme_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U00002708\U0000FE0F', u':astronaute:': u'\U0001F9D1\U0000200D\U0001F680', u':astronaute_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F680', u':astronaute_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F680', u':astronaute_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F680', u':astronaute_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F680', u':astronaute_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F680', u':astronaute_homme:': u'\U0001F468\U0000200D\U0001F680', u':astronaute_homme_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F680', u':astronaute_homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F680', u':astronaute_homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F680', u':astronaute_homme_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F680', u':astronaute_homme_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F680', u':astronaute_femme:': u'\U0001F469\U0000200D\U0001F680', u':astronaute_femme_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F680', u':astronaute_femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F680', u':astronaute_femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F680', u':astronaute_femme_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F680', u':astronaute_femme_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F680', u':pompier:': u'\U0001F9D1\U0000200D\U0001F692', u':pompier_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F692', u':pompier_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F692', u':pompier_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F692', u':pompier_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F692', u':pompier_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F692', u':pompier_homme:': u'\U0001F468\U0000200D\U0001F692', u':pompier_homme_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F692', u':pompier_homme_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F692', u':pompier_homme_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F692', u':pompier_homme_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F692', u':pompier_homme_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F692', u':pompier_femme:': u'\U0001F469\U0000200D\U0001F692', u':pompier_femme_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F692', u':pompier_femme_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F692', u':pompier_femme_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F692', u':pompier_femme_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F692', u':pompier_femme_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F692', u':officier_de_police:': u'\U0001F46E', u':officier_de_police_peau_claire:': u'\U0001F46E\U0001F3FB', u':officier_de_police_peau_moyennement_claire:': u'\U0001F46E\U0001F3FC', u':officier_de_police_peau_légèrement_mate:': u'\U0001F46E\U0001F3FD', u':officier_de_police_peau_mate:': u'\U0001F46E\U0001F3FE', u':officier_de_police_peau_foncée:': u'\U0001F46E\U0001F3FF', u':policier:': u'\U0001F46E\U0000200D\U00002642\U0000FE0F', u':policier_peau_claire:': u'\U0001F46E\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':policier_peau_moyennement_claire:': u'\U0001F46E\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':policier_peau_légèrement_mate:': u'\U0001F46E\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':policier_peau_mate:': u'\U0001F46E\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':policier_peau_foncée:': u'\U0001F46E\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':policière:': u'\U0001F46E\U0000200D\U00002640\U0000FE0F', u':policière_peau_claire:': u'\U0001F46E\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':policière_peau_moyennement_claire:': u'\U0001F46E\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':policière_peau_légèrement_mate:': u'\U0001F46E\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':policière_peau_mate:': u'\U0001F46E\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':policière_peau_foncée:': u'\U0001F46E\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':détective:': u'\U0001F575\U0000FE0F', u':détective_peau_claire:': u'\U0001F575\U0001F3FB', u':détective_peau_moyennement_claire:': u'\U0001F575\U0001F3FC', u':détective_peau_légèrement_mate:': u'\U0001F575\U0001F3FD', u':détective_peau_mate:': u'\U0001F575\U0001F3FE', u':détective_peau_foncée:': u'\U0001F575\U0001F3FF', u':détective_homme:': u'\U0001F575\U0000FE0F\U0000200D\U00002642\U0000FE0F', u':détective_homme_peau_claire:': u'\U0001F575\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':détective_homme_peau_moyennement_claire:': u'\U0001F575\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':détective_homme_peau_légèrement_mate:': u'\U0001F575\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':détective_homme_peau_mate:': u'\U0001F575\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':détective_homme_peau_foncée:': u'\U0001F575\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':détective_femme:': u'\U0001F575\U0000FE0F\U0000200D\U00002640\U0000FE0F', u':détective_femme_peau_claire:': u'\U0001F575\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':détective_femme_peau_moyennement_claire:': u'\U0001F575\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':détective_femme_peau_légèrement_mate:': u'\U0001F575\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':détective_femme_peau_mate:': u'\U0001F575\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':détective_femme_peau_foncée:': u'\U0001F575\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':garde:': u'\U0001F482', u':garde_peau_claire:': u'\U0001F482\U0001F3FB', u':garde_peau_moyennement_claire:': u'\U0001F482\U0001F3FC', u':garde_peau_légèrement_mate:': u'\U0001F482\U0001F3FD', u':garde_peau_mate:': u'\U0001F482\U0001F3FE', u':garde_peau_foncée:': u'\U0001F482\U0001F3FF', u':garde_homme:': u'\U0001F482\U0000200D\U00002642\U0000FE0F', u':garde_homme_peau_claire:': u'\U0001F482\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':garde_homme_peau_moyennement_claire:': u'\U0001F482\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':garde_homme_peau_légèrement_mate:': u'\U0001F482\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':garde_homme_peau_mate:': u'\U0001F482\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':garde_homme_peau_foncée:': u'\U0001F482\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':garde_femme:': u'\U0001F482\U0000200D\U00002640\U0000FE0F', u':garde_femme_peau_claire:': u'\U0001F482\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':garde_femme_peau_moyennement_claire:': u'\U0001F482\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':garde_femme_peau_légèrement_mate:': u'\U0001F482\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':garde_femme_peau_mate:': u'\U0001F482\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':garde_femme_peau_foncée:': u'\U0001F482\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':ninja:': u'\U0001F977', u':ninja_peau_claire:': u'\U0001F977\U0001F3FB', u':ninja_peau_moyennement_claire:': u'\U0001F977\U0001F3FC', u':ninja_peau_légèrement_mate:': u'\U0001F977\U0001F3FD', u':ninja_peau_mate:': u'\U0001F977\U0001F3FE', u':ninja_peau_foncée:': u'\U0001F977\U0001F3FF', u':personnel_du_bâtiment:': u'\U0001F477', u':personnel_du_bâtiment_peau_claire:': u'\U0001F477\U0001F3FB', u':personnel_du_bâtiment_peau_moyennement_claire:': u'\U0001F477\U0001F3FC', u':personnel_du_bâtiment_peau_légèrement_mate:': u'\U0001F477\U0001F3FD', u':personnel_du_bâtiment_peau_mate:': u'\U0001F477\U0001F3FE', u':personnel_du_bâtiment_peau_foncée:': u'\U0001F477\U0001F3FF', u':ouvrier_du_bâtiment:': u'\U0001F477\U0000200D\U00002642\U0000FE0F', u':ouvrier_du_bâtiment_peau_claire:': u'\U0001F477\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':ouvrier_du_bâtiment_peau_moyennement_claire:': u'\U0001F477\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':ouvrier_du_bâtiment_peau_légèrement_mate:': u'\U0001F477\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':ouvrier_du_bâtiment_peau_mate:': u'\U0001F477\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':ouvrier_du_bâtiment_peau_foncée:': u'\U0001F477\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':ouvrière_du_bâtiment:': u'\U0001F477\U0000200D\U00002640\U0000FE0F', u':ouvrière_du_bâtiment_peau_claire:': u'\U0001F477\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':ouvrière_du_bâtiment_peau_moyennement_claire:': u'\U0001F477\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':ouvrière_du_bâtiment_peau_légèrement_mate:': u'\U0001F477\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':ouvrière_du_bâtiment_peau_mate:': u'\U0001F477\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':ouvrière_du_bâtiment_peau_foncée:': u'\U0001F477\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':prince:': u'\U0001F934', u':prince_peau_claire:': u'\U0001F934\U0001F3FB', u':prince_peau_moyennement_claire:': u'\U0001F934\U0001F3FC', u':prince_peau_légèrement_mate:': u'\U0001F934\U0001F3FD', u':prince_peau_mate:': u'\U0001F934\U0001F3FE', u':prince_peau_foncée:': u'\U0001F934\U0001F3FF', u':princesse:': u'\U0001F478', u':princesse_peau_claire:': u'\U0001F478\U0001F3FB', u':princesse_peau_moyennement_claire:': u'\U0001F478\U0001F3FC', u':princesse_peau_légèrement_mate:': u'\U0001F478\U0001F3FD', u':princesse_peau_mate:': u'\U0001F478\U0001F3FE', u':princesse_peau_foncée:': u'\U0001F478\U0001F3FF', u':personne_en_turban:': u'\U0001F473', u':personne_en_turban_peau_claire:': u'\U0001F473\U0001F3FB', u':personne_en_turban_peau_moyennement_claire:': u'\U0001F473\U0001F3FC', u':personne_en_turban_peau_légèrement_mate:': u'\U0001F473\U0001F3FD', u':personne_en_turban_peau_mate:': u'\U0001F473\U0001F3FE', u':personne_en_turban_peau_foncée:': u'\U0001F473\U0001F3FF', u':homme_en_turban:': u'\U0001F473\U0000200D\U00002642\U0000FE0F', u':homme_en_turban_peau_claire:': u'\U0001F473\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_en_turban_peau_moyennement_claire:': u'\U0001F473\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_en_turban_peau_légèrement_mate:': u'\U0001F473\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_en_turban_peau_mate:': u'\U0001F473\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_en_turban_peau_foncée:': u'\U0001F473\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_en_turban:': u'\U0001F473\U0000200D\U00002640\U0000FE0F', u':femme_en_turban_peau_claire:': u'\U0001F473\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_en_turban_peau_moyennement_claire:': u'\U0001F473\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_en_turban_peau_légèrement_mate:': u'\U0001F473\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_en_turban_peau_mate:': u'\U0001F473\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_en_turban_peau_foncée:': u'\U0001F473\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':homme_avec_casquette_chinoise:': u'\U0001F472', u':homme_avec_casquette_chinoise_peau_claire:': u'\U0001F472\U0001F3FB', u':homme_avec_casquette_chinoise_peau_moyennement_claire:': u'\U0001F472\U0001F3FC', u':homme_avec_casquette_chinoise_peau_légèrement_mate:': u'\U0001F472\U0001F3FD', u':homme_avec_casquette_chinoise_peau_mate:': u'\U0001F472\U0001F3FE', u':homme_avec_casquette_chinoise_peau_foncée:': u'\U0001F472\U0001F3FF', u':femme_avec_foulard:': u'\U0001F9D5', u':femme_avec_foulard_peau_claire:': u'\U0001F9D5\U0001F3FB', u':femme_avec_foulard_peau_moyennement_claire:': u'\U0001F9D5\U0001F3FC', u':femme_avec_foulard_peau_légèrement_mate:': u'\U0001F9D5\U0001F3FD', u':femme_avec_foulard_peau_mate:': u'\U0001F9D5\U0001F3FE', u':femme_avec_foulard_peau_foncée:': u'\U0001F9D5\U0001F3FF', u':personne_en_smoking:': u'\U0001F935', u':personne_en_smoking_peau_claire:': u'\U0001F935\U0001F3FB', u':personne_en_smoking_peau_moyennement_claire:': u'\U0001F935\U0001F3FC', u':personne_en_smoking_peau_légèrement_mate:': u'\U0001F935\U0001F3FD', u':personne_en_smoking_peau_mate:': u'\U0001F935\U0001F3FE', u':personne_en_smoking_peau_foncée:': u'\U0001F935\U0001F3FF', u':homme_en_smoking:': u'\U0001F935\U0000200D\U00002642\U0000FE0F', u':homme_en_smoking_peau_claire:': u'\U0001F935\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_en_smoking_peau_moyennement_claire:': u'\U0001F935\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_en_smoking_peau_légèrement_mate:': u'\U0001F935\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_en_smoking_peau_mate:': u'\U0001F935\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_en_smoking_peau_foncée:': u'\U0001F935\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_en_smoking:': u'\U0001F935\U0000200D\U00002640\U0000FE0F', u':femme_en_smoking_peau_claire:': u'\U0001F935\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_en_smoking_peau_moyennement_claire:': u'\U0001F935\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_en_smoking_peau_légèrement_mate:': u'\U0001F935\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_en_smoking_peau_mate:': u'\U0001F935\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_en_smoking_peau_foncée:': u'\U0001F935\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_mariée_avec_voile:': u'\U0001F470', u':personne_mariée_avec_voile_peau_claire:': u'\U0001F470\U0001F3FB', u':personne_mariée_avec_voile_peau_moyennement_claire:': u'\U0001F470\U0001F3FC', u':personne_mariée_avec_voile_peau_légèrement_mate:': u'\U0001F470\U0001F3FD', u':personne_mariée_avec_voile_peau_mate:': u'\U0001F470\U0001F3FE', u':personne_mariée_avec_voile_peau_foncée:': u'\U0001F470\U0001F3FF', u':homme_avec_voile:': u'\U0001F470\U0000200D\U00002642\U0000FE0F', u':homme_avec_voile_peau_claire:': u'\U0001F470\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_avec_voile_peau_moyennement_claire:': u'\U0001F470\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_avec_voile_peau_légèrement_mate:': u'\U0001F470\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_avec_voile_peau_mate:': u'\U0001F470\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_avec_voile_peau_foncée:': u'\U0001F470\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_avec_voile:': u'\U0001F470\U0000200D\U00002640\U0000FE0F', u':femme_avec_voile_peau_claire:': u'\U0001F470\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_avec_voile_peau_moyennement_claire:': u'\U0001F470\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_avec_voile_peau_légèrement_mate:': u'\U0001F470\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_avec_voile_peau_mate:': u'\U0001F470\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_avec_voile_peau_foncée:': u'\U0001F470\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':femme_enceinte:': u'\U0001F930', u':femme_enceinte_peau_claire:': u'\U0001F930\U0001F3FB', u':femme_enceinte_peau_moyennement_claire:': u'\U0001F930\U0001F3FC', u':femme_enceinte_peau_légèrement_mate:': u'\U0001F930\U0001F3FD', u':femme_enceinte_peau_mate:': u'\U0001F930\U0001F3FE', u':femme_enceinte_peau_foncée:': u'\U0001F930\U0001F3FF', u':allaitement:': u'\U0001F931', u':allaitement_peau_claire:': u'\U0001F931\U0001F3FB', u':allaitement_peau_moyennement_claire:': u'\U0001F931\U0001F3FC', u':allaitement_peau_légèrement_mate:': u'\U0001F931\U0001F3FD', u':allaitement_peau_mate:': u'\U0001F931\U0001F3FE', u':allaitement_peau_foncée:': u'\U0001F931\U0001F3FF', u':femme_allaitant_un_bébé:': u'\U0001F469\U0000200D\U0001F37C', u':femme_allaitant_un_bébé_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F37C', u':femme_allaitant_un_bébé_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F37C', u':femme_allaitant_un_bébé_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F37C', u':femme_allaitant_un_bébé_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F37C', u':femme_allaitant_un_bébé_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F37C', u':homme_allaitant_un_bébé:': u'\U0001F468\U0000200D\U0001F37C', u':homme_allaitant_un_bébé_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F37C', u':homme_allaitant_un_bébé_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F37C', u':homme_allaitant_un_bébé_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F37C', u':homme_allaitant_un_bébé_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F37C', u':homme_allaitant_un_bébé_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F37C', u':personne_allaitant_un_bébé:': u'\U0001F9D1\U0000200D\U0001F37C', u':personne_allaitant_un_bébé_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F37C', u':personne_allaitant_un_bébé_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F37C', u':personne_allaitant_un_bébé_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F37C', u':personne_allaitant_un_bébé_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F37C', u':personne_allaitant_un_bébé_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F37C', u':bébé_ange:': u'\U0001F47C', u':bébé_ange_peau_claire:': u'\U0001F47C\U0001F3FB', u':bébé_ange_peau_moyennement_claire:': u'\U0001F47C\U0001F3FC', u':bébé_ange_peau_légèrement_mate:': u'\U0001F47C\U0001F3FD', u':bébé_ange_peau_mate:': u'\U0001F47C\U0001F3FE', u':bébé_ange_peau_foncée:': u'\U0001F47C\U0001F3FF', u':père_noël:': u'\U0001F385', u':père_noël_peau_claire:': u'\U0001F385\U0001F3FB', u':père_noël_peau_moyennement_claire:': u'\U0001F385\U0001F3FC', u':père_noël_peau_légèrement_mate:': u'\U0001F385\U0001F3FD', u':père_noël_peau_mate:': u'\U0001F385\U0001F3FE', u':père_noël_peau_foncée:': u'\U0001F385\U0001F3FF', u':mère_noël:': u'\U0001F936', u':mère_noël_peau_claire:': u'\U0001F936\U0001F3FB', u':mère_noël_peau_moyennement_claire:': u'\U0001F936\U0001F3FC', u':mère_noël_peau_légèrement_mate:': u'\U0001F936\U0001F3FD', u':mère_noël_peau_mate:': u'\U0001F936\U0001F3FE', u':mère_noël_peau_foncée:': u'\U0001F936\U0001F3FF', u':santa:': u'\U0001F9D1\U0000200D\U0001F384', u':santa_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F384', u':santa_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F384', u':santa_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F384', u':santa_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F384', u':santa_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F384', u':super-héros:': u'\U0001F9B8', u':super-héros_peau_claire:': u'\U0001F9B8\U0001F3FB', u':super-héros_peau_moyennement_claire:': u'\U0001F9B8\U0001F3FC', u':super-héros_peau_légèrement_mate:': u'\U0001F9B8\U0001F3FD', u':super-héros_peau_mate:': u'\U0001F9B8\U0001F3FE', u':super-héros_peau_foncée:': u'\U0001F9B8\U0001F3FF', u':super-héros_homme:': u'\U0001F9B8\U0000200D\U00002642\U0000FE0F', u':super-héros_homme_peau_claire:': u'\U0001F9B8\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':super-héros_homme_peau_moyennement_claire:': u'\U0001F9B8\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':super-héros_homme_peau_légèrement_mate:': u'\U0001F9B8\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':super-héros_homme_peau_mate:': u'\U0001F9B8\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':super-héros_homme_peau_foncée:': u'\U0001F9B8\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':super-héroïne:': u'\U0001F9B8\U0000200D\U00002640\U0000FE0F', u':super-héroïne_peau_claire:': u'\U0001F9B8\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':super-héroïne_peau_moyennement_claire:': u'\U0001F9B8\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':super-héroïne_peau_légèrement_mate:': u'\U0001F9B8\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':super-héroïne_peau_mate:': u'\U0001F9B8\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':super-héroïne_peau_foncée:': u'\U0001F9B8\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':super-vilain:': u'\U0001F9B9', u':super-vilain_peau_claire:': u'\U0001F9B9\U0001F3FB', u':super-vilain_peau_moyennement_claire:': u'\U0001F9B9\U0001F3FC', u':super-vilain_peau_légèrement_mate:': u'\U0001F9B9\U0001F3FD', u':super-vilain_peau_mate:': u'\U0001F9B9\U0001F3FE', u':super-vilain_peau_foncée:': u'\U0001F9B9\U0001F3FF', u':super-vilain_homme:': u'\U0001F9B9\U0000200D\U00002642\U0000FE0F', u':super-vilain_homme_peau_claire:': u'\U0001F9B9\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':super-vilain_homme_peau_moyennement_claire:': u'\U0001F9B9\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':super-vilain_homme_peau_légèrement_mate:': u'\U0001F9B9\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':super-vilain_homme_peau_mate:': u'\U0001F9B9\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':super-vilain_homme_peau_foncée:': u'\U0001F9B9\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':super-vilain_femme:': u'\U0001F9B9\U0000200D\U00002640\U0000FE0F', u':super-vilain_femme_peau_claire:': u'\U0001F9B9\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':super-vilain_femme_peau_moyennement_claire:': u'\U0001F9B9\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':super-vilain_femme_peau_légèrement_mate:': u'\U0001F9B9\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':super-vilain_femme_peau_mate:': u'\U0001F9B9\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':super-vilain_femme_peau_foncée:': u'\U0001F9B9\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':mage:': u'\U0001F9D9', u':mage_peau_claire:': u'\U0001F9D9\U0001F3FB', u':mage_peau_moyennement_claire:': u'\U0001F9D9\U0001F3FC', u':mage_peau_légèrement_mate:': u'\U0001F9D9\U0001F3FD', u':mage_peau_mate:': u'\U0001F9D9\U0001F3FE', u':mage_peau_foncée:': u'\U0001F9D9\U0001F3FF', u':mage_homme:': u'\U0001F9D9\U0000200D\U00002642\U0000FE0F', u':mage_homme_peau_claire:': u'\U0001F9D9\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':mage_homme_peau_moyennement_claire:': u'\U0001F9D9\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':mage_homme_peau_légèrement_mate:': u'\U0001F9D9\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':mage_homme_peau_mate:': u'\U0001F9D9\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':mage_homme_peau_foncée:': u'\U0001F9D9\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':mage_femme:': u'\U0001F9D9\U0000200D\U00002640\U0000FE0F', u':mage_femme_peau_claire:': u'\U0001F9D9\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':mage_femme_peau_moyennement_claire:': u'\U0001F9D9\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':mage_femme_peau_légèrement_mate:': u'\U0001F9D9\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':mage_femme_peau_mate:': u'\U0001F9D9\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':mage_femme_peau_foncée:': u'\U0001F9D9\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personnage_féérique:': u'\U0001F9DA', u':personnage_féérique_peau_claire:': u'\U0001F9DA\U0001F3FB', u':personnage_féérique_peau_moyennement_claire:': u'\U0001F9DA\U0001F3FC', u':personnage_féérique_peau_légèrement_mate:': u'\U0001F9DA\U0001F3FD', u':personnage_féérique_peau_mate:': u'\U0001F9DA\U0001F3FE', u':personnage_féérique_peau_foncée:': u'\U0001F9DA\U0001F3FF', u':féetaud:': u'\U0001F9DA\U0000200D\U00002642\U0000FE0F', u':féetaud_peau_claire:': u'\U0001F9DA\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':féetaud_peau_moyennement_claire:': u'\U0001F9DA\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':féetaud_peau_légèrement_mate:': u'\U0001F9DA\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':féetaud_peau_mate:': u'\U0001F9DA\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':féetaud_peau_foncée:': u'\U0001F9DA\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':fée:': u'\U0001F9DA\U0000200D\U00002640\U0000FE0F', u':fée_peau_claire:': u'\U0001F9DA\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':fée_peau_moyennement_claire:': u'\U0001F9DA\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':fée_peau_légèrement_mate:': u'\U0001F9DA\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':fée_peau_mate:': u'\U0001F9DA\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':fée_peau_foncée:': u'\U0001F9DA\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':vampire:': u'\U0001F9DB', u':vampire_peau_claire:': u'\U0001F9DB\U0001F3FB', u':vampire_peau_moyennement_claire:': u'\U0001F9DB\U0001F3FC', u':vampire_peau_légèrement_mate:': u'\U0001F9DB\U0001F3FD', u':vampire_peau_mate:': u'\U0001F9DB\U0001F3FE', u':vampire_peau_foncée:': u'\U0001F9DB\U0001F3FF', u':vampire_homme:': u'\U0001F9DB\U0000200D\U00002642\U0000FE0F', u':vampire_homme_peau_claire:': u'\U0001F9DB\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':vampire_homme_peau_moyennement_claire:': u'\U0001F9DB\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':vampire_homme_peau_légèrement_mate:': u'\U0001F9DB\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':vampire_homme_peau_mate:': u'\U0001F9DB\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':vampire_homme_peau_foncée:': u'\U0001F9DB\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':vampire_femme:': u'\U0001F9DB\U0000200D\U00002640\U0000FE0F', u':vampire_femme_peau_claire:': u'\U0001F9DB\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':vampire_femme_peau_moyennement_claire:': u'\U0001F9DB\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':vampire_femme_peau_légèrement_mate:': u'\U0001F9DB\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':vampire_femme_peau_mate:': u'\U0001F9DB\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':vampire_femme_peau_foncée:': u'\U0001F9DB\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':créature_aquatique:': u'\U0001F9DC', u':créature_aquatique_peau_claire:': u'\U0001F9DC\U0001F3FB', u':créature_aquatique_peau_moyennement_claire:': u'\U0001F9DC\U0001F3FC', u':créature_aquatique_peau_légèrement_mate:': u'\U0001F9DC\U0001F3FD', u':créature_aquatique_peau_mate:': u'\U0001F9DC\U0001F3FE', u':créature_aquatique_peau_foncée:': u'\U0001F9DC\U0001F3FF', u':triton:': u'\U0001F9DC\U0000200D\U00002642\U0000FE0F', u':triton_peau_claire:': u'\U0001F9DC\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':triton_peau_moyennement_claire:': u'\U0001F9DC\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':triton_peau_légèrement_mate:': u'\U0001F9DC\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':triton_peau_mate:': u'\U0001F9DC\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':triton_peau_foncée:': u'\U0001F9DC\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':sirène:': u'\U0001F9DC\U0000200D\U00002640\U0000FE0F', u':sirène_peau_claire:': u'\U0001F9DC\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':sirène_peau_moyennement_claire:': u'\U0001F9DC\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':sirène_peau_légèrement_mate:': u'\U0001F9DC\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':sirène_peau_mate:': u'\U0001F9DC\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':sirène_peau_foncée:': u'\U0001F9DC\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':elfe:': u'\U0001F9DD', u':elfe_peau_claire:': u'\U0001F9DD\U0001F3FB', u':elfe_peau_moyennement_claire:': u'\U0001F9DD\U0001F3FC', u':elfe_peau_légèrement_mate:': u'\U0001F9DD\U0001F3FD', u':elfe_peau_mate:': u'\U0001F9DD\U0001F3FE', u':elfe_peau_foncée:': u'\U0001F9DD\U0001F3FF', u':elfe_homme:': u'\U0001F9DD\U0000200D\U00002642\U0000FE0F', u':elfe_homme_peau_claire:': u'\U0001F9DD\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':elfe_homme_peau_moyennement_claire:': u'\U0001F9DD\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':elfe_homme_peau_légèrement_mate:': u'\U0001F9DD\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':elfe_homme_peau_mate:': u'\U0001F9DD\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':elfe_homme_peau_foncée:': u'\U0001F9DD\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':elfe_femme:': u'\U0001F9DD\U0000200D\U00002640\U0000FE0F', u':elfe_femme_peau_claire:': u'\U0001F9DD\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':elfe_femme_peau_moyennement_claire:': u'\U0001F9DD\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':elfe_femme_peau_légèrement_mate:': u'\U0001F9DD\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':elfe_femme_peau_mate:': u'\U0001F9DD\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':elfe_femme_peau_foncée:': u'\U0001F9DD\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':génie:': u'\U0001F9DE', u':génie_homme:': u'\U0001F9DE\U0000200D\U00002642\U0000FE0F', u':génie_femme:': u'\U0001F9DE\U0000200D\U00002640\U0000FE0F', u':zombie:': u'\U0001F9DF', u':zombie_homme:': u'\U0001F9DF\U0000200D\U00002642\U0000FE0F', u':zombie_femme:': u'\U0001F9DF\U0000200D\U00002640\U0000FE0F', u':personne_qui_se_fait_masser:': u'\U0001F486', u':personne_qui_se_fait_masser_peau_claire:': u'\U0001F486\U0001F3FB', u':personne_qui_se_fait_masser_peau_moyennement_claire:': u'\U0001F486\U0001F3FC', u':personne_qui_se_fait_masser_peau_légèrement_mate:': u'\U0001F486\U0001F3FD', u':personne_qui_se_fait_masser_peau_mate:': u'\U0001F486\U0001F3FE', u':personne_qui_se_fait_masser_peau_foncée:': u'\U0001F486\U0001F3FF', u':homme_qui_se_fait_masser:': u'\U0001F486\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_masser_peau_claire:': u'\U0001F486\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_masser_peau_moyennement_claire:': u'\U0001F486\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_masser_peau_légèrement_mate:': u'\U0001F486\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_masser_peau_mate:': u'\U0001F486\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_masser_peau_foncée:': u'\U0001F486\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_se_fait_masser:': u'\U0001F486\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_masser_peau_claire:': u'\U0001F486\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_masser_peau_moyennement_claire:': u'\U0001F486\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_masser_peau_légèrement_mate:': u'\U0001F486\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_masser_peau_mate:': u'\U0001F486\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_masser_peau_foncée:': u'\U0001F486\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_se_fait_couper_les_cheveux:': u'\U0001F487', u':personne_qui_se_fait_couper_les_cheveux_peau_claire:': u'\U0001F487\U0001F3FB', u':personne_qui_se_fait_couper_les_cheveux_peau_moyennement_claire:': u'\U0001F487\U0001F3FC', u':personne_qui_se_fait_couper_les_cheveux_peau_légèrement_mate:': u'\U0001F487\U0001F3FD', u':personne_qui_se_fait_couper_les_cheveux_peau_mate:': u'\U0001F487\U0001F3FE', u':personne_qui_se_fait_couper_les_cheveux_peau_foncée:': u'\U0001F487\U0001F3FF', u':homme_qui_se_fait_couper_les_cheveux:': u'\U0001F487\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_couper_les_cheveux_peau_claire:': u'\U0001F487\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_couper_les_cheveux_peau_moyennement_claire:': u'\U0001F487\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_couper_les_cheveux_peau_légèrement_mate:': u'\U0001F487\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_couper_les_cheveux_peau_mate:': u'\U0001F487\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_se_fait_couper_les_cheveux_peau_foncée:': u'\U0001F487\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_se_fait_couper_les_cheveux:': u'\U0001F487\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_couper_les_cheveux_peau_claire:': u'\U0001F487\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_couper_les_cheveux_peau_moyennement_claire:': u'\U0001F487\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_couper_les_cheveux_peau_légèrement_mate:': u'\U0001F487\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_couper_les_cheveux_peau_mate:': u'\U0001F487\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_se_fait_couper_les_cheveux_peau_foncée:': u'\U0001F487\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_marche:': u'\U0001F6B6', u':personne_qui_marche_peau_claire:': u'\U0001F6B6\U0001F3FB', u':personne_qui_marche_peau_moyennement_claire:': u'\U0001F6B6\U0001F3FC', u':personne_qui_marche_peau_légèrement_mate:': u'\U0001F6B6\U0001F3FD', u':personne_qui_marche_peau_mate:': u'\U0001F6B6\U0001F3FE', u':personne_qui_marche_peau_foncée:': u'\U0001F6B6\U0001F3FF', u':homme_qui_marche:': u'\U0001F6B6\U0000200D\U00002642\U0000FE0F', u':homme_qui_marche_peau_claire:': u'\U0001F6B6\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_marche_peau_moyennement_claire:': u'\U0001F6B6\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_marche_peau_légèrement_mate:': u'\U0001F6B6\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_marche_peau_mate:': u'\U0001F6B6\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_marche_peau_foncée:': u'\U0001F6B6\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_marche:': u'\U0001F6B6\U0000200D\U00002640\U0000FE0F', u':femme_qui_marche_peau_claire:': u'\U0001F6B6\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_marche_peau_moyennement_claire:': u'\U0001F6B6\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_marche_peau_légèrement_mate:': u'\U0001F6B6\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_marche_peau_mate:': u'\U0001F6B6\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_marche_peau_foncée:': u'\U0001F6B6\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_debout:': u'\U0001F9CD', u':personne_debout_peau_claire:': u'\U0001F9CD\U0001F3FB', u':personne_debout_peau_moyennement_claire:': u'\U0001F9CD\U0001F3FC', u':personne_debout_peau_légèrement_mate:': u'\U0001F9CD\U0001F3FD', u':personne_debout_peau_mate:': u'\U0001F9CD\U0001F3FE', u':personne_debout_peau_foncée:': u'\U0001F9CD\U0001F3FF', u':homme_debout:': u'\U0001F9CD\U0000200D\U00002642\U0000FE0F', u':homme_debout_peau_claire:': u'\U0001F9CD\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_debout_peau_moyennement_claire:': u'\U0001F9CD\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_debout_peau_légèrement_mate:': u'\U0001F9CD\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_debout_peau_mate:': u'\U0001F9CD\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_debout_peau_foncée:': u'\U0001F9CD\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_debout:': u'\U0001F9CD\U0000200D\U00002640\U0000FE0F', u':femme_debout_peau_claire:': u'\U0001F9CD\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_debout_peau_moyennement_claire:': u'\U0001F9CD\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_debout_peau_légèrement_mate:': u'\U0001F9CD\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_debout_peau_mate:': u'\U0001F9CD\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_debout_peau_foncée:': u'\U0001F9CD\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_à_genoux:': u'\U0001F9CE', u':personne_à_genoux_peau_claire:': u'\U0001F9CE\U0001F3FB', u':personne_à_genoux_peau_moyennement_claire:': u'\U0001F9CE\U0001F3FC', u':personne_à_genoux_peau_légèrement_mate:': u'\U0001F9CE\U0001F3FD', u':personne_à_genoux_peau_mate:': u'\U0001F9CE\U0001F3FE', u':personne_à_genoux_peau_foncée:': u'\U0001F9CE\U0001F3FF', u':homme_à_genoux:': u'\U0001F9CE\U0000200D\U00002642\U0000FE0F', u':homme_à_genoux_peau_claire:': u'\U0001F9CE\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_à_genoux_peau_moyennement_claire:': u'\U0001F9CE\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_à_genoux_peau_légèrement_mate:': u'\U0001F9CE\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_à_genoux_peau_mate:': u'\U0001F9CE\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_à_genoux_peau_foncée:': u'\U0001F9CE\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_à_genoux:': u'\U0001F9CE\U0000200D\U00002640\U0000FE0F', u':femme_à_genoux_peau_claire:': u'\U0001F9CE\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_à_genoux_peau_moyennement_claire:': u'\U0001F9CE\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_à_genoux_peau_légèrement_mate:': u'\U0001F9CE\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_à_genoux_peau_mate:': u'\U0001F9CE\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_à_genoux_peau_foncée:': u'\U0001F9CE\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_avec_une_canne_blanche:': u'\U0001F9D1\U0000200D\U0001F9AF', u':personne_avec_une_canne_blanche_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9AF', u':personne_avec_une_canne_blanche_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9AF', u':personne_avec_une_canne_blanche_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9AF', u':personne_avec_une_canne_blanche_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9AF', u':personne_avec_une_canne_blanche_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9AF', u':homme_avec_canne_blanche:': u'\U0001F468\U0000200D\U0001F9AF', u':homme_avec_canne_blanche_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9AF', u':homme_avec_canne_blanche_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9AF', u':homme_avec_canne_blanche_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9AF', u':homme_avec_canne_blanche_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9AF', u':homme_avec_canne_blanche_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9AF', u':femme_avec_canne_blanche:': u'\U0001F469\U0000200D\U0001F9AF', u':femme_avec_canne_blanche_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9AF', u':femme_avec_canne_blanche_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9AF', u':femme_avec_canne_blanche_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9AF', u':femme_avec_canne_blanche_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9AF', u':femme_avec_canne_blanche_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9AF', u':personne_en_fauteuil_motorisé:': u'\U0001F9D1\U0000200D\U0001F9BC', u':personne_en_fauteuil_motorisé_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9BC', u':personne_en_fauteuil_motorisé_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9BC', u':personne_en_fauteuil_motorisé_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9BC', u':personne_en_fauteuil_motorisé_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9BC', u':personne_en_fauteuil_motorisé_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9BC', u':homme_en_fauteuil_motorisé:': u'\U0001F468\U0000200D\U0001F9BC', u':homme_en_fauteuil_motorisé_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9BC', u':homme_en_fauteuil_motorisé_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9BC', u':homme_en_fauteuil_motorisé_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9BC', u':homme_en_fauteuil_motorisé_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9BC', u':homme_en_fauteuil_motorisé_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9BC', u':femme_en_fauteuil_motorisé:': u'\U0001F469\U0000200D\U0001F9BC', u':femme_en_fauteuil_motorisé_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9BC', u':femme_en_fauteuil_motorisé_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9BC', u':femme_en_fauteuil_motorisé_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9BC', u':femme_en_fauteuil_motorisé_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9BC', u':femme_en_fauteuil_motorisé_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9BC', u':personne_en_fauteuil_roulant_manuel:': u'\U0001F9D1\U0000200D\U0001F9BD', u':personne_en_fauteuil_roulant_manuel_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F9BD', u':personne_en_fauteuil_roulant_manuel_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F9BD', u':personne_en_fauteuil_roulant_manuel_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F9BD', u':personne_en_fauteuil_roulant_manuel_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F9BD', u':personne_en_fauteuil_roulant_manuel_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F9BD', u':homme_en_fauteuil_roulant_manuel:': u'\U0001F468\U0000200D\U0001F9BD', u':homme_en_fauteuil_roulant_manuel_peau_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F9BD', u':homme_en_fauteuil_roulant_manuel_peau_moyennement_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F9BD', u':homme_en_fauteuil_roulant_manuel_peau_légèrement_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F9BD', u':homme_en_fauteuil_roulant_manuel_peau_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F9BD', u':homme_en_fauteuil_roulant_manuel_peau_foncée:': u'\U0001F468\U0001F3FF\U0000200D\U0001F9BD', u':femme_en_fauteuil_roulant_manuel:': u'\U0001F469\U0000200D\U0001F9BD', u':femme_en_fauteuil_roulant_manuel_peau_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F9BD', u':femme_en_fauteuil_roulant_manuel_peau_moyennement_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F9BD', u':femme_en_fauteuil_roulant_manuel_peau_légèrement_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F9BD', u':femme_en_fauteuil_roulant_manuel_peau_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F9BD', u':femme_en_fauteuil_roulant_manuel_peau_foncée:': u'\U0001F469\U0001F3FF\U0000200D\U0001F9BD', u':personne_qui_court:': u'\U0001F3C3', u':personne_qui_court_peau_claire:': u'\U0001F3C3\U0001F3FB', u':personne_qui_court_peau_moyennement_claire:': u'\U0001F3C3\U0001F3FC', u':personne_qui_court_peau_légèrement_mate:': u'\U0001F3C3\U0001F3FD', u':personne_qui_court_peau_mate:': u'\U0001F3C3\U0001F3FE', u':personne_qui_court_peau_foncée:': u'\U0001F3C3\U0001F3FF', u':homme_qui_court:': u'\U0001F3C3\U0000200D\U00002642\U0000FE0F', u':homme_qui_court_peau_claire:': u'\U0001F3C3\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_court_peau_moyennement_claire:': u'\U0001F3C3\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_court_peau_légèrement_mate:': u'\U0001F3C3\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_court_peau_mate:': u'\U0001F3C3\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_court_peau_foncée:': u'\U0001F3C3\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_court:': u'\U0001F3C3\U0000200D\U00002640\U0000FE0F', u':femme_qui_court_peau_claire:': u'\U0001F3C3\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_court_peau_moyennement_claire:': u'\U0001F3C3\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_court_peau_légèrement_mate:': u'\U0001F3C3\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_court_peau_mate:': u'\U0001F3C3\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_court_peau_foncée:': u'\U0001F3C3\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':danseuse:': u'\U0001F483', u':danseuse_peau_claire:': u'\U0001F483\U0001F3FB', u':danseuse_peau_moyennement_claire:': u'\U0001F483\U0001F3FC', u':danseuse_peau_légèrement_mate:': u'\U0001F483\U0001F3FD', u':danseuse_peau_mate:': u'\U0001F483\U0001F3FE', u':danseuse_peau_foncée:': u'\U0001F483\U0001F3FF', u':danseur:': u'\U0001F57A', u':danseur_peau_claire:': u'\U0001F57A\U0001F3FB', u':danseur_peau_moyennement_claire:': u'\U0001F57A\U0001F3FC', u':danseur_peau_légèrement_mate:': u'\U0001F57A\U0001F3FD', u':danseur_peau_mate:': u'\U0001F57A\U0001F3FE', u':danseur_peau_foncée:': u'\U0001F57A\U0001F3FF', u':homme_d’affaires_en_lévitation:': u'\U0001F574\U0000FE0F', u':homme_d’affaires_en_lévitation_peau_claire:': u'\U0001F574\U0001F3FB', u':homme_d’affaires_en_lévitation_peau_moyennement_claire:': u'\U0001F574\U0001F3FC', u':homme_d’affaires_en_lévitation_peau_légèrement_mate:': u'\U0001F574\U0001F3FD', u':homme_d’affaires_en_lévitation_peau_mate:': u'\U0001F574\U0001F3FE', u':homme_d’affaires_en_lévitation_peau_foncée:': u'\U0001F574\U0001F3FF', u':personnes_avec_des_oreilles_de_lapin:': u'\U0001F46F', u':hommes_avec_des_oreilles_de_lapin:': u'\U0001F46F\U0000200D\U00002642\U0000FE0F', u':femmes_avec_des_oreilles_de_lapin:': u'\U0001F46F\U0000200D\U00002640\U0000FE0F', u':personne_au_hammam:': u'\U0001F9D6', u':personne_au_hammam_peau_claire:': u'\U0001F9D6\U0001F3FB', u':personne_au_hammam_peau_moyennement_claire:': u'\U0001F9D6\U0001F3FC', u':personne_au_hammam_peau_légèrement_mate:': u'\U0001F9D6\U0001F3FD', u':personne_au_hammam_peau_mate:': u'\U0001F9D6\U0001F3FE', u':personne_au_hammam_peau_foncée:': u'\U0001F9D6\U0001F3FF', u':homme_au_hammam:': u'\U0001F9D6\U0000200D\U00002642\U0000FE0F', u':homme_au_hammam_peau_claire:': u'\U0001F9D6\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_au_hammam_peau_moyennement_claire:': u'\U0001F9D6\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_au_hammam_peau_légèrement_mate:': u'\U0001F9D6\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_au_hammam_peau_mate:': u'\U0001F9D6\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_au_hammam_peau_foncée:': u'\U0001F9D6\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_au_hammam:': u'\U0001F9D6\U0000200D\U00002640\U0000FE0F', u':femme_au_hammam_peau_claire:': u'\U0001F9D6\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_au_hammam_peau_moyennement_claire:': u'\U0001F9D6\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_au_hammam_peau_légèrement_mate:': u'\U0001F9D6\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_au_hammam_peau_mate:': u'\U0001F9D6\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_au_hammam_peau_foncée:': u'\U0001F9D6\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_grimpe:': u'\U0001F9D7', u':personne_qui_grimpe_peau_claire:': u'\U0001F9D7\U0001F3FB', u':personne_qui_grimpe_peau_moyennement_claire:': u'\U0001F9D7\U0001F3FC', u':personne_qui_grimpe_peau_légèrement_mate:': u'\U0001F9D7\U0001F3FD', u':personne_qui_grimpe_peau_mate:': u'\U0001F9D7\U0001F3FE', u':personne_qui_grimpe_peau_foncée:': u'\U0001F9D7\U0001F3FF', u':homme_qui_grimpe:': u'\U0001F9D7\U0000200D\U00002642\U0000FE0F', u':homme_qui_grimpe_peau_claire:': u'\U0001F9D7\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_qui_grimpe_peau_moyennement_claire:': u'\U0001F9D7\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_qui_grimpe_peau_légèrement_mate:': u'\U0001F9D7\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_qui_grimpe_peau_mate:': u'\U0001F9D7\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_qui_grimpe_peau_foncée:': u'\U0001F9D7\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_qui_grimpe:': u'\U0001F9D7\U0000200D\U00002640\U0000FE0F', u':femme_qui_grimpe_peau_claire:': u'\U0001F9D7\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_qui_grimpe_peau_moyennement_claire:': u'\U0001F9D7\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_qui_grimpe_peau_légèrement_mate:': u'\U0001F9D7\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_qui_grimpe_peau_mate:': u'\U0001F9D7\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_qui_grimpe_peau_foncée:': u'\U0001F9D7\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':escrimeur:': u'\U0001F93A', u':course_hippique:': u'\U0001F3C7', u':course_hippique_peau_claire:': u'\U0001F3C7\U0001F3FB', u':course_hippique_peau_moyennement_claire:': u'\U0001F3C7\U0001F3FC', u':course_hippique_peau_légèrement_mate:': u'\U0001F3C7\U0001F3FD', u':course_hippique_peau_mate:': u'\U0001F3C7\U0001F3FE', u':course_hippique_peau_foncée:': u'\U0001F3C7\U0001F3FF', u':skieur:': u'\U000026F7\U0000FE0F', u':snowboardeur:': u'\U0001F3C2', u':snowboardeur_peau_claire:': u'\U0001F3C2\U0001F3FB', u':snowboardeur_peau_moyennement_claire:': u'\U0001F3C2\U0001F3FC', u':snowboardeur_peau_légèrement_mate:': u'\U0001F3C2\U0001F3FD', u':snowboardeur_peau_mate:': u'\U0001F3C2\U0001F3FE', u':snowboardeur_peau_foncée:': u'\U0001F3C2\U0001F3FF', u':joueur_de_golf:': u'\U0001F3CC\U0000FE0F', u':joueur_de_golf_peau_claire:': u'\U0001F3CC\U0001F3FB', u':joueur_de_golf_peau_moyennement_claire:': u'\U0001F3CC\U0001F3FC', u':joueur_de_golf_peau_légèrement_mate:': u'\U0001F3CC\U0001F3FD', u':joueur_de_golf_peau_mate:': u'\U0001F3CC\U0001F3FE', u':joueur_de_golf_peau_foncée:': u'\U0001F3CC\U0001F3FF', u':golfeur:': u'\U0001F3CC\U0000FE0F\U0000200D\U00002642\U0000FE0F', u':golfeur_peau_claire:': u'\U0001F3CC\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':golfeur_peau_moyennement_claire:': u'\U0001F3CC\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':golfeur_peau_légèrement_mate:': u'\U0001F3CC\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':golfeur_peau_mate:': u'\U0001F3CC\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':golfeur_peau_foncée:': u'\U0001F3CC\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':golfeuse:': u'\U0001F3CC\U0000FE0F\U0000200D\U00002640\U0000FE0F', u':golfeuse_peau_claire:': u'\U0001F3CC\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':golfeuse_peau_moyennement_claire:': u'\U0001F3CC\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':golfeuse_peau_légèrement_mate:': u'\U0001F3CC\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':golfeuse_peau_mate:': u'\U0001F3CC\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':golfeuse_peau_foncée:': u'\U0001F3CC\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_faisant_du_surf:': u'\U0001F3C4', u':personne_faisant_du_surf_peau_claire:': u'\U0001F3C4\U0001F3FB', u':personne_faisant_du_surf_peau_moyennement_claire:': u'\U0001F3C4\U0001F3FC', u':personne_faisant_du_surf_peau_légèrement_mate:': u'\U0001F3C4\U0001F3FD', u':personne_faisant_du_surf_peau_mate:': u'\U0001F3C4\U0001F3FE', u':personne_faisant_du_surf_peau_foncée:': u'\U0001F3C4\U0001F3FF', u':surfeur:': u'\U0001F3C4\U0000200D\U00002642\U0000FE0F', u':surfeur_peau_claire:': u'\U0001F3C4\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':surfeur_peau_moyennement_claire:': u'\U0001F3C4\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':surfeur_peau_légèrement_mate:': u'\U0001F3C4\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':surfeur_peau_mate:': u'\U0001F3C4\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':surfeur_peau_foncée:': u'\U0001F3C4\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':surfeuse:': u'\U0001F3C4\U0000200D\U00002640\U0000FE0F', u':surfeuse_peau_claire:': u'\U0001F3C4\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':surfeuse_peau_moyennement_claire:': u'\U0001F3C4\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':surfeuse_peau_légèrement_mate:': u'\U0001F3C4\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':surfeuse_peau_mate:': u'\U0001F3C4\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':surfeuse_peau_foncée:': u'\U0001F3C4\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_ramant_dans_une_barque:': u'\U0001F6A3', u':personne_ramant_dans_une_barque_peau_claire:': u'\U0001F6A3\U0001F3FB', u':personne_ramant_dans_une_barque_peau_moyennement_claire:': u'\U0001F6A3\U0001F3FC', u':personne_ramant_dans_une_barque_peau_légèrement_mate:': u'\U0001F6A3\U0001F3FD', u':personne_ramant_dans_une_barque_peau_mate:': u'\U0001F6A3\U0001F3FE', u':personne_ramant_dans_une_barque_peau_foncée:': u'\U0001F6A3\U0001F3FF', u':rameur_dans_une_barque:': u'\U0001F6A3\U0000200D\U00002642\U0000FE0F', u':rameur_dans_une_barque_peau_claire:': u'\U0001F6A3\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':rameur_dans_une_barque_peau_moyennement_claire:': u'\U0001F6A3\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':rameur_dans_une_barque_peau_légèrement_mate:': u'\U0001F6A3\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':rameur_dans_une_barque_peau_mate:': u'\U0001F6A3\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':rameur_dans_une_barque_peau_foncée:': u'\U0001F6A3\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':rameuse_dans_une_barque:': u'\U0001F6A3\U0000200D\U00002640\U0000FE0F', u':rameuse_dans_une_barque_peau_claire:': u'\U0001F6A3\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':rameuse_dans_une_barque_peau_moyennement_claire:': u'\U0001F6A3\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':rameuse_dans_une_barque_peau_légèrement_mate:': u'\U0001F6A3\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':rameuse_dans_une_barque_peau_mate:': u'\U0001F6A3\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':rameuse_dans_une_barque_peau_foncée:': u'\U0001F6A3\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_nageant:': u'\U0001F3CA', u':personne_nageant_peau_claire:': u'\U0001F3CA\U0001F3FB', u':personne_nageant_peau_moyennement_claire:': u'\U0001F3CA\U0001F3FC', u':personne_nageant_peau_légèrement_mate:': u'\U0001F3CA\U0001F3FD', u':personne_nageant_peau_mate:': u'\U0001F3CA\U0001F3FE', u':personne_nageant_peau_foncée:': u'\U0001F3CA\U0001F3FF', u':nageur:': u'\U0001F3CA\U0000200D\U00002642\U0000FE0F', u':nageur_peau_claire:': u'\U0001F3CA\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':nageur_peau_moyennement_claire:': u'\U0001F3CA\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':nageur_peau_légèrement_mate:': u'\U0001F3CA\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':nageur_peau_mate:': u'\U0001F3CA\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':nageur_peau_foncée:': u'\U0001F3CA\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':nageuse:': u'\U0001F3CA\U0000200D\U00002640\U0000FE0F', u':nageuse_peau_claire:': u'\U0001F3CA\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':nageuse_peau_moyennement_claire:': u'\U0001F3CA\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':nageuse_peau_légèrement_mate:': u'\U0001F3CA\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':nageuse_peau_mate:': u'\U0001F3CA\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':nageuse_peau_foncée:': u'\U0001F3CA\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_avec_ballon:': u'\U000026F9\U0000FE0F', u':personne_avec_ballon_peau_claire:': u'\U000026F9\U0001F3FB', u':personne_avec_ballon_peau_moyennement_claire:': u'\U000026F9\U0001F3FC', u':personne_avec_ballon_peau_légèrement_mate:': u'\U000026F9\U0001F3FD', u':personne_avec_ballon_peau_mate:': u'\U000026F9\U0001F3FE', u':personne_avec_ballon_peau_foncée:': u'\U000026F9\U0001F3FF', u':homme_avec_ballon:': u'\U000026F9\U0000FE0F\U0000200D\U00002642\U0000FE0F', u':homme_avec_ballon_peau_claire:': u'\U000026F9\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_avec_ballon_peau_moyennement_claire:': u'\U000026F9\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_avec_ballon_peau_légèrement_mate:': u'\U000026F9\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_avec_ballon_peau_mate:': u'\U000026F9\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_avec_ballon_peau_foncée:': u'\U000026F9\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_avec_ballon:': u'\U000026F9\U0000FE0F\U0000200D\U00002640\U0000FE0F', u':femme_avec_ballon_peau_claire:': u'\U000026F9\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_avec_ballon_peau_moyennement_claire:': u'\U000026F9\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_avec_ballon_peau_légèrement_mate:': u'\U000026F9\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_avec_ballon_peau_mate:': u'\U000026F9\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_avec_ballon_peau_foncée:': u'\U000026F9\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':haltérophile:': u'\U0001F3CB\U0000FE0F', u':haltérophile_peau_claire:': u'\U0001F3CB\U0001F3FB', u':haltérophile_peau_moyennement_claire:': u'\U0001F3CB\U0001F3FC', u':haltérophile_peau_légèrement_mate:': u'\U0001F3CB\U0001F3FD', u':haltérophile_peau_mate:': u'\U0001F3CB\U0001F3FE', u':haltérophile_peau_foncée:': u'\U0001F3CB\U0001F3FF', u':homme_haltérophile:': u'\U0001F3CB\U0000FE0F\U0000200D\U00002642\U0000FE0F', u':homme_haltérophile_peau_claire:': u'\U0001F3CB\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_haltérophile_peau_moyennement_claire:': u'\U0001F3CB\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_haltérophile_peau_légèrement_mate:': u'\U0001F3CB\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_haltérophile_peau_mate:': u'\U0001F3CB\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_haltérophile_peau_foncée:': u'\U0001F3CB\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_haltérophile:': u'\U0001F3CB\U0000FE0F\U0000200D\U00002640\U0000FE0F', u':femme_haltérophile_peau_claire:': u'\U0001F3CB\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_haltérophile_peau_moyennement_claire:': u'\U0001F3CB\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_haltérophile_peau_légèrement_mate:': u'\U0001F3CB\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_haltérophile_peau_mate:': u'\U0001F3CB\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_haltérophile_peau_foncée:': u'\U0001F3CB\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':cycliste:': u'\U0001F6B4', u':cycliste_peau_claire:': u'\U0001F6B4\U0001F3FB', u':cycliste_peau_moyennement_claire:': u'\U0001F6B4\U0001F3FC', u':cycliste_peau_légèrement_mate:': u'\U0001F6B4\U0001F3FD', u':cycliste_peau_mate:': u'\U0001F6B4\U0001F3FE', u':cycliste_peau_foncée:': u'\U0001F6B4\U0001F3FF', u':cycliste_homme:': u'\U0001F6B4\U0000200D\U00002642\U0000FE0F', u':cycliste_homme_peau_claire:': u'\U0001F6B4\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':cycliste_homme_peau_moyennement_claire:': u'\U0001F6B4\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':cycliste_homme_peau_légèrement_mate:': u'\U0001F6B4\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':cycliste_homme_peau_mate:': u'\U0001F6B4\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':cycliste_homme_peau_foncée:': u'\U0001F6B4\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':cycliste_femme:': u'\U0001F6B4\U0000200D\U00002640\U0000FE0F', u':cycliste_femme_peau_claire:': u'\U0001F6B4\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':cycliste_femme_peau_moyennement_claire:': u'\U0001F6B4\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':cycliste_femme_peau_légèrement_mate:': u'\U0001F6B4\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':cycliste_femme_peau_mate:': u'\U0001F6B4\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':cycliste_femme_peau_foncée:': u'\U0001F6B4\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_en_vtt:': u'\U0001F6B5', u':personne_en_vtt_peau_claire:': u'\U0001F6B5\U0001F3FB', u':personne_en_vtt_peau_moyennement_claire:': u'\U0001F6B5\U0001F3FC', u':personne_en_vtt_peau_légèrement_mate:': u'\U0001F6B5\U0001F3FD', u':personne_en_vtt_peau_mate:': u'\U0001F6B5\U0001F3FE', u':personne_en_vtt_peau_foncée:': u'\U0001F6B5\U0001F3FF', u':homme_en_vtt:': u'\U0001F6B5\U0000200D\U00002642\U0000FE0F', u':homme_en_vtt_peau_claire:': u'\U0001F6B5\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_en_vtt_peau_moyennement_claire:': u'\U0001F6B5\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_en_vtt_peau_légèrement_mate:': u'\U0001F6B5\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_en_vtt_peau_mate:': u'\U0001F6B5\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_en_vtt_peau_foncée:': u'\U0001F6B5\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_en_vtt:': u'\U0001F6B5\U0000200D\U00002640\U0000FE0F', u':femme_en_vtt_peau_claire:': u'\U0001F6B5\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_en_vtt_peau_moyennement_claire:': u'\U0001F6B5\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_en_vtt_peau_légèrement_mate:': u'\U0001F6B5\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_en_vtt_peau_mate:': u'\U0001F6B5\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_en_vtt_peau_foncée:': u'\U0001F6B5\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_faisant_la_roue:': u'\U0001F938', u':personne_faisant_la_roue_peau_claire:': u'\U0001F938\U0001F3FB', u':personne_faisant_la_roue_peau_moyennement_claire:': u'\U0001F938\U0001F3FC', u':personne_faisant_la_roue_peau_légèrement_mate:': u'\U0001F938\U0001F3FD', u':personne_faisant_la_roue_peau_mate:': u'\U0001F938\U0001F3FE', u':personne_faisant_la_roue_peau_foncée:': u'\U0001F938\U0001F3FF', u':homme_faisant_la_roue:': u'\U0001F938\U0000200D\U00002642\U0000FE0F', u':homme_faisant_la_roue_peau_claire:': u'\U0001F938\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_faisant_la_roue_peau_moyennement_claire:': u'\U0001F938\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_faisant_la_roue_peau_légèrement_mate:': u'\U0001F938\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_faisant_la_roue_peau_mate:': u'\U0001F938\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_faisant_la_roue_peau_foncée:': u'\U0001F938\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_faisant_la_roue:': u'\U0001F938\U0000200D\U00002640\U0000FE0F', u':femme_faisant_la_roue_peau_claire:': u'\U0001F938\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_faisant_la_roue_peau_moyennement_claire:': u'\U0001F938\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_faisant_la_roue_peau_légèrement_mate:': u'\U0001F938\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_faisant_la_roue_peau_mate:': u'\U0001F938\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_faisant_la_roue_peau_foncée:': u'\U0001F938\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personnes_faisant_de_la_lutte:': u'\U0001F93C', u':lutteurs:': u'\U0001F93C\U0000200D\U00002642\U0000FE0F', u':lutteuses:': u'\U0001F93C\U0000200D\U00002640\U0000FE0F', u':personne_jouant_au_water-polo:': u'\U0001F93D', u':personne_jouant_au_water-polo_peau_claire:': u'\U0001F93D\U0001F3FB', u':personne_jouant_au_water-polo_peau_moyennement_claire:': u'\U0001F93D\U0001F3FC', u':personne_jouant_au_water-polo_peau_légèrement_mate:': u'\U0001F93D\U0001F3FD', u':personne_jouant_au_water-polo_peau_mate:': u'\U0001F93D\U0001F3FE', u':personne_jouant_au_water-polo_peau_foncée:': u'\U0001F93D\U0001F3FF', u':joueur_de_water-polo:': u'\U0001F93D\U0000200D\U00002642\U0000FE0F', u':joueur_de_water-polo_peau_claire:': u'\U0001F93D\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':joueur_de_water-polo_peau_moyennement_claire:': u'\U0001F93D\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':joueur_de_water-polo_peau_légèrement_mate:': u'\U0001F93D\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':joueur_de_water-polo_peau_mate:': u'\U0001F93D\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':joueur_de_water-polo_peau_foncée:': u'\U0001F93D\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':joueuse_de_water-polo:': u'\U0001F93D\U0000200D\U00002640\U0000FE0F', u':joueuse_de_water-polo_peau_claire:': u'\U0001F93D\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':joueuse_de_water-polo_peau_moyennement_claire:': u'\U0001F93D\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':joueuse_de_water-polo_peau_légèrement_mate:': u'\U0001F93D\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':joueuse_de_water-polo_peau_mate:': u'\U0001F93D\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':joueuse_de_water-polo_peau_foncée:': u'\U0001F93D\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_jouant_au_handball:': u'\U0001F93E', u':personne_jouant_au_handball_peau_claire:': u'\U0001F93E\U0001F3FB', u':personne_jouant_au_handball_peau_moyennement_claire:': u'\U0001F93E\U0001F3FC', u':personne_jouant_au_handball_peau_légèrement_mate:': u'\U0001F93E\U0001F3FD', u':personne_jouant_au_handball_peau_mate:': u'\U0001F93E\U0001F3FE', u':personne_jouant_au_handball_peau_foncée:': u'\U0001F93E\U0001F3FF', u':handballeur:': u'\U0001F93E\U0000200D\U00002642\U0000FE0F', u':handballeur_peau_claire:': u'\U0001F93E\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':handballeur_peau_moyennement_claire:': u'\U0001F93E\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':handballeur_peau_légèrement_mate:': u'\U0001F93E\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':handballeur_peau_mate:': u'\U0001F93E\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':handballeur_peau_foncée:': u'\U0001F93E\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':handballeuse:': u'\U0001F93E\U0000200D\U00002640\U0000FE0F', u':handballeuse_peau_claire:': u'\U0001F93E\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':handballeuse_peau_moyennement_claire:': u'\U0001F93E\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':handballeuse_peau_légèrement_mate:': u'\U0001F93E\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':handballeuse_peau_mate:': u'\U0001F93E\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':handballeuse_peau_foncée:': u'\U0001F93E\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_qui_jongle:': u'\U0001F939', u':personne_qui_jongle_peau_claire:': u'\U0001F939\U0001F3FB', u':personne_qui_jongle_peau_moyennement_claire:': u'\U0001F939\U0001F3FC', u':personne_qui_jongle_peau_légèrement_mate:': u'\U0001F939\U0001F3FD', u':personne_qui_jongle_peau_mate:': u'\U0001F939\U0001F3FE', u':personne_qui_jongle_peau_foncée:': u'\U0001F939\U0001F3FF', u':jongleur:': u'\U0001F939\U0000200D\U00002642\U0000FE0F', u':jongleur_peau_claire:': u'\U0001F939\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':jongleur_peau_moyennement_claire:': u'\U0001F939\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':jongleur_peau_légèrement_mate:': u'\U0001F939\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':jongleur_peau_mate:': u'\U0001F939\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':jongleur_peau_foncée:': u'\U0001F939\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':jongleuse:': u'\U0001F939\U0000200D\U00002640\U0000FE0F', u':jongleuse_peau_claire:': u'\U0001F939\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':jongleuse_peau_moyennement_claire:': u'\U0001F939\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':jongleuse_peau_légèrement_mate:': u'\U0001F939\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':jongleuse_peau_mate:': u'\U0001F939\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':jongleuse_peau_foncée:': u'\U0001F939\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_dans_la_posture_du_lotus:': u'\U0001F9D8', u':personne_dans_la_posture_du_lotus_peau_claire:': u'\U0001F9D8\U0001F3FB', u':personne_dans_la_posture_du_lotus_peau_moyennement_claire:': u'\U0001F9D8\U0001F3FC', u':personne_dans_la_posture_du_lotus_peau_légèrement_mate:': u'\U0001F9D8\U0001F3FD', u':personne_dans_la_posture_du_lotus_peau_mate:': u'\U0001F9D8\U0001F3FE', u':personne_dans_la_posture_du_lotus_peau_foncée:': u'\U0001F9D8\U0001F3FF', u':homme_dans_la_posture_du_lotus:': u'\U0001F9D8\U0000200D\U00002642\U0000FE0F', u':homme_dans_la_posture_du_lotus_peau_claire:': u'\U0001F9D8\U0001F3FB\U0000200D\U00002642\U0000FE0F', u':homme_dans_la_posture_du_lotus_peau_moyennement_claire:': u'\U0001F9D8\U0001F3FC\U0000200D\U00002642\U0000FE0F', u':homme_dans_la_posture_du_lotus_peau_légèrement_mate:': u'\U0001F9D8\U0001F3FD\U0000200D\U00002642\U0000FE0F', u':homme_dans_la_posture_du_lotus_peau_mate:': u'\U0001F9D8\U0001F3FE\U0000200D\U00002642\U0000FE0F', u':homme_dans_la_posture_du_lotus_peau_foncée:': u'\U0001F9D8\U0001F3FF\U0000200D\U00002642\U0000FE0F', u':femme_dans_la_posture_du_lotus:': u'\U0001F9D8\U0000200D\U00002640\U0000FE0F', u':femme_dans_la_posture_du_lotus_peau_claire:': u'\U0001F9D8\U0001F3FB\U0000200D\U00002640\U0000FE0F', u':femme_dans_la_posture_du_lotus_peau_moyennement_claire:': u'\U0001F9D8\U0001F3FC\U0000200D\U00002640\U0000FE0F', u':femme_dans_la_posture_du_lotus_peau_légèrement_mate:': u'\U0001F9D8\U0001F3FD\U0000200D\U00002640\U0000FE0F', u':femme_dans_la_posture_du_lotus_peau_mate:': u'\U0001F9D8\U0001F3FE\U0000200D\U00002640\U0000FE0F', u':femme_dans_la_posture_du_lotus_peau_foncée:': u'\U0001F9D8\U0001F3FF\U0000200D\U00002640\U0000FE0F', u':personne_prenant_un_bain:': u'\U0001F6C0', u':personne_prenant_un_bain_peau_claire:': u'\U0001F6C0\U0001F3FB', u':personne_prenant_un_bain_peau_moyennement_claire:': u'\U0001F6C0\U0001F3FC', u':personne_prenant_un_bain_peau_légèrement_mate:': u'\U0001F6C0\U0001F3FD', u':personne_prenant_un_bain_peau_mate:': u'\U0001F6C0\U0001F3FE', u':personne_prenant_un_bain_peau_foncée:': u'\U0001F6C0\U0001F3FF', u':personne_au_lit:': u'\U0001F6CC', u':personne_au_lit_peau_claire:': u'\U0001F6CC\U0001F3FB', u':personne_au_lit_peau_moyennement_claire:': u'\U0001F6CC\U0001F3FC', u':personne_au_lit_peau_légèrement_mate:': u'\U0001F6CC\U0001F3FD', u':personne_au_lit_peau_mate:': u'\U0001F6CC\U0001F3FE', u':personne_au_lit_peau_foncée:': u'\U0001F6CC\U0001F3FF', u':deux_personnes_se_tenant_la_main:': u'\U0001F9D1\U0000200D\U0001F91D\U0000200D\U0001F9D1', u':deux_personnes_se_tenant_la_main_peau_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB', u':deux_personnes_se_tenant_la_main_peau_claire_et_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC', u':deux_personnes_se_tenant_la_main_peau_claire_et_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD', u':deux_personnes_se_tenant_la_main_peau_claire_et_peau_mate:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE', u':deux_personnes_se_tenant_la_main_peau_claire_et_peau_foncée:': u'\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF', u':deux_personnes_se_tenant_la_main_peau_moyennement_claire_et_peau_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB', u':deux_personnes_se_tenant_la_main_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC', u':deux_personnes_se_tenant_la_main_peau_moyennement_claire_et_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD', u':deux_personnes_se_tenant_la_main_peau_moyennement_claire_et_peau_mate:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE', u':deux_personnes_se_tenant_la_main_peau_moyennement_claire_et_peau_foncée:': u'\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF', u':deux_personnes_se_tenant_la_main_peau_légèrement_mate_et_peau_claire:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB', u':deux_personnes_se_tenant_la_main_peau_légèrement_mate_et_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC', u':deux_personnes_se_tenant_la_main_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD', u':deux_personnes_se_tenant_la_main_peau_légèrement_mate_et_peau_mate:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE', u':deux_personnes_se_tenant_la_main_peau_légèrement_mate_et_peau_foncée:': u'\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF', u':deux_personnes_se_tenant_la_main_peau_mate_et_peau_claire:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB', u':deux_personnes_se_tenant_la_main_peau_mate_et_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC', u':deux_personnes_se_tenant_la_main_peau_mate_et_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD', u':deux_personnes_se_tenant_la_main_peau_mate:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE', u':deux_personnes_se_tenant_la_main_peau_mate_et_peau_foncée:': u'\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF', u':deux_personnes_se_tenant_la_main_peau_foncée_et_peau_claire:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB', u':deux_personnes_se_tenant_la_main_peau_foncée_et_peau_moyennement_claire:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC', u':deux_personnes_se_tenant_la_main_peau_foncée_et_peau_légèrement_mate:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD', u':deux_personnes_se_tenant_la_main_peau_foncée_et_peau_mate:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE', u':deux_personnes_se_tenant_la_main_peau_foncée:': u'\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF', u':deux_femmes_se_tenant_la_main:': u'\U0001F46D', u':deux_femmes_se_tenant_la_main_peau_claire:': u'\U0001F46D\U0001F3FB', u':deux_femmes_se_tenant_la_main_peau_claire_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC', u':deux_femmes_se_tenant_la_main_peau_claire_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD', u':deux_femmes_se_tenant_la_main_peau_claire_et_peau_mate:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE', u':deux_femmes_se_tenant_la_main_peau_claire_et_peau_foncée:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF', u':deux_femmes_se_tenant_la_main_peau_moyennement_claire_et_peau_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB', u':deux_femmes_se_tenant_la_main_peau_moyennement_claire:': u'\U0001F46D\U0001F3FC', u':deux_femmes_se_tenant_la_main_peau_moyennement_claire_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD', u':deux_femmes_se_tenant_la_main_peau_moyennement_claire_et_peau_mate:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE', u':deux_femmes_se_tenant_la_main_peau_moyennement_claire_et_peau_foncée:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF', u':deux_femmes_se_tenant_la_main_peau_légèrement_mate_et_peau_claire:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB', u':deux_femmes_se_tenant_la_main_peau_légèrement_mate_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC', u':deux_femmes_se_tenant_la_main_peau_légèrement_mate:': u'\U0001F46D\U0001F3FD', u':deux_femmes_se_tenant_la_main_peau_légèrement_mate_et_peau_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE', u':deux_femmes_se_tenant_la_main_peau_légèrement_mate_et_peau_foncée:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF', u':deux_femmes_se_tenant_la_main_peau_mate_et_peau_claire:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB', u':deux_femmes_se_tenant_la_main_peau_mate_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC', u':deux_femmes_se_tenant_la_main_peau_mate_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD', u':deux_femmes_se_tenant_la_main_peau_mate:': u'\U0001F46D\U0001F3FE', u':deux_femmes_se_tenant_la_main_peau_mate_et_peau_foncée:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF', u':deux_femmes_se_tenant_la_main_peau_foncée_et_peau_claire:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB', u':deux_femmes_se_tenant_la_main_peau_foncée_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC', u':deux_femmes_se_tenant_la_main_peau_foncée_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD', u':deux_femmes_se_tenant_la_main_peau_foncée_et_peau_mate:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE', u':deux_femmes_se_tenant_la_main_peau_foncée:': u'\U0001F46D\U0001F3FF', u':femme_et_homme_se_tenant_la_main:': u'\U0001F46B', u':femme_et_homme_se_tenant_la_main_peau_claire:': u'\U0001F46B\U0001F3FB', u':femme_et_homme_se_tenant_la_main_peau_claire_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':femme_et_homme_se_tenant_la_main_peau_claire_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':femme_et_homme_se_tenant_la_main_peau_claire_et_peau_mate:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':femme_et_homme_se_tenant_la_main_peau_claire_et_peau_foncée:': u'\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':femme_et_homme_se_tenant_la_main_peau_moyennement_claire_et_peau_claire:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':femme_et_homme_se_tenant_la_main_peau_moyennement_claire:': u'\U0001F46B\U0001F3FC', u':femme_et_homme_se_tenant_la_main_peau_moyennement_claire_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':femme_et_homme_se_tenant_la_main_peau_moyennement_claire_et_peau_mate:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':femme_et_homme_se_tenant_la_main_peau_moyennement_claire_et_peau_foncée:': u'\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':femme_et_homme_se_tenant_la_main_peau_légèrement_mate_et_peau_claire:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':femme_et_homme_se_tenant_la_main_peau_légèrement_mate_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':femme_et_homme_se_tenant_la_main_peau_légèrement_mate:': u'\U0001F46B\U0001F3FD', u':femme_et_homme_se_tenant_la_main_peau_légèrement_mate_et_peau_mate:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':femme_et_homme_se_tenant_la_main_peau_légèrement_mate_et_peau_foncée:': u'\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':femme_et_homme_se_tenant_la_main_peau_mate_et_peau_claire:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':femme_et_homme_se_tenant_la_main_peau_mate_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':femme_et_homme_se_tenant_la_main_peau_mate_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':femme_et_homme_se_tenant_la_main_peau_mate:': u'\U0001F46B\U0001F3FE', u':femme_et_homme_se_tenant_la_main_peau_mate_et_peau_foncée:': u'\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':femme_et_homme_se_tenant_la_main_peau_foncée_et_peau_claire:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':femme_et_homme_se_tenant_la_main_peau_foncée_et_peau_moyennement_claire:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':femme_et_homme_se_tenant_la_main_peau_foncée_et_peau_légèrement_mate:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':femme_et_homme_se_tenant_la_main_peau_foncée_et_peau_mate:': u'\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':femme_et_homme_se_tenant_la_main_peau_foncée:': u'\U0001F46B\U0001F3FF', u':deux_hommes_se_tenant_la_main:': u'\U0001F46C', u':deux_hommes_se_tenant_la_main_peau_claire:': u'\U0001F46C\U0001F3FB', u':deux_hommes_se_tenant_la_main_peau_claire_et_peau_moyennement_claire:': u'\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':deux_hommes_se_tenant_la_main_peau_claire_et_peau_légèrement_mate:': u'\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':deux_hommes_se_tenant_la_main_peau_claire_et_peau_mate:': u'\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':deux_hommes_se_tenant_la_main_peau_claire_et_peau_foncée:': u'\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':deux_hommes_se_tenant_la_main_peau_moyennement_claire_et_peau_claire:': u'\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':deux_hommes_se_tenant_la_main_peau_moyennement_claire:': u'\U0001F46C\U0001F3FC', u':deux_hommes_se_tenant_la_main_peau_moyennement_claire_et_peau_légèrement_mate:': u'\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':deux_hommes_se_tenant_la_main_peau_moyennement_claire_et_peau_mate:': u'\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':deux_hommes_se_tenant_la_main_peau_moyennement_claire_et_peau_foncée:': u'\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':deux_hommes_se_tenant_la_main_peau_légèrement_mate_et_peau_claire:': u'\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':deux_hommes_se_tenant_la_main_peau_légèrement_mate_et_peau_moyennement_claire:': u'\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':deux_hommes_se_tenant_la_main_peau_légèrement_mate:': u'\U0001F46C\U0001F3FD', u':deux_hommes_se_tenant_la_main_peau_légèrement_mate_et_peau_mate:': u'\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':deux_hommes_se_tenant_la_main_peau_légèrement_mate_et_peau_foncée:': u'\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':deux_hommes_se_tenant_la_main_peau_mate_et_peau_claire:': u'\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':deux_hommes_se_tenant_la_main_peau_mate_et_peau_moyennement_claire:': u'\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':deux_hommes_se_tenant_la_main_peau_mate_et_peau_légèrement_mate:': u'\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':deux_hommes_se_tenant_la_main_peau_mate:': u'\U0001F46C\U0001F3FE', u':deux_hommes_se_tenant_la_main_peau_mate_et_peau_foncée:': u'\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF', u':deux_hommes_se_tenant_la_main_peau_foncée_et_peau_claire:': u'\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB', u':deux_hommes_se_tenant_la_main_peau_foncée_et_peau_moyennement_claire:': u'\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC', u':deux_hommes_se_tenant_la_main_peau_foncée_et_peau_légèrement_mate:': u'\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD', u':deux_hommes_se_tenant_la_main_peau_foncée_et_peau_mate:': u'\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE', u':deux_hommes_se_tenant_la_main_peau_foncée:': u'\U0001F46C\U0001F3FF', u':bisou:': u'\U0001F48F', u':bisou_femme_et_homme:': u'\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468', u':bisou_homme_et_homme:': u'\U0001F468\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468', u':bisou_femme_et_femme:': u'\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469', u':couple_avec_cœur:': u'\U0001F491', u':couple_avec_cœur_femme_et_homme:': u'\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468', u':couple_avec_cœur_homme_et_homme:': u'\U0001F468\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468', u':couple_avec_cœur_femme_et_femme:': u'\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469', u':famille:': u'\U0001F46A', u':famille_homme,_femme_et_garçon:': u'\U0001F468\U0000200D\U0001F469\U0000200D\U0001F466', u':famille_homme,_femme_et_fille:': u'\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467', u':famille_homme,_femme,_fille_et_garçon:': u'\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466', u':famille_homme,_femme,_garçon_et_garçon:': u'\U0001F468\U0000200D\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466', u':famille_homme,_femme,_fille_et_fille:': u'\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467', u':famille_homme,_homme_et_garçon:': u'\U0001F468\U0000200D\U0001F468\U0000200D\U0001F466', u':famille_homme,_homme_et_fille:': u'\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467', u':famille_homme,_homme,_fille_et_garçon:': u'\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467\U0000200D\U0001F466', u':famille_homme,_homme,_garçon_et_garçon:': u'\U0001F468\U0000200D\U0001F468\U0000200D\U0001F466\U0000200D\U0001F466', u':famille_homme,_homme,_fille_et_fille:': u'\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467\U0000200D\U0001F467', u':famille_femme,_femme_et_garçon:': u'\U0001F469\U0000200D\U0001F469\U0000200D\U0001F466', u':famille_femme,_femme_et_fille:': u'\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467', u':famille_femme,_femme,_fille_et_garçon:': u'\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466', u':famille_femme,_femme,_garçon_et_garçon:': u'\U0001F469\U0000200D\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466', u':famille_femme,_femme,_fille_et_fille:': u'\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467', u':famille_homme_et_garçon:': u'\U0001F468\U0000200D\U0001F466', u':famille_homme,_garçon_et_garçon:': u'\U0001F468\U0000200D\U0001F466\U0000200D\U0001F466', u':famille_homme_et_fille:': u'\U0001F468\U0000200D\U0001F467', u':famille_homme,_fille_et_garçon:': u'\U0001F468\U0000200D\U0001F467\U0000200D\U0001F466', u':famille_homme,_fille_et_fille:': u'\U0001F468\U0000200D\U0001F467\U0000200D\U0001F467', u':famille_femme_et_garçon:': u'\U0001F469\U0000200D\U0001F466', u':famille_femme,_garçon_et_garçon:': u'\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466', u':famille_femme_et_fille:': u'\U0001F469\U0000200D\U0001F467', u':famille_femme,_fille_et_garçon:': u'\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466', u':famille_femme,_fille_et_fille:': u'\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467', u':tête_qui_parle:': u'\U0001F5E3\U0000FE0F', u':silhouette_de_buste:': u'\U0001F464', u':silhouettes_de_bustes:': u'\U0001F465', u':étreinte:': u'\U0001FAC2', u':traces_de_pas:': u'\U0001F463', u':peau_claire:': u'\U0001F3FB', u':peau_moyennement_claire:': u'\U0001F3FC', u':peau_légèrement_mate:': u'\U0001F3FD', u':peau_mate:': u'\U0001F3FE', u':peau_foncée:': u'\U0001F3FF', u':cheveux_roux:': u'\U0001F9B0', u':cheveux_bouclés:': u'\U0001F9B1', u':cheveux_blancs:': u'\U0001F9B3', u':chauve:': u'\U0001F9B2', u':tête_de_singe:': u'\U0001F435', u':singe:': u'\U0001F412', u':gorille:': u'\U0001F98D', u':orang-outan:': u'\U0001F9A7', u':tête_de_chien:': u'\U0001F436', u':chien:': u'\U0001F415', u':chien_guide:': u'\U0001F9AE', u':chien_d’assistance:': u'\U0001F415\U0000200D\U0001F9BA', u':caniche:': u'\U0001F429', u':loup:': u'\U0001F43A', u':renard:': u'\U0001F98A', u':raton_laveur:': u'\U0001F99D', u':tête_de_chat:': u'\U0001F431', u':chat:': u'\U0001F408', u':chat_noir:': u'\U0001F408\U0000200D\U00002B1B', u':tête_de_lion:': u'\U0001F981', u':tête_de_tigre:': u'\U0001F42F', u':tigre:': u'\U0001F405', u':léopard:': u'\U0001F406', u':tête_de_cheval:': u'\U0001F434', u':cheval:': u'\U0001F40E', u':licorne:': u'\U0001F984', u':zèbre:': u'\U0001F993', u':cerf:': u'\U0001F98C', u':bison:': u'\U0001F9AC', u':tête_de_vache:': u'\U0001F42E', u':bœuf:': u'\U0001F402', u':buffle:': u'\U0001F403', u':vache:': u'\U0001F404', u':tête_de_cochon:': u'\U0001F437', u':cochon:': u'\U0001F416', u':sanglier:': u'\U0001F417', u':groin:': u'\U0001F43D', u':bélier:': u'\U0001F40F', u':mouton:': u'\U0001F411', u':chèvre:': u'\U0001F410', u':dromadaire:': u'\U0001F42A', u':chameau:': u'\U0001F42B', u':lama:': u'\U0001F999', u':girafe:': u'\U0001F992', u':éléphant:': u'\U0001F418', u':mammouth:': u'\U0001F9A3', u':rhinocéros:': u'\U0001F98F', u':hippopotame:': u'\U0001F99B', u':tête_de_souris:': u'\U0001F42D', u':souris:': u'\U0001F401', u':rat:': u'\U0001F400', u':hamster:': u'\U0001F439', u':tête_de_lapin:': u'\U0001F430', u':lapin:': u'\U0001F407', u':écureuil:': u'\U0001F43F\U0000FE0F', u':castor:': u'\U0001F9AB', u':hérisson:': u'\U0001F994', u':chauve-souris:': u'\U0001F987', u':ours:': u'\U0001F43B', u':ours_polaire:': u'\U0001F43B\U0000200D\U00002744\U0000FE0F', u':koala:': u'\U0001F428', u':panda:': u'\U0001F43C', u':paresseux:': u'\U0001F9A5', u':loutre:': u'\U0001F9A6', u':mouffette:': u'\U0001F9A8', u':kangourou:': u'\U0001F998', u':blaireau:': u'\U0001F9A1', u':empreintes_d’animaux:': u'\U0001F43E', u':dindon:': u'\U0001F983', u':poule:': u'\U0001F414', u':coq:': u'\U0001F413', u':poussin_qui_éclôt:': u'\U0001F423', u':poussin:': u'\U0001F424', u':poussin_de_face:': u'\U0001F425', u':oiseau:': u'\U0001F426', u':pingouin:': u'\U0001F427', u':colombe:': u'\U0001F54A\U0000FE0F', u':aigle:': u'\U0001F985', u':canard:': u'\U0001F986', u':cygne:': u'\U0001F9A2', u':chouette:': u'\U0001F989', u':dodo:': u'\U0001F9A4', u':plume:': u'\U0001FAB6', u':flamant:': u'\U0001F9A9', u':paon:': u'\U0001F99A', u':perroquet:': u'\U0001F99C', u':grenouille:': u'\U0001F438', u':crocodile:': u'\U0001F40A', u':tortue:': u'\U0001F422', u':lézard:': u'\U0001F98E', u':serpent:': u'\U0001F40D', u':tête_de_dragon:': u'\U0001F432', u':dragon:': u'\U0001F409', u':sauropode:': u'\U0001F995', u':t-rex:': u'\U0001F996', u':baleine_soufflant_par_son_évent:': u'\U0001F433', u':baleine:': u'\U0001F40B', u':dauphin:': u'\U0001F42C', u':phoque:': u'\U0001F9AD', u':poisson:': u'\U0001F41F', u':poisson_tropical:': u'\U0001F420', u':poisson-lune:': u'\U0001F421', u':requin:': u'\U0001F988', u':pieuvre:': u'\U0001F419', u':coquille_en_spirale:': u'\U0001F41A', u':escargot:': u'\U0001F40C', u':papillon:': u'\U0001F98B', u':chenille:': u'\U0001F41B', u':fourmi:': u'\U0001F41C', u':abeille:': u'\U0001F41D', u':scarabée:': u'\U0001FAB2', u':coccinelle:': u'\U0001F41E', u':criquet:': u'\U0001F997', u':cafard:': u'\U0001FAB3', u':araignée:': u'\U0001F577\U0000FE0F', u':toile_d’araignée:': u'\U0001F578\U0000FE0F', u':scorpion:': u'\U0001F982', u':moustique:': u'\U0001F99F', u':mouche:': u'\U0001FAB0', u':lombric:': u'\U0001FAB1', u':microbe:': u'\U0001F9A0', u':bouquet:': u'\U0001F490', u':fleur_de_cerisier:': u'\U0001F338', u':fleur_blanche:': u'\U0001F4AE', u':rosette:': u'\U0001F3F5\U0000FE0F', u':rose:': u'\U0001F339', u':fleur_fanée:': u'\U0001F940', u':hibiscus:': u'\U0001F33A', u':tournesol:': u'\U0001F33B', u':bourgeon:': u'\U0001F33C', u':tulipe:': u'\U0001F337', u':jeune_pousse:': u'\U0001F331', u':plante_en_pot:': u'\U0001FAB4', u':conifère:': u'\U0001F332', u':arbre_à_feuilles_caduques:': u'\U0001F333', u':palmier:': u'\U0001F334', u':cactus:': u'\U0001F335', u':plant_de_riz:': u'\U0001F33E', u':feuille:': u'\U0001F33F', u':trèfle:': u'\U00002618\U0000FE0F', u':trèfle_à_quatre_feuilles:': u'\U0001F340', u':feuille_d’érable:': u'\U0001F341', u':feuille_morte:': u'\U0001F342', u':feuille_virevoltante:': u'\U0001F343', u':raisin:': u'\U0001F347', u':melon:': u'\U0001F348', u':pastèque:': u'\U0001F349', u':mandarine:': u'\U0001F34A', u':citron:': u'\U0001F34B', u':banane:': u'\U0001F34C', u':ananas:': u'\U0001F34D', u':mangue:': u'\U0001F96D', u':pomme_rouge:': u'\U0001F34E', u':pomme_verte:': u'\U0001F34F', u':poire:': u'\U0001F350', u':pêche:': u'\U0001F351', u':cerises:': u'\U0001F352', u':fraise:': u'\U0001F353', u':myrtilles:': u'\U0001FAD0', u':kiwi:': u'\U0001F95D', u':tomate:': u'\U0001F345', u':olive:': u'\U0001FAD2', u':noix_de_coco:': u'\U0001F965', u':avocat:': u'\U0001F951', u':aubergine:': u'\U0001F346', u':pomme_de_terre:': u'\U0001F954', u':carotte:': u'\U0001F955', u':épi_de_maïs:': u'\U0001F33D', u':piment_rouge:': u'\U0001F336\U0000FE0F', u':poivron:': u'\U0001FAD1', u':concombre:': u'\U0001F952', u':légume_à_feuilles_vertes:': u'\U0001F96C', u':broccoli:': u'\U0001F966', u':ail:': u'\U0001F9C4', u':oignon:': u'\U0001F9C5', u':champignon:': u'\U0001F344', u':cacahuètes:': u'\U0001F95C', u':châtaigne:': u'\U0001F330', u':pain:': u'\U0001F35E', u':croissant:': u'\U0001F950', u':baguette:': u'\U0001F956', u':galette:': u'\U0001FAD3', u':bretzel:': u'\U0001F968', u':bagel:': u'\U0001F96F', u':pancakes:': u'\U0001F95E', u':gaufre:': u'\U0001F9C7', u':part_de_fromage:': u'\U0001F9C0', u':viande_sur_un_os:': u'\U0001F356', u':cuisse_de_poulet:': u'\U0001F357', u':morceau_de_viande:': u'\U0001F969', u':lard:': u'\U0001F953', u':hamburger:': u'\U0001F354', u':frites:': u'\U0001F35F', u':pizza:': u'\U0001F355', u':hot_dog:': u'\U0001F32D', u':sandwich:': u'\U0001F96A', u':taco:': u'\U0001F32E', u':burrito:': u'\U0001F32F', u':tamal:': u'\U0001FAD4', u':kebab:': u'\U0001F959', u':falafels:': u'\U0001F9C6', u':œuf:': u'\U0001F95A', u':œuf_au_plat:': u'\U0001F373', u':plat_mitonné:': u'\U0001F958', u':marmite:': u'\U0001F372', u':fondue:': u'\U0001FAD5', u':bol_avec_cuillère:': u'\U0001F963', u':salade_verte:': u'\U0001F957', u':pop-corn:': u'\U0001F37F', u':beurre:': u'\U0001F9C8', u':sel:': u'\U0001F9C2', u':aliments_en_conserve:': u'\U0001F96B', u':boîte_déjeuner:': u'\U0001F371', u':galette_de_riz:': u'\U0001F358', u':boulette_de_riz:': u'\U0001F359', u':bol_de_riz:': u'\U0001F35A', u':riz_au_curry:': u'\U0001F35B', u':bol_fumant:': u'\U0001F35C', u':spaghetti:': u'\U0001F35D', u':patate_douce:': u'\U0001F360', u':brochette_de_poisson:': u'\U0001F362', u':sushi:': u'\U0001F363', u':beignet_de_crevette:': u'\U0001F364', u':croquette_de_poisson:': u'\U0001F365', u':gâteau_de_lune:': u'\U0001F96E', u':brochette_de_bonbons:': u'\U0001F361', u':boulette_de_pâte:': u'\U0001F95F', u':biscuit_chinois:': u'\U0001F960', u':boîte_à_emporter:': u'\U0001F961', u':crabe:': u'\U0001F980', u':homard:': u'\U0001F99E', u':crevette:': u'\U0001F990', u':calamar:': u'\U0001F991', u':huître:': u'\U0001F9AA', u':glace_italienne:': u'\U0001F366', u':granité:': u'\U0001F367', u':glace:': u'\U0001F368', u':doughnut:': u'\U0001F369', u':cookie:': u'\U0001F36A', u':gâteau_d’anniversaire:': u'\U0001F382', u':gâteau_sablé:': u'\U0001F370', u':cupcake:': u'\U0001F9C1', u':tarte:': u'\U0001F967', u':barre_chocolatée:': u'\U0001F36B', u':bonbon:': u'\U0001F36C', u':sucette:': u'\U0001F36D', u':crème_renversée:': u'\U0001F36E', u':pot_de_miel:': u'\U0001F36F', u':biberon:': u'\U0001F37C', u':verre_de_lait:': u'\U0001F95B', u':boisson_chaude:': u'\U00002615', u':théière:': u'\U0001FAD6', u':tasse:': u'\U0001F375', u':saké:': u'\U0001F376', u':bouteille_de_champagne:': u'\U0001F37E', u':verre_de_vin:': u'\U0001F377', u':cocktail:': u'\U0001F378', u':cocktail_tropical:': u'\U0001F379', u':chope:': u'\U0001F37A', u':chopes_de_bière:': u'\U0001F37B', u':trinquer:': u'\U0001F942', u':verre_tumbler:': u'\U0001F943', u':gobelet_avec_paille:': u'\U0001F964', u':thé_aux_perles:': u'\U0001F9CB', u':briquette_de_jus:': u'\U0001F9C3', u':maté:': u'\U0001F9C9', u':glaçon:': u'\U0001F9CA', u':baguettes:': u'\U0001F962', u':fourchette_et_couteau_avec_assiette:': u'\U0001F37D\U0000FE0F', u':fourchette_et_couteau:': u'\U0001F374', u':cuillère:': u'\U0001F944', u':couteau_de_cuisine:': u'\U0001F52A', u':amphore:': u'\U0001F3FA', u':globe_tourné_sur_l’afrique_et_l’europe:': u'\U0001F30D', u':globe_tourné_sur_les_amériques:': u'\U0001F30E', u':globe_tourné_sur_l’asie_et_l’australie:': u'\U0001F30F', u':globe_avec_méridiens:': u'\U0001F310', u':carte_du_monde:': u'\U0001F5FA\U0000FE0F', u':carte_du_japon:': u'\U0001F5FE', u':boussole:': u'\U0001F9ED', u':montagne_enneigée:': u'\U0001F3D4\U0000FE0F', u':montagne:': u'\U000026F0\U0000FE0F', u':volcan:': u'\U0001F30B', u':mont_fuji:': u'\U0001F5FB', u':camping:': u'\U0001F3D5\U0000FE0F', u':plage_avec_parasol:': u'\U0001F3D6\U0000FE0F', u':désert:': u'\U0001F3DC\U0000FE0F', u':île_déserte:': u'\U0001F3DD\U0000FE0F', u':parc_national:': u'\U0001F3DE\U0000FE0F', u':stade:': u'\U0001F3DF\U0000FE0F', u':monument_classique:': u'\U0001F3DB\U0000FE0F', u':construction_d’un_bâtiment:': u'\U0001F3D7\U0000FE0F', u':brique:': u'\U0001F9F1', u':rocher:': u'\U0001FAA8', u':bois:': u'\U0001FAB5', u':hutte:': u'\U0001F6D6', u':maisons:': u'\U0001F3D8\U0000FE0F', u':maison_abandonnée:': u'\U0001F3DA\U0000FE0F', u':pavillon:': u'\U0001F3E0', u':maison_avec_jardin:': u'\U0001F3E1', u':immeuble_de_bureaux:': u'\U0001F3E2', u':bureau_de_poste_japonais:': u'\U0001F3E3', u':bureau_de_poste:': u'\U0001F3E4', u':hôpital:': u'\U0001F3E5', u':banque:': u'\U0001F3E6', u':hôtel:': u'\U0001F3E8', u':love_hotel:': u'\U0001F3E9', u':supérette:': u'\U0001F3EA', u':école:': u'\U0001F3EB', u':grand_magasin:': u'\U0001F3EC', u':usine:': u'\U0001F3ED', u':château_japonais:': u'\U0001F3EF', u':château:': u'\U0001F3F0', u':mariage:': u'\U0001F492', u':tour_de_tokyo:': u'\U0001F5FC', u':statue_de_la_liberté:': u'\U0001F5FD', u':église:': u'\U000026EA', u':mosquée:': u'\U0001F54C', u':temple_hindou:': u'\U0001F6D5', u':synagogue:': u'\U0001F54D', u':sanctuaire_shinto:': u'\U000026E9\U0000FE0F', u':kaaba:': u'\U0001F54B', u':fontaine:': u'\U000026F2', u':tente:': u'\U000026FA', u':brume:': u'\U0001F301', u':nuit_étoilée:': u'\U0001F303', u':ville:': u'\U0001F3D9\U0000FE0F', u':soleil_levant_derrière_les_montagnes:': u'\U0001F304', u':soleil_levant:': u'\U0001F305', u':ville_au_crépuscule:': u'\U0001F306', u':coucher_de_soleil:': u'\U0001F307', u':pont_de_nuit:': u'\U0001F309', u':sources_chaudes:': u'\U00002668\U0000FE0F', u':cheval_de_manège:': u'\U0001F3A0', u':grande_roue:': u'\U0001F3A1', u':montagnes_russes:': u'\U0001F3A2', u':enseigne_de_barbier:': u'\U0001F488', u':chapiteau:': u'\U0001F3AA', u':locomotive:': u'\U0001F682', u':wagon:': u'\U0001F683', u':tgv:': u'\U0001F684', u':train_à_grande_vitesse:': u'\U0001F685', u':train:': u'\U0001F686', u':métro:': u'\U0001F687', u':métro_léger:': u'\U0001F688', u':gare:': u'\U0001F689', u':tramway:': u'\U0001F68A', u':monorail:': u'\U0001F69D', u':train_de_montagne:': u'\U0001F69E', u':wagon_de_tramway:': u'\U0001F68B', u':bus:': u'\U0001F68C', u':bus_de_face:': u'\U0001F68D', u':trolleybus:': u'\U0001F68E', u':minibus:': u'\U0001F690', u':ambulance:': u'\U0001F691', u':camion_de_pompier:': u'\U0001F692', u':voiture_de_police:': u'\U0001F693', u':voiture_de_police_de_face:': u'\U0001F694', u':taxi:': u'\U0001F695', u':taxi_de_face:': u'\U0001F696', u':voiture:': u'\U0001F697', u':voiture_de_face:': u'\U0001F698', u':véhicule_utilitaire_sport:': u'\U0001F699', u':pick-up:': u'\U0001F6FB', u':camion_de_livraison:': u'\U0001F69A', u':semi-remorque:': u'\U0001F69B', u':tracteur:': u'\U0001F69C', u':voiture_de_course:': u'\U0001F3CE\U0000FE0F', u':moto:': u'\U0001F3CD\U0000FE0F', u':scooter:': u'\U0001F6F5', u':fauteuil_roulant_manuel:': u'\U0001F9BD', u':fauteuil_motorisé:': u'\U0001F9BC', u':tuk_tuk:': u'\U0001F6FA', u':vélo:': u'\U0001F6B2', u':trottinette:': u'\U0001F6F4', u':planche_à_roulettes:': u'\U0001F6F9', u':patin_à_roulettes:': u'\U0001F6FC', u':arrêt_de_bus:': u'\U0001F68F', u':autoroute:': u'\U0001F6E3\U0000FE0F', u':voie_ferrée:': u'\U0001F6E4\U0000FE0F', u':baril_de_pétrole:': u'\U0001F6E2\U0000FE0F', u':pompe_à_essence:': u'\U000026FD', u':gyrophare:': u'\U0001F6A8', u':feu_tricolore_horizontal:': u'\U0001F6A5', u':feu_tricolore_vertical:': u'\U0001F6A6', u':stop:': u'\U0001F6D1', u':travaux:': u'\U0001F6A7', u':ancre:': u'\U00002693', u':voilier:': u'\U000026F5', u':canoë:': u'\U0001F6F6', u':hors-bord:': u'\U0001F6A4', u':paquebot:': u'\U0001F6F3\U0000FE0F', u':ferry:': u'\U000026F4\U0000FE0F', u':bateau_à_moteur:': u'\U0001F6E5\U0000FE0F', u':navire:': u'\U0001F6A2', u':avion:': u'\U00002708\U0000FE0F', u':petit_avion:': u'\U0001F6E9\U0000FE0F', u':avion_au_décollage:': u'\U0001F6EB', u':avion_à_l’atterrissage:': u'\U0001F6EC', u':parachute:': u'\U0001FA82', u':siège:': u'\U0001F4BA', u':hélicoptère:': u'\U0001F681', u':train_suspendu:': u'\U0001F69F', u':téléphérique:': u'\U0001F6A0', u':tramway_aérien:': u'\U0001F6A1', u':satellite:': u'\U0001F6F0\U0000FE0F', u':fusée:': u'\U0001F680', u':soucoupe_volante:': u'\U0001F6F8', u':cloche_de_comptoir:': u'\U0001F6CE\U0000FE0F', u':bagage:': u'\U0001F9F3', u':sablier:': u'\U0000231B', u':sablier_avec_sable_qui_coule:': u'\U000023F3', u':montre:': u'\U0000231A', u':réveil:': u'\U000023F0', u':chronomètre:': u'\U000023F1\U0000FE0F', u':horloge:': u'\U000023F2\U0000FE0F', u':pendule:': u'\U0001F570\U0000FE0F', u':midi/minuit:': u'\U0001F55B', u':midi/minuit_et_demie:': u'\U0001F567', u':une_heure:': u'\U0001F550', u':une_heure_et_demie:': u'\U0001F55C', u':deux_heures:': u'\U0001F551', u':deux_heures_et_demie:': u'\U0001F55D', u':trois_heures:': u'\U0001F552', u':trois_heures_et_demie:': u'\U0001F55E', u':quatre_heures:': u'\U0001F553', u':quatre_heures_et_demie:': u'\U0001F55F', u':cinq_heures:': u'\U0001F554', u':cinq_heures_et_demie:': u'\U0001F560', u':six_heures:': u'\U0001F555', u':six_heures_et_demie:': u'\U0001F561', u':sept_heures:': u'\U0001F556', u':sept_heures_et_demie:': u'\U0001F562', u':huit_heures:': u'\U0001F557', u':huit_heures_et_demie:': u'\U0001F563', u':neuf_heures:': u'\U0001F558', u':neuf_heures_et_demie:': u'\U0001F564', u':dix_heures:': u'\U0001F559', u':dix_heures_et_demie:': u'\U0001F565', u':onze_heures:': u'\U0001F55A', u':onze_heures_et_demie:': u'\U0001F566', u':nouvelle_lune:': u'\U0001F311', u':lune_croissante:': u'\U0001F312', u':premier_quartier_de_lune:': u'\U0001F313', u':lune_gibbeuse_croissante:': u'\U0001F314', u':pleine_lune:': u'\U0001F315', u':lune_gibbeuse_décroissante:': u'\U0001F316', u':dernier_quartier:': u'\U0001F317', u':lune_décroissante:': u'\U0001F318', u':croissant_de_lune:': u'\U0001F319', u':nouvelle_lune_avec_visage:': u'\U0001F31A', u':premier_quartier_de_lune_avec_visage:': u'\U0001F31B', u':dernier_quartier_de_lune_avec_visage:': u'\U0001F31C', u':thermomètre:': u'\U0001F321\U0000FE0F', u':soleil:': u'\U00002600\U0000FE0F', u':pleine_lune_avec_visage:': u'\U0001F31D', u':soleil_avec_visage:': u'\U0001F31E', u':planète_à_anneaux:': u'\U0001FA90', u':étoile:': u'\U00002B50', u':étoile_brillante:': u'\U0001F31F', u':étoile_filante:': u'\U0001F320', u':voie_lactée:': u'\U0001F30C', u':nuage:': u'\U00002601\U0000FE0F', u':soleil_derrière_les_nuages:': u'\U000026C5', u':nuage_avec_éclair_et_pluie:': u'\U000026C8\U0000FE0F', u':soleil_derrière_un_petit_nuage:': u'\U0001F324\U0000FE0F', u':soleil_derrière_un_gros_nuage:': u'\U0001F325\U0000FE0F', u':soleil_derrière_un_nuage_de_pluie:': u'\U0001F326\U0000FE0F', u':nuage_avec_pluie:': u'\U0001F327\U0000FE0F', u':nuage_avec_neige:': u'\U0001F328\U0000FE0F', u':nuage_avec_éclair:': u'\U0001F329\U0000FE0F', u':tornade:': u'\U0001F32A\U0000FE0F', u':brouillard:': u'\U0001F32B\U0000FE0F', u':vent_avec_visage:': u'\U0001F32C\U0000FE0F', u':cyclone:': u'\U0001F300', u':arc-en-ciel:': u'\U0001F308', u':parapluie_fermé:': u'\U0001F302', u':parapluie_ouvert:': u'\U00002602\U0000FE0F', u':parapluie_avec_gouttes_de_pluie:': u'\U00002614', u':parasol_sur_le_sol:': u'\U000026F1\U0000FE0F', u':symbole_de_haute_tension:': u'\U000026A1', u':flocon:': u'\U00002744\U0000FE0F', u':bonhomme_de_neige:': u'\U00002603\U0000FE0F', u':bonhomme_de_neige_sans_neige:': u'\U000026C4', u':comète:': u'\U00002604\U0000FE0F', u':feu:': u'\U0001F525', u':goutte_d’eau:': u'\U0001F4A7', u':vague:': u'\U0001F30A', u':citrouille:': u'\U0001F383', u':sapin_de_noël:': u'\U0001F384', u':feu_d’artifice:': u'\U0001F386', u':cierge_magique:': u'\U0001F387', u':pétard:': u'\U0001F9E8', u':étincelles:': u'\U00002728', u':ballon_gonflable:': u'\U0001F388', u':cotillons:': u'\U0001F389', u':confettis:': u'\U0001F38A', u':arbre_à_vœux:': u'\U0001F38B', u':bambou_décoratif:': u'\U0001F38D', u':poupées_japonaises:': u'\U0001F38E', u':koinobori:': u'\U0001F38F', u':carillon_éolien:': u'\U0001F390', u':cérémonie_de_la_lune:': u'\U0001F391', u':enveloppe_rouge:': u'\U0001F9E7', u':ruban:': u'\U0001F380', u':cadeau:': u'\U0001F381', u':ruban_de_mémoire:': u'\U0001F397\U0000FE0F', u':billet_d’entrée:': u'\U0001F39F\U0000FE0F', u':billet:': u'\U0001F3AB', u':médaille_militaire:': u'\U0001F396\U0000FE0F', u':trophée:': u'\U0001F3C6', u':médaille_sportive:': u'\U0001F3C5', u':médaille_d’or:': u'\U0001F947', u':médaille_d’argent:': u'\U0001F948', u':médaille_de_bronze:': u'\U0001F949', u':ballon_de_football:': u'\U000026BD', u':baseball:': u'\U000026BE', u':softball:': u'\U0001F94E', u':basket:': u'\U0001F3C0', u':volley-ball:': u'\U0001F3D0', u':football_américain:': u'\U0001F3C8', u':rugby:': u'\U0001F3C9', u':tennis:': u'\U0001F3BE', u':disque-volant:': u'\U0001F94F', u':bowling:': u'\U0001F3B3', u':cricket:': u'\U0001F3CF', u':hockey_sur_gazon:': u'\U0001F3D1', u':hockey_sur_glace:': u'\U0001F3D2', u':crosse:': u'\U0001F94D', u':ping-pong:': u'\U0001F3D3', u':badminton:': u'\U0001F3F8', u':gant_de_boxe:': u'\U0001F94A', u':tenue_d’arts_martiaux:': u'\U0001F94B', u':cage:': u'\U0001F945', u':drapeau_de_golf:': u'\U000026F3', u':patin_à_glace:': u'\U000026F8\U0000FE0F', u':pêche_à_la_ligne:': u'\U0001F3A3', u':masque_de_plongée:': u'\U0001F93F', u':maillot_de_course:': u'\U0001F3BD', u':ski:': u'\U0001F3BF', u':luge:': u'\U0001F6F7', u':pierre_de_curling:': u'\U0001F94C', u':dans_le_mille:': u'\U0001F3AF', u':yoyo:': u'\U0001FA80', u':cerf-volant:': u'\U0001FA81', u':billard:': u'\U0001F3B1', u':boule_de_cristal:': u'\U0001F52E', u':baguette_magique:': u'\U0001FA84', u':mauvais_œil:': u'\U0001F9FF', u':jeu_vidéo:': u'\U0001F3AE', u':manette_de_jeu:': u'\U0001F579\U0000FE0F', u':machine_à_sous:': u'\U0001F3B0', u':dés:': u'\U0001F3B2', u':pièce_de_puzzle:': u'\U0001F9E9', u':ours_en_peluche:': u'\U0001F9F8', u':piñata:': u'\U0001FA85', u':poupées_russes:': u'\U0001FA86', u':pique:': u'\U00002660\U0000FE0F', u':cœur_cartes:': u'\U00002665\U0000FE0F', u':carreau:': u'\U00002666\U0000FE0F', u':trèfle_cartes:': u'\U00002663\U0000FE0F', u':pion_d’échec:': u'\U0000265F\U0000FE0F', u':carte_joker:': u'\U0001F0CF', u':dragon_rouge_mahjong:': u'\U0001F004', u':jeu_des_fleurs:': u'\U0001F3B4', u':spectacle_vivant:': u'\U0001F3AD', u':cadre_avec_image:': u'\U0001F5BC\U0000FE0F', u':palette_de_peinture:': u'\U0001F3A8', u':bobine_de_fil:': u'\U0001F9F5', u':aiguille_à_coudre:': u'\U0001FAA1', u':fil:': u'\U0001F9F6', u':nœud:': u'\U0001FAA2', u':lunettes_de_vue:': u'\U0001F453', u':lunettes_de_soleil:': u'\U0001F576\U0000FE0F', u':lunettes:': u'\U0001F97D', u':blouse_blanche:': u'\U0001F97C', u':gilet_de_sécurité:': u'\U0001F9BA', u':cravate:': u'\U0001F454', u':t-shirt:': u'\U0001F455', u':jean:': u'\U0001F456', u':foulard:': u'\U0001F9E3', u':gants:': u'\U0001F9E4', u':manteau:': u'\U0001F9E5', u':chaussettes:': u'\U0001F9E6', u':robe:': u'\U0001F457', u':kimono:': u'\U0001F458', u':sari:': u'\U0001F97B', u':maillot_de_bain_une_pièce:': u'\U0001FA71', u':slip:': u'\U0001FA72', u':short:': u'\U0001FA73', u':bikini:': u'\U0001F459', u':vêtements_de_femme:': u'\U0001F45A', u':porte-monnaie:': u'\U0001F45B', u':sac_à_main:': u'\U0001F45C', u':pochette:': u'\U0001F45D', u':sacs_de_shopping:': u'\U0001F6CD\U0000FE0F', u':cartable:': u'\U0001F392', u':tong:': u'\U0001FA74', u':chaussure_d’homme:': u'\U0001F45E', u':chaussure_de_sport:': u'\U0001F45F', u':chaussure_de_randonnée:': u'\U0001F97E', u':chaussure_plate:': u'\U0001F97F', u':chaussure_à_talon_haut:': u'\U0001F460', u':sandale_de_femme:': u'\U0001F461', u':chaussons_de_danse:': u'\U0001FA70', u':botte_de_femme:': u'\U0001F462', u':couronne:': u'\U0001F451', u':chapeau_de_femme:': u'\U0001F452', u':haut_de_forme:': u'\U0001F3A9', u':toque_universitaire:': u'\U0001F393', u':casquette_américaine:': u'\U0001F9E2', u':casque_militaire:': u'\U0001FA96', u':casque_de_secouriste:': u'\U000026D1\U0000FE0F', u':chapelet:': u'\U0001F4FF', u':rouge_à_lèvres:': u'\U0001F484', u':bague:': u'\U0001F48D', u':pierre_précieuse:': u'\U0001F48E', u':muet:': u'\U0001F507', u':volume_des_enceintes_faible:': u'\U0001F508', u':volume_des_enceintes_moyen:': u'\U0001F509', u':volume_des_enceintes_élevé:': u'\U0001F50A', u':haut-parleur:': u'\U0001F4E2', u':porte-voix:': u'\U0001F4E3', u':cor_postal:': u'\U0001F4EF', u':cloche:': u'\U0001F514', u':alarme_désactivée:': u'\U0001F515', u':partition:': u'\U0001F3BC', u':note_de_musique:': u'\U0001F3B5', u':notes_de_musique:': u'\U0001F3B6', u':micro_de_studio:': u'\U0001F399\U0000FE0F', u':curseur_de_niveau:': u'\U0001F39A\U0000FE0F', u':boutons_de_réglage:': u'\U0001F39B\U0000FE0F', u':micro:': u'\U0001F3A4', u':casque:': u'\U0001F3A7', u':radio:': u'\U0001F4FB', u':saxophone:': u'\U0001F3B7', u':accordéon:': u'\U0001FA97', u':guitare:': u'\U0001F3B8', u':piano:': u'\U0001F3B9', u':trompette:': u'\U0001F3BA', u':violon:': u'\U0001F3BB', u':banjo:': u'\U0001FA95', u':batterie:': u'\U0001F941', u':djembé:': u'\U0001FA98', u':téléphone_portable:': u'\U0001F4F1', u':appel_entrant:': u'\U0001F4F2', u':téléphone:': u'\U0000260E\U0000FE0F', u':combiné_téléphonique:': u'\U0001F4DE', u':bipeur:': u'\U0001F4DF', u':fax:': u'\U0001F4E0', u':pile:': u'\U0001F50B', u':câble_avec_fiche_électrique:': u'\U0001F50C', u':ordinateur_portable:': u'\U0001F4BB', u':ordinateur_de_bureau:': u'\U0001F5A5\U0000FE0F', u':imprimante:': u'\U0001F5A8\U0000FE0F', u':clavier:': u'\U00002328\U0000FE0F', u':souris_d’ordinateur:': u'\U0001F5B1\U0000FE0F', u':boule_de_commande:': u'\U0001F5B2\U0000FE0F', u':disque_d’ordinateur:': u'\U0001F4BD', u':disquette:': u'\U0001F4BE', u':cd:': u'\U0001F4BF', u':dvd:': u'\U0001F4C0', u':abaque:': u'\U0001F9EE', u':caméra:': u'\U0001F3A5', u':pellicule:': u'\U0001F39E\U0000FE0F', u':projecteur_cinématographique:': u'\U0001F4FD\U0000FE0F', u':clap:': u'\U0001F3AC', u':téléviseur:': u'\U0001F4FA', u':appareil_photo:': u'\U0001F4F7', u':appareil_photo_avec_flash:': u'\U0001F4F8', u':caméscope:': u'\U0001F4F9', u':cassette_vidéo:': u'\U0001F4FC', u':loupe_orientée_à_gauche:': u'\U0001F50D', u':loupe_orientée_à_droite:': u'\U0001F50E', u':bougie:': u'\U0001F56F\U0000FE0F', u':ampoule:': u'\U0001F4A1', u':torche:': u'\U0001F526', u':lampion_rouge:': u'\U0001F3EE', u':diya:': u'\U0001FA94', u':carnet_avec_couverture:': u'\U0001F4D4', u':livre_fermé:': u'\U0001F4D5', u':livre_ouvert:': u'\U0001F4D6', u':livre_vert:': u'\U0001F4D7', u':livre_bleu:': u'\U0001F4D8', u':livre_orange:': u'\U0001F4D9', u':livres:': u'\U0001F4DA', u':carnet:': u'\U0001F4D3', u':carnet_de_compte:': u'\U0001F4D2', u':page_enroulée:': u'\U0001F4C3', u':parchemin:': u'\U0001F4DC', u':page:': u'\U0001F4C4', u':journal:': u'\U0001F4F0', u':journal_roulé:': u'\U0001F5DE\U0000FE0F', u':signets:': u'\U0001F4D1', u':marque-page:': u'\U0001F516', u':étiquette:': u'\U0001F3F7\U0000FE0F', u':sac_plein_d’argent:': u'\U0001F4B0', u':pièce:': u'\U0001FA99', u':billet_en_yens:': u'\U0001F4B4', u':billet_en_dollars:': u'\U0001F4B5', u':billet_en_euros:': u'\U0001F4B6', u':billet_en_livres:': u'\U0001F4B7', u':billet_avec_des_ailes:': u'\U0001F4B8', u':carte_bancaire:': u'\U0001F4B3', u':reçu:': u'\U0001F9FE', u':courbe_avec_yen_en_hausse:': u'\U0001F4B9', u':enveloppe:': u'\U00002709\U0000FE0F', u':e-mail:': u'\U0001F4E7', u':message_reçu:': u'\U0001F4E8', u':enveloppe_avec_flèche:': u'\U0001F4E9', u':boîte_d’envoi:': u'\U0001F4E4', u':boîte_de_réception:': u'\U0001F4E5', u':colis:': u'\U0001F4E6', u':boîte_aux_lettres_fermée_drapeau_levé:': u'\U0001F4EB', u':boîte_aux_lettres_fermée_drapeau_baissé:': u'\U0001F4EA', u':boîte_aux_lettres_ouverte_drapeau_levé:': u'\U0001F4EC', u':boîte_aux_lettres_ouverte_drapeau_baissé:': u'\U0001F4ED', u':boîte_aux_lettres:': u'\U0001F4EE', u':urne_électorale:': u'\U0001F5F3\U0000FE0F', u':crayon:': u'\U0000270F\U0000FE0F', u':stylo_plume_noir:': u'\U00002712\U0000FE0F', u':stylo_plume:': u'\U0001F58B\U0000FE0F', u':stylo:': u'\U0001F58A\U0000FE0F', u':pinceau:': u'\U0001F58C\U0000FE0F', u':crayon_pastel:': u'\U0001F58D\U0000FE0F', u':mémo:': u'\U0001F4DD', u':porte-documents:': u'\U0001F4BC', u':dossier:': u'\U0001F4C1', u':dossier_ouvert:': u'\U0001F4C2', u':intercalaires:': u'\U0001F5C2\U0000FE0F', u':calendrier:': u'\U0001F4C5', u':éphéméride:': u'\U0001F4C6', u':bloc-notes_à_spirale:': u'\U0001F5D2\U0000FE0F', u':calendrier_à_spirale:': u'\U0001F5D3\U0000FE0F', u':carnet_d’adresses:': u'\U0001F4C7', u':graphique_en_hausse:': u'\U0001F4C8', u':graphique_en_baisse:': u'\U0001F4C9', u':graphiques_à_barres:': u'\U0001F4CA', u':porte-bloc:': u'\U0001F4CB', u':punaise:': u'\U0001F4CC', u':épingle:': u'\U0001F4CD', u':trombone:': u'\U0001F4CE', u':trombones:': u'\U0001F587\U0000FE0F', u':règle:': u'\U0001F4CF', u':équerre:': u'\U0001F4D0', u':ciseaux:': u'\U00002702\U0000FE0F', u':boîte_à_dossiers:': u'\U0001F5C3\U0000FE0F', u':meuble_à_dossiers:': u'\U0001F5C4\U0000FE0F', u':corbeille_à_papiers:': u'\U0001F5D1\U0000FE0F', u':cadenas_fermé:': u'\U0001F512', u':cadenas_ouvert:': u'\U0001F513', u':cadenas_fermé_avec_stylo:': u'\U0001F50F', u':cadenas_fermé_avec_clé:': u'\U0001F510', u':clé:': u'\U0001F511', u':clé_ancienne:': u'\U0001F5DD\U0000FE0F', u':marteau:': u'\U0001F528', u':hache:': u'\U0001FA93', u':pioche:': u'\U000026CF\U0000FE0F', u':marteau_et_pioche:': u'\U00002692\U0000FE0F', u':marteau_et_clé_à_molette:': u'\U0001F6E0\U0000FE0F', u':dague:': u'\U0001F5E1\U0000FE0F', u':épées_croisées:': u'\U00002694\U0000FE0F', u':pistolet:': u'\U0001F52B', u':boomerang:': u'\U0001FA83', u':arc_et_flèche:': u'\U0001F3F9', u':bouclier:': u'\U0001F6E1\U0000FE0F', u':scie:': u'\U0001FA9A', u':clé_à_molette:': u'\U0001F527', u':tournevis:': u'\U0001FA9B', u':vis_et_écrou:': u'\U0001F529', u':roue_dentée:': u'\U00002699\U0000FE0F', u':serre-joint:': u'\U0001F5DC\U0000FE0F', u':balance_à_poids:': u'\U00002696\U0000FE0F', u':canne_blanche:': u'\U0001F9AF', u':chaînons:': u'\U0001F517', u':chaînes:': u'\U000026D3\U0000FE0F', u':crochet:': u'\U0001FA9D', u':boîte_à_outils:': u'\U0001F9F0', u':aimant:': u'\U0001F9F2', u':échelle:': u'\U0001FA9C', u':alambic:': u'\U00002697\U0000FE0F', u':tube_à_essai:': u'\U0001F9EA', u':boîte_de_pétri:': u'\U0001F9EB', u':adn:': u'\U0001F9EC', u':microscope:': u'\U0001F52C', u':télescope:': u'\U0001F52D', u':antenne_satellite:': u'\U0001F4E1', u':seringue:': u'\U0001F489', u':goutte_de_sang:': u'\U0001FA78', u':pilule:': u'\U0001F48A', u':sparadrap:': u'\U0001FA79', u':stéthoscope:': u'\U0001FA7A', u':porte:': u'\U0001F6AA', u':ascenseur:': u'\U0001F6D7', u':miroir:': u'\U0001FA9E', u':fenêtre:': u'\U0001FA9F', u':lit:': u'\U0001F6CF\U0000FE0F', u':canapé_et_lampe:': u'\U0001F6CB\U0000FE0F', u':chaise:': u'\U0001FA91', u':toilettes:': u'\U0001F6BD', u':ventouse:': u'\U0001FAA0', u':douche:': u'\U0001F6BF', u':baignoire:': u'\U0001F6C1', u':tapette_à_souris:': u'\U0001FAA4', u':rasoir:': u'\U0001FA92', u':bouteille_de_lotion:': u'\U0001F9F4', u':épingle_de_sûreté:': u'\U0001F9F7', u':balai:': u'\U0001F9F9', u':panier:': u'\U0001F9FA', u':rouleau_de_papier:': u'\U0001F9FB', u':seau:': u'\U0001FAA3', u':savon:': u'\U0001F9FC', u':brosse_à_dents:': u'\U0001FAA5', u':éponge:': u'\U0001F9FD', u':extincteur:': u'\U0001F9EF', u':chariot:': u'\U0001F6D2', u':cigarette:': u'\U0001F6AC', u':cercueil:': u'\U000026B0\U0000FE0F', u':pierre_tombale:': u'\U0001FAA6', u':urne_funéraire:': u'\U000026B1\U0000FE0F', u':moai:': u'\U0001F5FF', u':pancarte:': u'\U0001FAA7', u':distributeur_de_billets:': u'\U0001F3E7', u':icône_poubelle:': u'\U0001F6AE', u':eau_potable:': u'\U0001F6B0', u':symbole_accès_handicapés:': u'\U0000267F', u':symbole_toilettes_hommes:': u'\U0001F6B9', u':symbole_toilettes_femmes:': u'\U0001F6BA', u':panneau_toilettes:': u'\U0001F6BB', u':symbole_bébé:': u'\U0001F6BC', u':wc:': u'\U0001F6BE', u':contrôle_des_passeports:': u'\U0001F6C2', u':douane:': u'\U0001F6C3', u':retrait_des_bagages:': u'\U0001F6C4', u':consigne:': u'\U0001F6C5', u':symbole_d’avertissement:': u'\U000026A0\U0000FE0F', u':traversée_d’enfants:': u'\U0001F6B8', u':sens_interdit:': u'\U000026D4', u':symbole_d’interdiction:': u'\U0001F6AB', u':vélos_interdits:': u'\U0001F6B3', u':interdiction_de_fumer:': u'\U0001F6AD', u':dépôt_d’ordures_interdit:': u'\U0001F6AF', u':eau_non_potable:': u'\U0001F6B1', u':interdit_aux_piétons:': u'\U0001F6B7', u':téléphones_portables_interdits:': u'\U0001F4F5', u':18_ans_et_plus:': u'\U0001F51E', u':radioactif:': u'\U00002622\U0000FE0F', u':danger_biologique:': u'\U00002623\U0000FE0F', u':flèche_haut:': u'\U00002B06\U0000FE0F', u':flèche_haut_droite:': u'\U00002197\U0000FE0F', u':flèche_droite:': u'\U000027A1\U0000FE0F', u':flèche_bas_droite:': u'\U00002198\U0000FE0F', u':flèche_bas:': u'\U00002B07\U0000FE0F', u':flèche_bas_gauche:': u'\U00002199\U0000FE0F', u':flèche_gauche:': u'\U00002B05\U0000FE0F', u':flèche_haut_gauche:': u'\U00002196\U0000FE0F', u':flèche_haut_bas:': u'\U00002195\U0000FE0F', u':flèche_gauche_droite:': u'\U00002194\U0000FE0F', u':flèche_courbe_gauche:': u'\U000021A9\U0000FE0F', u':flèche_courbe_droite:': u'\U000021AA\U0000FE0F', u':flèche_courbe_haut:': u'\U00002934\U0000FE0F', u':flèche_courbe_bas:': u'\U00002935\U0000FE0F', u':flèches_dans_le_sens_horaire:': u'\U0001F503', u':flèches_dans_le_sens_antihoraire:': u'\U0001F504', u':flèche_retour:': u'\U0001F519', u':flèche_fin:': u'\U0001F51A', u':flèche_activé:': u'\U0001F51B', u':flèche_bientôt:': u'\U0001F51C', u':flèche_en_haut:': u'\U0001F51D', u':lieu_de_culte:': u'\U0001F6D0', u':symbole_de_l’atome:': u'\U0000269B\U0000FE0F', u':om:': u'\U0001F549\U0000FE0F', u':étoile_de_david:': u'\U00002721\U0000FE0F', u':roue_du_dharma:': u'\U00002638\U0000FE0F', u':yin_yang:': u'\U0000262F\U0000FE0F', u':croix_latine:': u'\U0000271D\U0000FE0F', u':croix_orthodoxe:': u'\U00002626\U0000FE0F', u':lune_et_étoile:': u'\U0000262A\U0000FE0F', u':symbole_de_paix:': u'\U0000262E\U0000FE0F', u':chandelier_à_sept_branches:': u'\U0001F54E', u':étoile_à_6_branches:': u'\U0001F52F', u':bélier_zodiaque:': u'\U00002648', u':taureau:': u'\U00002649', u':gémeaux:': u'\U0000264A', u':cancer:': u'\U0000264B', u':lion:': u'\U0000264C', u':vierge:': u'\U0000264D', u':balance:': u'\U0000264E', u':scorpion_zodiaque:': u'\U0000264F', u':sagittaire:': u'\U00002650', u':capricorne:': u'\U00002651', u':verseau:': u'\U00002652', u':poissons:': u'\U00002653', u':serpentaire:': u'\U000026CE', u':bouton_lecture_aléatoire:': u'\U0001F500', u':bouton_répétition:': u'\U0001F501', u':bouton_répétition_de_la_piste:': u'\U0001F502', u':bouton_lecture:': u'\U000025B6\U0000FE0F', u':bouton_avance_rapide:': u'\U000023E9', u':bouton_piste_suivante:': u'\U000023ED\U0000FE0F', u':bouton_lecture/pause:': u'\U000023EF\U0000FE0F', u':bouton_retour:': u'\U000025C0\U0000FE0F', u':bouton_retour_rapide:': u'\U000023EA', u':bouton_piste_précédente:': u'\U000023EE\U0000FE0F', u':petit_triangle_haut:': u'\U0001F53C', u':double_flèche_vers_le_haut:': u'\U000023EB', u':petit_triangle_bas:': u'\U0001F53D', u':double_flèche_vers_le_bas:': u'\U000023EC', u':bouton_pause:': u'\U000023F8\U0000FE0F', u':bouton_stop:': u'\U000023F9\U0000FE0F', u':bouton_enregistrer:': u'\U000023FA\U0000FE0F', u':bouton_éjecter:': u'\U000023CF\U0000FE0F', u':cinéma:': u'\U0001F3A6', u':luminosité_faible:': u'\U0001F505', u':luminosité_élevée:': u'\U0001F506', u':barres_de_réseau:': u'\U0001F4F6', u':mode_vibreur:': u'\U0001F4F3', u':téléphone_éteint:': u'\U0001F4F4', u':symbole_de_la_femme:': u'\U00002640\U0000FE0F', u':symbole_de_l’homme:': u'\U00002642\U0000FE0F', u':symbole_de_la_communauté_transgenre:': u'\U000026A7\U0000FE0F', u':signe_multiplier:': u'\U00002716\U0000FE0F', u':signe_plus:': u'\U00002795', u':signe_moins:': u'\U00002796', u':signe_diviser:': u'\U00002797', u':infini:': u'\U0000267E\U0000FE0F', u':double_point_d’exclamation:': u'\U0000203C\U0000FE0F', u':points_d’exclamation_et_d’interrogation:': u'\U00002049\U0000FE0F', u':point_d’interrogation:': u'\U00002753', u':point_d’interrogation_blanc:': u'\U00002754', u':point_d’exclamation_blanc:': u'\U00002755', u':point_d’exclamation:': u'\U00002757', u':ligne_ondulée:': u'\U00003030\U0000FE0F', u':conversion_de_devise:': u'\U0001F4B1', u':dollar:': u'\U0001F4B2', u':caducée:': u'\U00002695\U0000FE0F', u':symbole_recyclage:': u'\U0000267B\U0000FE0F', u':fleur_de_lys:': u'\U0000269C\U0000FE0F', u':trident:': u'\U0001F531', u':badge_nominatif:': u'\U0001F4DB', u':symbole_japonais_de_débutant:': u'\U0001F530', u':cercle_rouge:': u'\U00002B55', u':bouton_coché:': u'\U00002705', u':case_cochée:': u'\U00002611\U0000FE0F', u':coche:': u'\U00002714\U0000FE0F', u':croix:': u'\U0000274C', u':bouton_croix:': u'\U0000274E', u':boucle:': u'\U000027B0', u':double_boucle:': u'\U000027BF', u':alternance:': u'\U0000303D\U0000FE0F', u':astérisque_huit_branches:': u'\U00002733\U0000FE0F', u':étoile_huit_branches:': u'\U00002734\U0000FE0F', u':éclat:': u'\U00002747\U0000FE0F', u':symbole_copyright:': u'\U000000A9\U0000FE0F', u':marque_déposée:': u'\U000000AE\U0000FE0F', u':marque_commerciale_déposée:': u'\U00002122\U0000FE0F', u':touches_#:': u'\U00000023\U0000FE0F\U000020E3', u':touches_*:': u'\U0000002A\U0000FE0F\U000020E3', u':touches_0:': u'\U00000030\U0000FE0F\U000020E3', u':touches_1:': u'\U00000031\U0000FE0F\U000020E3', u':touches_2:': u'\U00000032\U0000FE0F\U000020E3', u':touches_3:': u'\U00000033\U0000FE0F\U000020E3', u':touches_4:': u'\U00000034\U0000FE0F\U000020E3', u':touches_5:': u'\U00000035\U0000FE0F\U000020E3', u':touches_6:': u'\U00000036\U0000FE0F\U000020E3', u':touches_7:': u'\U00000037\U0000FE0F\U000020E3', u':touches_8:': u'\U00000038\U0000FE0F\U000020E3', u':touches_9:': u'\U00000039\U0000FE0F\U000020E3', u':touches_10:': u'\U0001F51F', u':majuscules:': u'\U0001F520', u':minuscules:': u'\U0001F521', u':saisie_de_chiffres:': u'\U0001F522', u':saisie_de_symboles:': u'\U0001F523', u':alphabet_latin:': u'\U0001F524', u':groupe_sanguin_a:': u'\U0001F170\U0000FE0F', u':groupe_sanguin_ab:': u'\U0001F18E', u':groupe_sanguin_b:': u'\U0001F171\U0000FE0F', u':bouton_effacer:': u'\U0001F191', u':bouton_cool:': u'\U0001F192', u':bouton_gratuit:': u'\U0001F193', u':source_d’informations:': u'\U00002139\U0000FE0F', u':bouton_identifiant:': u'\U0001F194', u':m_encerclé:': u'\U000024C2\U0000FE0F', u':bouton_nouveau:': u'\U0001F195', u':bouton_pas_bien:': u'\U0001F196', u':groupe_sanguin_o:': u'\U0001F17E\U0000FE0F', u':bouton_ok:': u'\U0001F197', u':bouton_p:': u'\U0001F17F\U0000FE0F', u':bouton_sos:': u'\U0001F198', u':bouton_vers_le_haut:': u'\U0001F199', u':bouton_vs:': u'\U0001F19A', u':bouton_ici_en_japonais:': u'\U0001F201', u':bouton_frais_de_service_en_japonais:': u'\U0001F202\U0000FE0F', u':bouton_montant_mensuel_en_japonais:': u'\U0001F237\U0000FE0F', u':bouton_pas_gratuit_en_japonais:': u'\U0001F236', u':bouton_réservé_en_japonais:': u'\U0001F22F', u':bouton_bonne_affaire_en_japonais:': u'\U0001F250', u':bouton_réduction_en_japonais:': u'\U0001F239', u':bouton_gratuit_en_japonais:': u'\U0001F21A', u':bouton_interdit_en_japonais:': u'\U0001F232', u':bouton_accepter_en_japonais:': u'\U0001F251', u':bouton_application_en_japonais:': u'\U0001F238', u':bouton_note_pour_réussir_en_japonais:': u'\U0001F234', u':bouton_chambres_disponibles_en_japonais:': u'\U0001F233', u':bouton_félicitations_en_japonais:': u'\U00003297\U0000FE0F', u':bouton_secret_en_japonais:': u'\U00003299\U0000FE0F', u':bouton_ouvert_pour_affaires_en_japonais:': u'\U0001F23A', u':bouton_complet_en_japonais:': u'\U0001F235', u':disque_rouge:': u'\U0001F534', u':disque_orange:': u'\U0001F7E0', u':disque_jaune:': u'\U0001F7E1', u':disque_vert:': u'\U0001F7E2', u':disque_bleu:': u'\U0001F535', u':disque_violet:': u'\U0001F7E3', u':disque_marron:': u'\U0001F7E4', u':disque_noir:': u'\U000026AB', u':disque_blanc:': u'\U000026AA', u':carré_rouge:': u'\U0001F7E5', u':carré_orange:': u'\U0001F7E7', u':carré_jaune:': u'\U0001F7E8', u':carré_vert:': u'\U0001F7E9', u':carré_bleu:': u'\U0001F7E6', u':carré_violet:': u'\U0001F7EA', u':carré_marron:': u'\U0001F7EB', u':grand_carré_noir:': u'\U00002B1B', u':grand_carré_blanc:': u'\U00002B1C', u':carré_moyen_noir:': u'\U000025FC\U0000FE0F', u':carré_moyen_blanc:': u'\U000025FB\U0000FE0F', u':carré_petit_moyen_noir:': u'\U000025FE', u':carré_petit_moyen_blanc:': u'\U000025FD', u':petit_carré_noir:': u'\U000025AA\U0000FE0F', u':petit_carré_blanc:': u'\U000025AB\U0000FE0F', u':grand_losange_orange:': u'\U0001F536', u':grand_losange_bleu:': u'\U0001F537', u':petit_losange_orange:': u'\U0001F538', u':petit_losange_bleu:': u'\U0001F539', u':triangle_rouge_pointant_vers_le_haut:': u'\U0001F53A', u':triangle_rouge_pointant_vers_le_bas:': u'\U0001F53B', u':diamant_avec_un_point:': u'\U0001F4A0', u':bouton_radio:': u'\U0001F518', u':carré_blanc:': u'\U0001F533', u':carré_noir:': u'\U0001F532', u':drapeau_à_damier:': u'\U0001F3C1', u':drapeau_triangulaire:': u'\U0001F6A9', u':drapeaux_croisés:': u'\U0001F38C', u':drapeau_noir:': u'\U0001F3F4', u':drapeau_blanc:': u'\U0001F3F3\U0000FE0F', u':drapeau_arc-en-ciel:': u'\U0001F3F3\U0000FE0F\U0000200D\U0001F308', u':drapeau_transgenre:': u'\U0001F3F3\U0000FE0F\U0000200D\U000026A7\U0000FE0F', u':drapeau_de_pirate:': u'\U0001F3F4\U0000200D\U00002620\U0000FE0F', u':drapeau_île_de_l’ascension:': u'\U0001F1E6\U0001F1E8', u':drapeau_andorre:': u'\U0001F1E6\U0001F1E9', u':drapeau_émirats_arabes_unis:': u'\U0001F1E6\U0001F1EA', u':drapeau_afghanistan:': u'\U0001F1E6\U0001F1EB', u':drapeau_antigua-et-barbuda:': u'\U0001F1E6\U0001F1EC', u':drapeau_anguilla:': u'\U0001F1E6\U0001F1EE', u':drapeau_albanie:': u'\U0001F1E6\U0001F1F1', u':drapeau_arménie:': u'\U0001F1E6\U0001F1F2', u':drapeau_angola:': u'\U0001F1E6\U0001F1F4', u':drapeau_antarctique:': u'\U0001F1E6\U0001F1F6', u':drapeau_argentine:': u'\U0001F1E6\U0001F1F7', u':drapeau_samoa_américaines:': u'\U0001F1E6\U0001F1F8', u':drapeau_autriche:': u'\U0001F1E6\U0001F1F9', u':drapeau_australie:': u'\U0001F1E6\U0001F1FA', u':drapeau_aruba:': u'\U0001F1E6\U0001F1FC', u':drapeau_îles_åland:': u'\U0001F1E6\U0001F1FD', u':drapeau_azerbaïdjan:': u'\U0001F1E6\U0001F1FF', u':drapeau_bosnie-herzégovine:': u'\U0001F1E7\U0001F1E6', u':drapeau_barbade:': u'\U0001F1E7\U0001F1E7', u':drapeau_bangladesh:': u'\U0001F1E7\U0001F1E9', u':drapeau_belgique:': u'\U0001F1E7\U0001F1EA', u':drapeau_burkina_faso:': u'\U0001F1E7\U0001F1EB', u':drapeau_bulgarie:': u'\U0001F1E7\U0001F1EC', u':drapeau_bahreïn:': u'\U0001F1E7\U0001F1ED', u':drapeau_burundi:': u'\U0001F1E7\U0001F1EE', u':drapeau_bénin:': u'\U0001F1E7\U0001F1EF', u':drapeau_saint-barthélemy:': u'\U0001F1E7\U0001F1F1', u':drapeau_bermudes:': u'\U0001F1E7\U0001F1F2', u':drapeau_brunéi_darussalam:': u'\U0001F1E7\U0001F1F3', u':drapeau_bolivie:': u'\U0001F1E7\U0001F1F4', u':drapeau_pays-bas_caribéens:': u'\U0001F1E7\U0001F1F6', u':drapeau_brésil:': u'\U0001F1E7\U0001F1F7', u':drapeau_bahamas:': u'\U0001F1E7\U0001F1F8', u':drapeau_bhoutan:': u'\U0001F1E7\U0001F1F9', u':drapeau_île_bouvet:': u'\U0001F1E7\U0001F1FB', u':drapeau_botswana:': u'\U0001F1E7\U0001F1FC', u':drapeau_biélorussie:': u'\U0001F1E7\U0001F1FE', u':drapeau_belize:': u'\U0001F1E7\U0001F1FF', u':drapeau_canada:': u'\U0001F1E8\U0001F1E6', u':drapeau_îles_cocos:': u'\U0001F1E8\U0001F1E8', u':drapeau_congo-kinshasa:': u'\U0001F1E8\U0001F1E9', u':drapeau_république_centrafricaine:': u'\U0001F1E8\U0001F1EB', u':drapeau_congo-brazzaville:': u'\U0001F1E8\U0001F1EC', u':drapeau_suisse:': u'\U0001F1E8\U0001F1ED', u':drapeau_côte_d’ivoire:': u'\U0001F1E8\U0001F1EE', u':drapeau_îles_cook:': u'\U0001F1E8\U0001F1F0', u':drapeau_chili:': u'\U0001F1E8\U0001F1F1', u':drapeau_cameroun:': u'\U0001F1E8\U0001F1F2', u':drapeau_chine:': u'\U0001F1E8\U0001F1F3', u':drapeau_colombie:': u'\U0001F1E8\U0001F1F4', u':drapeau_île_clipperton:': u'\U0001F1E8\U0001F1F5', u':drapeau_costa_rica:': u'\U0001F1E8\U0001F1F7', u':drapeau_cuba:': u'\U0001F1E8\U0001F1FA', u':drapeau_cap-vert:': u'\U0001F1E8\U0001F1FB', u':drapeau_curaçao:': u'\U0001F1E8\U0001F1FC', u':drapeau_île_christmas:': u'\U0001F1E8\U0001F1FD', u':drapeau_chypre:': u'\U0001F1E8\U0001F1FE', u':drapeau_tchéquie:': u'\U0001F1E8\U0001F1FF', u':drapeau_allemagne:': u'\U0001F1E9\U0001F1EA', u':drapeau_diego_garcia:': u'\U0001F1E9\U0001F1EC', u':drapeau_djibouti:': u'\U0001F1E9\U0001F1EF', u':drapeau_danemark:': u'\U0001F1E9\U0001F1F0', u':drapeau_dominique:': u'\U0001F1E9\U0001F1F2', u':drapeau_république_dominicaine:': u'\U0001F1E9\U0001F1F4', u':drapeau_algérie:': u'\U0001F1E9\U0001F1FF', u':drapeau_ceuta_et_melilla:': u'\U0001F1EA\U0001F1E6', u':drapeau_équateur:': u'\U0001F1EA\U0001F1E8', u':drapeau_estonie:': u'\U0001F1EA\U0001F1EA', u':drapeau_égypte:': u'\U0001F1EA\U0001F1EC', u':drapeau_sahara_occidental:': u'\U0001F1EA\U0001F1ED', u':drapeau_érythrée:': u'\U0001F1EA\U0001F1F7', u':drapeau_espagne:': u'\U0001F1EA\U0001F1F8', u':drapeau_éthiopie:': u'\U0001F1EA\U0001F1F9', u':drapeau_union_européenne:': u'\U0001F1EA\U0001F1FA', u':drapeau_finlande:': u'\U0001F1EB\U0001F1EE', u':drapeau_fidji:': u'\U0001F1EB\U0001F1EF', u':drapeau_îles_malouines:': u'\U0001F1EB\U0001F1F0', u':drapeau_états_fédérés_de_micronésie:': u'\U0001F1EB\U0001F1F2', u':drapeau_îles_féroé:': u'\U0001F1EB\U0001F1F4', u':drapeau_france:': u'\U0001F1EB\U0001F1F7', u':drapeau_gabon:': u'\U0001F1EC\U0001F1E6', u':drapeau_royaume-uni:': u'\U0001F1EC\U0001F1E7', u':drapeau_grenade:': u'\U0001F1EC\U0001F1E9', u':drapeau_géorgie:': u'\U0001F1EC\U0001F1EA', u':drapeau_guyane_française:': u'\U0001F1EC\U0001F1EB', u':drapeau_guernesey:': u'\U0001F1EC\U0001F1EC', u':drapeau_ghana:': u'\U0001F1EC\U0001F1ED', u':drapeau_gibraltar:': u'\U0001F1EC\U0001F1EE', u':drapeau_groenland:': u'\U0001F1EC\U0001F1F1', u':drapeau_gambie:': u'\U0001F1EC\U0001F1F2', u':drapeau_guinée:': u'\U0001F1EC\U0001F1F3', u':drapeau_guadeloupe:': u'\U0001F1EC\U0001F1F5', u':drapeau_guinée_équatoriale:': u'\U0001F1EC\U0001F1F6', u':drapeau_grèce:': u'\U0001F1EC\U0001F1F7', u':drapeau_géorgie_du_sud_et_îles_sandwich_du_sud:': u'\U0001F1EC\U0001F1F8', u':drapeau_guatemala:': u'\U0001F1EC\U0001F1F9', u':drapeau_guam:': u'\U0001F1EC\U0001F1FA', u':drapeau_guinée-bissau:': u'\U0001F1EC\U0001F1FC', u':drapeau_guyana:': u'\U0001F1EC\U0001F1FE', u':drapeau_r.a.s._chinoise_de_hong_kong:': u'\U0001F1ED\U0001F1F0', u':drapeau_îles_heard_et_mcdonald:': u'\U0001F1ED\U0001F1F2', u':drapeau_honduras:': u'\U0001F1ED\U0001F1F3', u':drapeau_croatie:': u'\U0001F1ED\U0001F1F7', u':drapeau_haïti:': u'\U0001F1ED\U0001F1F9', u':drapeau_hongrie:': u'\U0001F1ED\U0001F1FA', u':drapeau_îles_canaries:': u'\U0001F1EE\U0001F1E8', u':drapeau_indonésie:': u'\U0001F1EE\U0001F1E9', u':drapeau_irlande:': u'\U0001F1EE\U0001F1EA', u':drapeau_israël:': u'\U0001F1EE\U0001F1F1', u':drapeau_île_de_man:': u'\U0001F1EE\U0001F1F2', u':drapeau_inde:': u'\U0001F1EE\U0001F1F3', u':drapeau_territoire_britannique_de_l’océan_indien:': u'\U0001F1EE\U0001F1F4', u':drapeau_irak:': u'\U0001F1EE\U0001F1F6', u':drapeau_iran:': u'\U0001F1EE\U0001F1F7', u':drapeau_islande:': u'\U0001F1EE\U0001F1F8', u':drapeau_italie:': u'\U0001F1EE\U0001F1F9', u':drapeau_jersey:': u'\U0001F1EF\U0001F1EA', u':drapeau_jamaïque:': u'\U0001F1EF\U0001F1F2', u':drapeau_jordanie:': u'\U0001F1EF\U0001F1F4', u':drapeau_japon:': u'\U0001F1EF\U0001F1F5', u':drapeau_kenya:': u'\U0001F1F0\U0001F1EA', u':drapeau_kirghizistan:': u'\U0001F1F0\U0001F1EC', u':drapeau_cambodge:': u'\U0001F1F0\U0001F1ED', u':drapeau_kiribati:': u'\U0001F1F0\U0001F1EE', u':drapeau_comores:': u'\U0001F1F0\U0001F1F2', u':drapeau_saint-christophe-et-niévès:': u'\U0001F1F0\U0001F1F3', u':drapeau_corée_du_nord:': u'\U0001F1F0\U0001F1F5', u':drapeau_corée_du_sud:': u'\U0001F1F0\U0001F1F7', u':drapeau_koweït:': u'\U0001F1F0\U0001F1FC', u':drapeau_îles_caïmans:': u'\U0001F1F0\U0001F1FE', u':drapeau_kazakhstan:': u'\U0001F1F0\U0001F1FF', u':drapeau_laos:': u'\U0001F1F1\U0001F1E6', u':drapeau_liban:': u'\U0001F1F1\U0001F1E7', u':drapeau_sainte-lucie:': u'\U0001F1F1\U0001F1E8', u':drapeau_liechtenstein:': u'\U0001F1F1\U0001F1EE', u':drapeau_sri_lanka:': u'\U0001F1F1\U0001F1F0', u':drapeau_libéria:': u'\U0001F1F1\U0001F1F7', u':drapeau_lesotho:': u'\U0001F1F1\U0001F1F8', u':drapeau_lituanie:': u'\U0001F1F1\U0001F1F9', u':drapeau_luxembourg:': u'\U0001F1F1\U0001F1FA', u':drapeau_lettonie:': u'\U0001F1F1\U0001F1FB', u':drapeau_libye:': u'\U0001F1F1\U0001F1FE', u':drapeau_maroc:': u'\U0001F1F2\U0001F1E6', u':drapeau_monaco:': u'\U0001F1F2\U0001F1E8', u':drapeau_moldavie:': u'\U0001F1F2\U0001F1E9', u':drapeau_monténégro:': u'\U0001F1F2\U0001F1EA', u':drapeau_saint-martin:': u'\U0001F1F2\U0001F1EB', u':drapeau_madagascar:': u'\U0001F1F2\U0001F1EC', u':drapeau_îles_marshall:': u'\U0001F1F2\U0001F1ED', u':drapeau_macédoine_du_nord:': u'\U0001F1F2\U0001F1F0', u':drapeau_mali:': u'\U0001F1F2\U0001F1F1', u':drapeau_myanmar_(birmanie):': u'\U0001F1F2\U0001F1F2', u':drapeau_mongolie:': u'\U0001F1F2\U0001F1F3', u':drapeau_r.a.s._chinoise_de_macao:': u'\U0001F1F2\U0001F1F4', u':drapeau_îles_mariannes_du_nord:': u'\U0001F1F2\U0001F1F5', u':drapeau_martinique:': u'\U0001F1F2\U0001F1F6', u':drapeau_mauritanie:': u'\U0001F1F2\U0001F1F7', u':drapeau_montserrat:': u'\U0001F1F2\U0001F1F8', u':drapeau_malte:': u'\U0001F1F2\U0001F1F9', u':drapeau_maurice:': u'\U0001F1F2\U0001F1FA', u':drapeau_maldives:': u'\U0001F1F2\U0001F1FB', u':drapeau_malawi:': u'\U0001F1F2\U0001F1FC', u':drapeau_mexique:': u'\U0001F1F2\U0001F1FD', u':drapeau_malaisie:': u'\U0001F1F2\U0001F1FE', u':drapeau_mozambique:': u'\U0001F1F2\U0001F1FF', u':drapeau_namibie:': u'\U0001F1F3\U0001F1E6', u':drapeau_nouvelle-calédonie:': u'\U0001F1F3\U0001F1E8', u':drapeau_niger:': u'\U0001F1F3\U0001F1EA', u':drapeau_île_norfolk:': u'\U0001F1F3\U0001F1EB', u':drapeau_nigéria:': u'\U0001F1F3\U0001F1EC', u':drapeau_nicaragua:': u'\U0001F1F3\U0001F1EE', u':drapeau_pays-bas:': u'\U0001F1F3\U0001F1F1', u':drapeau_norvège:': u'\U0001F1F3\U0001F1F4', u':drapeau_népal:': u'\U0001F1F3\U0001F1F5', u':drapeau_nauru:': u'\U0001F1F3\U0001F1F7', u':drapeau_niue:': u'\U0001F1F3\U0001F1FA', u':drapeau_nouvelle-zélande:': u'\U0001F1F3\U0001F1FF', u':drapeau_oman:': u'\U0001F1F4\U0001F1F2', u':drapeau_panama:': u'\U0001F1F5\U0001F1E6', u':drapeau_pérou:': u'\U0001F1F5\U0001F1EA', u':drapeau_polynésie_française:': u'\U0001F1F5\U0001F1EB', u':drapeau_papouasie-nouvelle-guinée:': u'\U0001F1F5\U0001F1EC', u':drapeau_philippines:': u'\U0001F1F5\U0001F1ED', u':drapeau_pakistan:': u'\U0001F1F5\U0001F1F0', u':drapeau_pologne:': u'\U0001F1F5\U0001F1F1', u':drapeau_saint-pierre-et-miquelon:': u'\U0001F1F5\U0001F1F2', u':drapeau_îles_pitcairn:': u'\U0001F1F5\U0001F1F3', u':drapeau_porto_rico:': u'\U0001F1F5\U0001F1F7', u':drapeau_territoires_palestiniens:': u'\U0001F1F5\U0001F1F8', u':drapeau_portugal:': u'\U0001F1F5\U0001F1F9', u':drapeau_palaos:': u'\U0001F1F5\U0001F1FC', u':drapeau_paraguay:': u'\U0001F1F5\U0001F1FE', u':drapeau_qatar:': u'\U0001F1F6\U0001F1E6', u':drapeau_la_réunion:': u'\U0001F1F7\U0001F1EA', u':drapeau_roumanie:': u'\U0001F1F7\U0001F1F4', u':drapeau_serbie:': u'\U0001F1F7\U0001F1F8', u':drapeau_russie:': u'\U0001F1F7\U0001F1FA', u':drapeau_rwanda:': u'\U0001F1F7\U0001F1FC', u':drapeau_arabie_saoudite:': u'\U0001F1F8\U0001F1E6', u':drapeau_îles_salomon:': u'\U0001F1F8\U0001F1E7', u':drapeau_seychelles:': u'\U0001F1F8\U0001F1E8', u':drapeau_soudan:': u'\U0001F1F8\U0001F1E9', u':drapeau_suède:': u'\U0001F1F8\U0001F1EA', u':drapeau_singapour:': u'\U0001F1F8\U0001F1EC', u':drapeau_sainte-hélène:': u'\U0001F1F8\U0001F1ED', u':drapeau_slovénie:': u'\U0001F1F8\U0001F1EE', u':drapeau_svalbard_et_jan_mayen:': u'\U0001F1F8\U0001F1EF', u':drapeau_slovaquie:': u'\U0001F1F8\U0001F1F0', u':drapeau_sierra_leone:': u'\U0001F1F8\U0001F1F1', u':drapeau_saint-marin:': u'\U0001F1F8\U0001F1F2', u':drapeau_sénégal:': u'\U0001F1F8\U0001F1F3', u':drapeau_somalie:': u'\U0001F1F8\U0001F1F4', u':drapeau_suriname:': u'\U0001F1F8\U0001F1F7', u':drapeau_soudan_du_sud:': u'\U0001F1F8\U0001F1F8', u':drapeau_sao_tomé-et-principe:': u'\U0001F1F8\U0001F1F9', u':drapeau_salvador:': u'\U0001F1F8\U0001F1FB', u':drapeau_saint-martin_(partie_néerlandaise):': u'\U0001F1F8\U0001F1FD', u':drapeau_syrie:': u'\U0001F1F8\U0001F1FE', u':drapeau_eswatini:': u'\U0001F1F8\U0001F1FF', u':drapeau_tristan_da_cunha:': u'\U0001F1F9\U0001F1E6', u':drapeau_îles_turques-et-caïques:': u'\U0001F1F9\U0001F1E8', u':drapeau_tchad:': u'\U0001F1F9\U0001F1E9', u':drapeau_terres_australes_françaises:': u'\U0001F1F9\U0001F1EB', u':drapeau_togo:': u'\U0001F1F9\U0001F1EC', u':drapeau_thaïlande:': u'\U0001F1F9\U0001F1ED', u':drapeau_tadjikistan:': u'\U0001F1F9\U0001F1EF', u':drapeau_tokelau:': u'\U0001F1F9\U0001F1F0', u':drapeau_timor_oriental:': u'\U0001F1F9\U0001F1F1', u':drapeau_turkménistan:': u'\U0001F1F9\U0001F1F2', u':drapeau_tunisie:': u'\U0001F1F9\U0001F1F3', u':drapeau_tonga:': u'\U0001F1F9\U0001F1F4', u':drapeau_turquie:': u'\U0001F1F9\U0001F1F7', u':drapeau_trinité-et-tobago:': u'\U0001F1F9\U0001F1F9', u':drapeau_tuvalu:': u'\U0001F1F9\U0001F1FB', u':drapeau_taïwan:': u'\U0001F1F9\U0001F1FC', u':drapeau_tanzanie:': u'\U0001F1F9\U0001F1FF', u':drapeau_ukraine:': u'\U0001F1FA\U0001F1E6', u':drapeau_ouganda:': u'\U0001F1FA\U0001F1EC', u':drapeau_îles_mineures_éloignées_des_états-unis:': u'\U0001F1FA\U0001F1F2', u':drapeau_nations_unies:': u'\U0001F1FA\U0001F1F3', u':drapeau_états-unis:': u'\U0001F1FA\U0001F1F8', u':drapeau_uruguay:': u'\U0001F1FA\U0001F1FE', u':drapeau_ouzbékistan:': u'\U0001F1FA\U0001F1FF', u':drapeau_état_de_la_cité_du_vatican:': u'\U0001F1FB\U0001F1E6', u':drapeau_saint-vincent-et-les-grenadines:': u'\U0001F1FB\U0001F1E8', u':drapeau_venezuela:': u'\U0001F1FB\U0001F1EA', u':drapeau_îles_vierges_britanniques:': u'\U0001F1FB\U0001F1EC', u':drapeau_îles_vierges_des_états-unis:': u'\U0001F1FB\U0001F1EE', u':drapeau_vietnam:': u'\U0001F1FB\U0001F1F3', u':drapeau_vanuatu:': u'\U0001F1FB\U0001F1FA', u':drapeau_wallis-et-futuna:': u'\U0001F1FC\U0001F1EB', u':drapeau_samoa:': u'\U0001F1FC\U0001F1F8', u':drapeau_kosovo:': u'\U0001F1FD\U0001F1F0', u':drapeau_yémen:': u'\U0001F1FE\U0001F1EA', u':drapeau_mayotte:': u'\U0001F1FE\U0001F1F9', u':drapeau_afrique_du_sud:': u'\U0001F1FF\U0001F1E6', u':drapeau_zambie:': u'\U0001F1FF\U0001F1F2', u':drapeau_zimbabwe:': u'\U0001F1FF\U0001F1FC', u':drapeau_angleterre:': u'\U0001F3F4\U000E0067\U000E0062\U000E0065\U000E006E\U000E0067\U000E007F', u':drapeau_écosse:': u'\U0001F3F4\U000E0067\U000E0062\U000E0073\U000E0063\U000E0074\U000E007F', u':drapeau_pays_de_galles:': u'\U0001F3F4\U000E0067\U000E0062\U000E0077\U000E006C\U000E0073\U000E007F', } UNICODE_EMOJI_FRENCH = {v: k for k, v in EMOJI_UNICODE_FRENCH.items()}
# Python 3.6.1 with open("input.txt", "r") as f: puzzle_input = [] for line in f: puzzle_input.append(line.strip().split(" ")) total = 0 for phrase in puzzle_input: bad = False for word in phrase: if phrase.count(word) > 1: bad = True break if not bad: total += 1 print(total)
def Select_sort1(): A = [-9, -8, 640, 25, 12, 22, 33, 23, 45, 11, -2, -5, 99, 0] for i in range(len(A)): minimum = i for j in range(i+1, len(A)): if A[minimum] > A[j]: minimum = j A[i], A[minimum] = A[minimum], A[i] print("After sort:") print(A) def Select_sort2(): A = [-9, -8, 640, 25, 12, 22, 33, 23, 45, 11, -2, -5, 99, 0] counter = 0 array = [] for i in A: counter += 1 for j in A[counter:]: if i > j: i = j A.remove(i) A.insert(counter-1, i) array.append(i) print("After sort:") print(A) Select_sort1() Select_sort2()
class Formatter: """ Inherit this class and override format function """ def format(self, text: str): """Override this function in inherited subclass. return text after formatting""" return text @property def name(self): return self.__class__.__name__ @classmethod def get_all(cls): """ returns all subclasses inherited from Formatter >>> formatters = Formatter.get_all() >>> Extractor.from_yaml_file('a.yaml', formatters=formatters) """ return cls.__subclasses__() class Integer(Formatter): def format(self, text): return int(text) class Decimal(Formatter): def format(self, text): return float(text)
""" Documentation, License etc. @package X-EDEN Toolchain generation """
tempF = input('Informe a temperatura em graus Fahrenheit ') c = float(tempF) -32 c = c * 5 / 9 print(f'A temperatura em graus Celsius é {c}ºC')
""" CRM system task: display a user record in the following format: 'John Smith (California)'. However, if you don't have a location in your system, you want just to see "John Smith." """ def format_customer(first, last, location=None): full_name = '%s %s' % (first, last) if location: return '%s (%s)' % (full_name, location) else: return full_name
emails = sorted(set([line.strip() for line in open("email_domains.txt")])) for email in emails: print("'{email}',".format(email=email))
class ResourceMixin(object): def check_user(self, role=None, id=None, User_class=None): if not User_class.check_role(id): return { "msg": "Sie haben nicht die nötigen Rechte." }, 403 def save_or_except(self, obj_instance): try: obj_instance.save() return { "msg": "Das Speichern war erfolgreich." }, 200 except: return { "msg": "Etwas ist beim Speichern schief gelaufen." }, 500
for _ in range(int(input())): string = input() new_str= "" new_str += string[0] for i in range(1, len(string)): if string[i] == "L": on = string[i-1] elif string[i] == "R": on = string[i+1] else: on = string[i] new_str += on print(new_str)
# https://www.hackerrank.com/challenges/any-or-all/problem def is_palindrome(number): return number == number[::-1] N = int(input()) array = list(input().split()) print( all(int(element) >= 0 for element in array) and any(is_palindrome(element) for element in array) )
# Question Link : https://leetcode.com/explore/challenge/card/january-leetcoding-challenge-2021/579/week-1-january-1st-january-7th/3594/ # Level : Medium # Solution Right Below :- class Solution(object): def findKthPositive(self, arr, k): """ :type arr: List[int] :type k: int :rtype: int """ i = len(arr)-1 while i>=0 and (arr[i]-1)-(i)-k>=0: i-=1 tn = k-(arr[i]-1-i) return arr[i]+tn
""" In-place quicksort implementation """ def quicksort(lst, b=0, e=None): if e == None: e = len(lst) - 1 p = e i = b while i < p: if lst[p] < lst[i]: # bring lst[i] after lst[p] through two swaps lst[i], lst[p - 1] = lst[p - 1], lst[i] lst[p - 1], lst[p] = lst[p], lst[p - 1] p = p - 1 else: i += 1 if p > b + 1: quicksort(lst, b, p - 1) if p < e - 1: quicksort(lst, p + 1, e) return lst test = [21, 4, 1, 3, 9, 20, 25, 6, 21, 14] quicksort(test) print(test)
def flownet_v1_s(input): pass
prime = [2,3] i = 4 while len(prime)<10001: s = True for j in prime: if i%j == 0: s = False break if s: prime.append(i) i = i + 1 print(prime[-1])
def rotation_string(str): l = [] #str = "" for i in str: l.append(i) #print(l) for j in range(len(l) // 2): a = l[j] b = l[-(j+1)] l[j] = b l[-(j+1)] = a return l
# Refazer o exercício 35 dos triângulos. # Mostarndo desta vez se o triângulo é: # 1) Equilátero: Todos os lados iguais # 2) Isósceles: Dois lados iguais # 3) Escaleno: Todos os lados diferentes print('=-=' * 20) print('ANALISADOR DE TEXTO') print('=-=' * 20) r1 = float(input('Digite o 1° valor: ')) r2 = float(input('Digite o 2° valor: ')) r3 = float(input('Digite o 3° valor: ')) if r1 < r2 + r3 and r2 < r1 + r3 and r3 < r1 + r2: print('Os valores podem formar um triângulo.') if r1 == r2 == r3: print('Este triângulo é equilátero.') elif r1 != r2 != r3 != r1: print('Este triângulo é escaleno.') else: print('Este triângulo é isósceles.') else: print('Os valores não podem formar um triângulo.') print('=-=' * 20) print('ANALISADOR DE TEXTO') print('=-=' * 20)
def descending(x,n): t=0 # by selection sorting for i in range(0,n-1,1): for j in range(i+1,n,1): if x[i]<x[j]: t=x[i] x[i]=x[j] x[j]=t return (x) # To sort a list in descending order print("This programme sorts a list in descending order : ") n=int(input("Enter the number of elements in the list : ")) x=[(i*0) for i in range(0,n,1)] for i in range(0,n,1): x[i]=int(input()) x=descending(x,n) print("The list in descending order is : ") for i in range(0,n,1): print(x[i],end=" ")
config = {'MAX_BOUND':512.0, 'MIN_BOUND':-1024.0, 'PIXEL_MEAN':0.25, 'NORM_CROP':True }
# -*- coding: iso-8859-15 -*- class Conjugator(): # Present Conjugations # Past Conjugations def conjugate(self,root_verb,tense,mood,pronoun): tense = tense.lower() mood = mood.lower() pronoun = pronoun.lower() if tense == "imperfect": if mood == "imperitive": if pronoun == "yo": if root_verb[-2:] == "ar": conjugation = root_verb[:-2] + "aba" return conjugation if root_verb[-2:] == "er" or "ir": conjugation = root_verb[:-2] + "ía" return conjugation return conjugation # Future Conjugations # Example test to run -- later to be turned into unit tests #conjugator = Spanish_conjugator() print(Conjugator().conjugate('hablar','imperfect','imperitive','yo')) print(Conjugator().conjugate('charlar','imperfect','imperitive','yo'))
# # PySNMP MIB module ELTEX-ULD-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ELTEX-ULD-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 18:48:10 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueRangeConstraint, ConstraintsIntersection, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsIntersection", "ConstraintsUnion", "ValueSizeConstraint") eltexLtd, = mibBuilder.importSymbols("ELTEX-SMI-ACTUAL", "eltexLtd") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") NotificationType, Unsigned32, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, ModuleIdentity, Integer32, Counter64, TimeTicks, MibIdentifier, Bits, iso, Counter32, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Unsigned32", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "ModuleIdentity", "Integer32", "Counter64", "TimeTicks", "MibIdentifier", "Bits", "iso", "Counter32", "Gauge32") DisplayString, TruthValue, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "TextualConvention") eltexULDMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 35265, 34)) if mibBuilder.loadTexts: eltexULDMIB.setLastUpdated('201301280000Z') if mibBuilder.loadTexts: eltexULDMIB.setOrganization('Eltex Ltd.') eltexULDNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 34, 0)) eltexULDMgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 34, 1)) eltexULDTable = MibTable((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1), ) if mibBuilder.loadTexts: eltexULDTable.setStatus('current') eltexULDEntry = MibTableRow((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: eltexULDEntry.setStatus('current') eltexULDAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: eltexULDAdminState.setStatus('current') eltexULDOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: eltexULDOperStatus.setStatus('current') eltexULDMode = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("log", 1), ("err-disable", 2))).clone('log')).setMaxAccess("readwrite") if mibBuilder.loadTexts: eltexULDMode.setStatus('current') eltexULDDiscoveryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 300)).clone(5)).setMaxAccess("readwrite") if mibBuilder.loadTexts: eltexULDDiscoveryTime.setStatus('current') eltexULDIsAggressive = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1, 5), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: eltexULDIsAggressive.setStatus('current') eltexULDLinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 34, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 1), ("unidirectional", 2), ("bidirectional", 3), ("tx-rx-loop", 4), ("neighbor-mismatch", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: eltexULDLinkStatus.setStatus('current') eltexULDLinkStatusChanged = NotificationType((1, 3, 6, 1, 4, 1, 35265, 34, 0, 1)).setObjects(("IF-MIB", "ifIndex"), ("ELTEX-ULD-MIB", "eltexULDLinkStatus")) if mibBuilder.loadTexts: eltexULDLinkStatusChanged.setStatus('current') mibBuilder.exportSymbols("ELTEX-ULD-MIB", eltexULDNotifications=eltexULDNotifications, eltexULDLinkStatus=eltexULDLinkStatus, eltexULDOperStatus=eltexULDOperStatus, eltexULDAdminState=eltexULDAdminState, eltexULDMgmt=eltexULDMgmt, eltexULDIsAggressive=eltexULDIsAggressive, PYSNMP_MODULE_ID=eltexULDMIB, eltexULDDiscoveryTime=eltexULDDiscoveryTime, eltexULDMIB=eltexULDMIB, eltexULDEntry=eltexULDEntry, eltexULDMode=eltexULDMode, eltexULDLinkStatusChanged=eltexULDLinkStatusChanged, eltexULDTable=eltexULDTable)
word = input('Digite uma palavra para testar ou exit para sair: ').lower().strip() while (word != 'exit'): index = len(word) -1 contrario = word numero = 0 for c in range(0, index+1, 1): if contrario[c] == word[index - c]: numero += 1 if numero == len(word): print('A palavra é um palindromo') else: print('A palavra digitada nao é um palindromo') word = input('Digite uma palavra para testar ou exit para sair ').lower().strip()
n = int(input('Enter a Value for N:\n')) count = 1 while count <= n: v1 = count v2 = count + 1 if count +2 < n: v3 = count + 2 else: v3 = ' ' print(f'{v1} {v2} {v3}') count += 3
# encoding: utf-8 # module RevitServices.Transactions calls itself Transactions # from RevitServices, Version=1.2.1.3083, Culture=neutral, PublicKeyToken=null # by generator 1.145 # no doc # no imports # no functions # classes class AutomaticTransactionStrategy(object, ITransactionStrategy): """ AutomaticTransactionStrategy() """ def EnsureInTransaction(self, wrapper, document): """ EnsureInTransaction(self: AutomaticTransactionStrategy, wrapper: TransactionWrapper, document: Document) -> TransactionHandle """ pass def ForceCloseTransaction(self, handle): """ ForceCloseTransaction(self: AutomaticTransactionStrategy, handle: TransactionHandle) """ pass def TransactionTaskDone(self, handle): """ TransactionTaskDone(self: AutomaticTransactionStrategy, handle: TransactionHandle) """ pass def __init__(self, *args): # cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): # cannot find CLR method """ __repr__(self: object) -> str """ pass class DebugTransactionStrategy(object, ITransactionStrategy): """ DebugTransactionStrategy() """ def EnsureInTransaction(self, wrapper, document): """ EnsureInTransaction(self: DebugTransactionStrategy, wrapper: TransactionWrapper, document: Document) -> TransactionHandle """ pass def ForceCloseTransaction(self, handle): """ ForceCloseTransaction(self: DebugTransactionStrategy, handle: TransactionHandle) """ pass def TransactionTaskDone(self, handle): """ TransactionTaskDone(self: DebugTransactionStrategy, handle: TransactionHandle) """ pass def __init__(self, *args): # cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): # cannot find CLR method """ __repr__(self: object) -> str """ pass class FailureDelegate(MulticastDelegate, ICloneable, ISerializable): """ FailureDelegate(object: object, method: IntPtr) """ def BeginInvoke(self, failures, callback, object): """ BeginInvoke(self: FailureDelegate, failures: FailuresAccessor, callback: AsyncCallback, object: object) -> IAsyncResult """ pass def CombineImpl(self, *args): # cannot find CLR method """ CombineImpl(self: MulticastDelegate, follow: Delegate) -> Delegate Combines this System.Delegate with the specified System.Delegate to form a new delegate. follow: The delegate to combine with this delegate. Returns: A delegate that is the new root of the System.MulticastDelegate invocation list. """ pass def DynamicInvokeImpl(self, *args): # cannot find CLR method """ DynamicInvokeImpl(self: Delegate, args: Array[object]) -> object Dynamically invokes (late-bound) the method represented by the current delegate. args: An array of objects that are the arguments to pass to the method represented by the current delegate.-or- null, if the method represented by the current delegate does not require arguments. Returns: The object returned by the method represented by the delegate. """ pass def EndInvoke(self, result): """ EndInvoke(self: FailureDelegate, result: IAsyncResult) """ pass def GetMethodImpl(self, *args): # cannot find CLR method """ GetMethodImpl(self: MulticastDelegate) -> MethodInfo Returns a static method represented by the current System.MulticastDelegate. Returns: A static method represented by the current System.MulticastDelegate. """ pass def Invoke(self, failures): """ Invoke(self: FailureDelegate, failures: FailuresAccessor) """ pass def RemoveImpl(self, *args): # cannot find CLR method """ RemoveImpl(self: MulticastDelegate, value: Delegate) -> Delegate Removes an element from the invocation list of this System.MulticastDelegate that is equal to the specified delegate. value: The delegate to search for in the invocation list. Returns: If value is found in the invocation list for this instance, then a new System.Delegate without value in its invocation list; otherwise, this instance with its original invocation list. """ pass def __init__(self, *args): # cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, object, method): """ __new__(cls: type, object: object, method: IntPtr) """ pass def __reduce_ex__(self, *args): # cannot find CLR method pass class ITransactionStrategy: # no doc def EnsureInTransaction(self, wrapper, document): """ EnsureInTransaction(self: ITransactionStrategy, wrapper: TransactionWrapper, document: Document) -> TransactionHandle """ pass def ForceCloseTransaction(self, handle): """ ForceCloseTransaction(self: ITransactionStrategy, handle: TransactionHandle) """ pass def TransactionTaskDone(self, handle): """ TransactionTaskDone(self: ITransactionStrategy, handle: TransactionHandle) """ pass def __init__(self, *args): # cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass class TransactionHandle(object): # no doc def CancelTransaction(self): """ CancelTransaction(self: TransactionHandle) -> TransactionStatus """ pass def CommitTransaction(self): """ CommitTransaction(self: TransactionHandle) -> TransactionStatus """ pass Status = property( lambda self: object(), lambda self, v: None, lambda self: None ) # default """Get: Status(self: TransactionHandle) -> TransactionStatus """ class TransactionManager(object): # no doc def EnsureInTransaction(self, document): """ EnsureInTransaction(self: TransactionManager, document: Document) """ pass def ForceCloseTransaction(self): """ ForceCloseTransaction(self: TransactionManager) """ pass @staticmethod def SetupManager(strategy=None): """ SetupManager(strategy: ITransactionStrategy)SetupManager() """ pass def TransactionTaskDone(self): """ TransactionTaskDone(self: TransactionManager) """ pass DoAssertInIdleThread = property( lambda self: object(), lambda self, v: None, lambda self: None ) # default """Get: DoAssertInIdleThread(self: TransactionManager) -> bool Set: DoAssertInIdleThread(self: TransactionManager) = value """ Strategy = property( lambda self: object(), lambda self, v: None, lambda self: None ) # default """Get: Strategy(self: TransactionManager) -> ITransactionStrategy Set: Strategy(self: TransactionManager) = value """ TransactionWrapper = property( lambda self: object(), lambda self, v: None, lambda self: None ) # default """Get: TransactionWrapper(self: TransactionManager) -> TransactionWrapper """ OnLog = None class TransactionWrapper(object): # no doc def StartTransaction(self, document): """ StartTransaction(self: TransactionWrapper, document: Document) -> TransactionHandle """ pass TransactionActive = property( lambda self: object(), lambda self, v: None, lambda self: None ) # default """Get: TransactionActive(self: TransactionWrapper) -> bool """ FailuresRaised = None TransactionCancelled = None TransactionCommitted = None TransactionName = "Dynamo-51297CB5 Script" TransactionStarted = None
# https://www.codewars.com/kata/578553c3a1b8d5c40300037c/python # Given an array of ones and zeroes, convert the equivalent binary value to an integer. # Eg: [0, 0, 0, 1] is treated as 0001 which is the binary representation of 1. # Examples: # Testing: [0, 0, 0, 1] ==> 1 # Testing: [0, 0, 1, 0] ==> 2 # Testing: [0, 1, 0, 1] ==> 5 # Testing: [1, 0, 0, 1] ==> 9 # Testing: [0, 0, 1, 0] ==> 2 # Testing: [0, 1, 1, 0] ==> 6 # Testing: [1, 1, 1, 1] ==> 15 # Testing: [1, 0, 1, 1] ==> 11 def binary_array_to_number(arr): binary = ''.join(map(str,arr)) return int(binary, 2) print(binary_array_to_number([1, 0, 0, 0, 1]))
OCTICON_COMMENT_DISCUSSION = """ <svg class="octicon octicon-discussion" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M1.5 2.75a.25.25 0 01.25-.25h8.5a.25.25 0 01.25.25v5.5a.25.25 0 01-.25.25h-3.5a.75.75 0 00-.53.22L3.5 11.44V9.25a.75.75 0 00-.75-.75h-1a.25.25 0 01-.25-.25v-5.5zM1.75 1A1.75 1.75 0 000 2.75v5.5C0 9.216.784 10 1.75 10H2v1.543a1.457 1.457 0 002.487 1.03L7.061 10h3.189A1.75 1.75 0 0012 8.25v-5.5A1.75 1.75 0 0010.25 1h-8.5zM14.5 4.75a.25.25 0 00-.25-.25h-.5a.75.75 0 110-1.5h.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0114.25 12H14v1.543a1.457 1.457 0 01-2.487 1.03L9.22 12.28a.75.75 0 111.06-1.06l2.22 2.22v-2.19a.75.75 0 01.75-.75h1a.25.25 0 00.25-.25v-5.5z"></path></svg> """
# Interactive Help help() # Alternative Interactive Help print(input.__doc__) # Docstrings def count(s,e,i): """ It's a counter that show in the touch: s is the start of count; e is the end of count; i is the time's interval. no exist return by @e.mmmorais """ c = s while c <= e: print(f"{c}", end=" ") c += i print("END ") help(count) # Optional Parameters def nsum(x = 0,y = 0,z = 0): s = x + y + z print(f"The sum of the values is: {s}") nsum(1,2,3) nsum(1,2) nsum(2,3) nsum(1,3) nsum() print("-=" * 18) # Scope of variables: global scope def test(): x = int(input("Type a value: ")) print(f"In the function, the value receab {x}") v = int(input("Type a value: ")) print(f"In the program, the value receab {v}") # Scope of variables: local scope test() print("-=" * 18) # Scope of variables: global and local scope def test2(): a = int(input("Type a value: ")) print(f"In the function, a receab {a}") a = int(input("Type a value: ")) test2() print(f"In the program, a receab {a}") print("-=" * 18) # Scope of variables: treating two variables as global def test3(): global y y = 8 print(f"In the function, y receab {y}") y = 5 test3() print(f"In the program, y receab {y}") print("-=" * 18) # Return values def nsum2(x = 0,y = 0,z = 0): s = x + y + z return s s1 = nsum2(1,2,3) s2 = nsum2(1,2) s3 = nsum2(2,3) s4 = nsum2(1,3) s5 = nsum2() print(f"The obtained results were: {s1}, {s2}, {s3}, {s4} and {s5}") print("-=" * 18) # Practice: factorial of a number def fact(numb = 0): f = 1 for c in range(numb, 0, -1): f *= c return f n = int(input("Type a whole number: ")) factorial = fact(n) print(f"The factorial of {n} is {factorial}") print("-=" * 18) f1 = fact(5) f2 = fact(3) f3 = fact() print(f"The obtained results were: {f1}, {f2} and {f3}") # Practice 2: even or odd def eo(number = 0): if number % 2 == 0: return True else: return False number = int(input("Type a whole number: ")) if eo(number) == True: print("It's even") else: print("It's odd")
def gap_sort(x): gap = len(x) swap= True while gap > 1 or swap: gap = max(1, int(gap / 1.3)) swap= False for i in range(len(x) - gap): j = i+gap if x[i] > x[j]: x[i], x[j] = x[j], x[i] swap= True lst = [3,6,4,8,9,0,6,5,2,10,1] print("Unsorted: ", lst) gap_sort(lst) print("Sorted: ", lst)
#!/usr/bin/env python # -*- coding: utf-8 -*- modelChemistry = "CBS-QB3" useHinderedRotors = True useBondCorrections = False species('CH2CHOOH', 'CH2CHOOH.py') statmech('CH2CHOOH') thermo('CH2CHOOH', 'Wilhoit')
#: Module purely exists to test patching things. thing = True it = lambda: False def get_thing(): global thing return thing def get_it(): global it return it
class Invitation(): def __init__(self, row): LANG, MAIL, NAME, SENDER, FIELD, ONE_SEN, DATE, DESC, DONE, ETC = range(10) self.lang = row[LANG] self.mail = row[MAIL] self.name = row[NAME] self.sender = row[SENDER] self.field = row[FIELD] self.one_sen = row[ONE_SEN] self.date = row[DATE] self.desc = row[DESC] self.done = row[DONE] == 'O' self.etc = row[ETC] def is_eng(self): return self.lang == '영' def finalResonance(self, name): last_char = list(name).pop() chk = (ord(last_char) - ord('가')) % 28 return bool(chk) def postposition_yi(self, chk): if chk: return '이' else: return '' def postposition_leul(self, chk): if chk: return '을' else: return '를' def __str__(self): return "{:30} {}".format(self.name, self.mail)
_URL = "https://www.jetbrains.com/intellij-repository/releases/com/jetbrains/intellij/idea/ideaIU/{version}/ideaIU-{version}.zip" _BUILD_FILE = """ load("@rules_java//java:defs.bzl", "java_import") java_import( name = "idea", jars = [ "lib/extensions.jar", "lib/jdom.jar", "lib/guava-28.2-jre.jar", "lib/platform-api.jar", "lib/platform-impl.jar", "lib/openapi.jar", "lib/testFramework.jar", "lib/trove4j.jar", "lib/util.jar", ], visibility = ["//visibility:public"], ) """ def _intellij_respository_impl(repo_ctx): repo_ctx.download_and_extract( url = _URL.format(version = repo_ctx.attr.version), sha256 = repo_ctx.attr.sha256, type = "zip", output = ".", ) repo_ctx.file("BUILD.bazel", _BUILD_FILE) intellij_core_repository = repository_rule( implementation = _intellij_respository_impl, attrs = { "version": attr.string(mandatory = True, doc = "Intellij version."), "sha256": attr.string(mandatory = True, doc = "Intellij arcive sha"), }, )
li=[] n=int(input("Enter Number of Elements in List")) print("Enter Numbers") for i in range(n): ele=int(input()) li.append(ele) l1=[] for i in li: l1.insert(len(l1)-1,i) print(l1)
phone_book = dict() enough = False while True: if enough: break command = input() if command == 'stop': break elif command == 'search': while True: person = input() if person == 'stop': enough = True break if person not in phone_book: print(f'Contact {person} does not exist.') else: print(f'{person} -> {phone_book[person]}') else: name, number = command.split('-') if name not in phone_book: phone_book[name] = '' phone_book[name] = number
def clean_col(col): """ This function cleans the column names and add the year information """ if col == 'Unnamed: 0': # Special case for contry column return 'Country' elif col[0] == 'U': # Take care for the annual summary column return 'Total, {}'.format(str(int(col.split(':')[1])//17 + 2014)) elif (len(col.split('.')) == 1) & (col[0] != 'U'): return col + ', 2015' elif col.split('.')[1] == '1': return col.split('.')[0]+', 2016' elif col.split('.')[1] == '2': return col.split('.')[0]+', 2017' elif col.split('.')[1] == '3': return col.split('.')[0]+', 2018' elif col.split('.')[1] == '4': return col.split('.')[0]+', 2019' elif col.split('.')[1] == '5': return col.split('.')[0]+', 2020'
"""The `models` module contains routines for updating the *parameters.json* file of the ILAMB component in PBS. """ model_template = { "group": { "name": "pbs_models_group", "members": 1, "leader": False }, "name": "{model_name}", "global": False, "value": { "default": "Off", "type": "choice", "choices": [ "On", "Off" ] }, "visible": True, "key": "_model_{model_name}", "description": "{model_name}" } def get_name(pbs_file): """ Extract the model name from a `CMIP5-compatible file name <https://cmip.llnl.gov/cmip5/output_req.html>`_. Parameters ---------- pbs_file : str A filename that obeys the CMIP5 standard. Returns ------- str The name of the model. """ parts = pbs_file.split('_') name = parts[2] return name def is_key_in_pbs_group(parameters, key): """ Determine whether a model is listed in the PBS models group. Parameters ---------- parameters : dict The contents of the ILAMB `parameters.json` file. key : str The value of the `key` attribute of a WMT parameter. Returns ------- bool True if the model is in the PBS models group. """ for param in parameters: if 'group' in param.keys(): if param['group']['name'] == 'pbs_models_group': if param['key'] == key: return True return False def update_parameters(parameters, models): """ Adds model names to the PBS group in the set of ILAMB parameters. Parameters ---------- parameters : list The contents of the ILAMB `parameters.json` file. models : list A list of model names whose output has been uploaded into the PBS. Notes ----- The parameters list is updated by reference. """ for index, param in enumerate(parameters): if param['key'] == '_pbs_models': pbs_group_header = param pbs_group_index = index for model in models: key = '_model_{model}'.format(model=model) if not is_key_in_pbs_group(parameters, key): entry = model_template.copy() entry['key'] = key entry['name'] = model entry['description'] = model pbs_group_header['group']['members'] += 1 pbs_group_index += 1 parameters.insert(pbs_group_index, entry)
#In this program we will enter a number and get its factors as the output in a list format. num = int(input("Enter number: ")) def factors(n): flist = [] for i in range(1,n+1): if n%i == 0: flist.append(i) return flist print(factors(num))
class initial(): def solution(self, nums): prefix = [1] * len(nums) suffix = [1] * len(nums) for i in range(1, len(nums)): prefix[i] = prefix[i-1] * nums[i-1] for j in range(len(nums)-2, -1, -1): suffix[j] = suffix[j+1] * nums[j+1] return [prefix[i] * suffix[i] for i in range(len(nums))] # https://leetcode.com/problems/product-of-array-except-self/ # Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i]. # The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer. # You must write an algorithm that runs in O(n) time and without using the division operation. # Score Card # Did I need hints # Did you finish within 30 min # Finished in 20 min # Was the solution optimal # The solution is optimal for time but not space # Were there any bugs # I forgot to correctly multiply the first nums by i-1 so that result wasn't quite right and wasted 4 min # test case 1 nums = [1, 2, 3, 4] # output = [24,12,8,6] sol = initial() print(sol.solution(nums)) # This could be improved to o(1) space if we convert either suffix or prefix to be the nums array and then dynamically solving the other on the fly # 4 5 3 3 = 3.75
def parse(filename: str) -> list[int]: with open(filename) as file: line = file.read() return list(map(int, line.split(','))) def solve(fishes: list[int], days: int) -> int: for _ in range(days): for i in range(len(fishes)): fishes[i] -= 1 if fishes[i] < 0: fishes[i] = 6 fishes.append(8) return len(fishes) def main(): input = parse('data/day6.txt') result = solve(input, 80) print(result) if __name__ == '__main__': main()
#leia o tamanho do lado de um quadrado e #imprima como resultado a area. lado=float(input("Informe o lado do quadrado: ")) area=lado*lado print(f"A area do quadrado eh {area}")
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def diameterOfBinaryTree(self, root: Optional[TreeNode]) -> int: maxi = 0 def dfs( node ): nonlocal maxi if node is None: return -1 left = dfs( node.left ) + 1 right = dfs( node.right ) + 1 cur_sum = left + right maxi = max( cur_sum, maxi ) return max( left, right ) dfs( root ) return maxi
# faça um programa que calcule a soma entre todos os numeros impares que são # multiplos de 3 # que se encontram no intervalo de 1 até 500 soma = 0 conta = 0 for mult in range(1, 501, 2): if mult % 3 == 0: conta = conta + 1 soma = mult + soma else: continue print(soma) print(conta)
""" # Sample code to perform I/O: name = input() # Reading input from STDIN print('Hi, %s.' % name) # Writing output to STDOUT # Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail """ # Write your code here t = int(input()) for _ in range(t): x1, y1 = map(int, input().strip().split()) x2, y2 = map(int, input().strip().split()) if x1 == x2 and y1 == y2: print('SECOND') elif max(x1, x2) - min(x1, x2) in (0, 1) and max(y1, y2) - min(y1, y2) in (0, 1): print('FIRST') else: print('DRAW')
class dotHierarchicList_t(object): # no doc aObjects = None ModelFatherObject = None nObjects = None ObjectsLeftToGet = None OperationType = None
# Definition for singly-linked list. class ListNode: def __init__(self, val=0, next=None): self.val = val self.next = next class Solution: def swapPairs(self, head: ListNode) -> ListNode: if not head: return None if not head.next: return head temp = head.next head.next = self.swapPairs(temp.next) temp.next = head return temp
RED = images.create_image(""" . # # # . . # # # . . . . . . . . . . . . . . . . """) RED_YELLOW = images.create_image(""" . # # # . . # # # . . # # # . . . . . . . . . . . """) YELLOW = images.create_image(""" . . . . . . # # # . . # # # . . . . . . . . . . . """) GREEN = images.create_image(""" . . . . . . . . . . . # # # . . # # # . . . . . . """) def on_forever(): RED.show_image(0) basic.pause(15000) RED_YELLOW.show_image(0) basic.pause(3000) GREEN.show_image(0) basic.pause(15000) YELLOW.show_image(0) basic.pause(3000) basic.forever(on_forever) def on_button_pressed_a(): basic.clear_screen() basic.show_string("Program exit.") control.reset() input.on_button_pressed(Button.A, on_button_pressed_a)
# Lemoneval Project # Author: Abhabongse Janthong <[email protected]> """Validator classes for each parameter in exercise frameworks.""" class BaseValidator(object): """Defines a callable object which checks if the given value is valid.""" __slots__ = ("name",) def __init__(self, *, name=None): self.name = name def __call__(self, value, target): """Checks whether the value is valid. If the validation is successful then True is returned. Otherwise, either False is returned or an exception describing what went wrong is raised. Target is the name of the object requiring the validation and it is used for error messages in exceptions. """ pass class PredicateValidator(BaseValidator): """Checks whether the given values passes the predicate test.""" __slots__ = ("predicate",) def __init__(self, predicate, *, name=None): if name is None: name = getattr(predicate, "__qualname__", None) super().__init__(name=name) self.predicate = predicate def __call__(self, value, target): try: if self.predicate(value): return True else: raise ValueError except Exception as e: test_name = self.name or "the predicate test" raise ValueError( f"the given value {value!r} failed {test_name} for the " f"parameter '{target}'" ) from e
# Source found at: https://datatables.net/extensions/scroller/examples/initialisation/large_js_source.html def generate_html_page(file_path, prj_name, title, df): """ Write a dataframe to a HTML page. :param file_path: File path to save the HTML file. :param prj_name: Project name for the title. :param title: Title for the title. :param df: Dataframe for the data to display. :return: """ print(file_path) with open(file_path, 'w') as f: f.write(header(prj_name=prj_name, title=title)) # Header and start of Body of HTML f.write(table(df)) # Table of HTML f.write(footer()) # End of body and HTML def header(prj_name, title): hdr = """<!DOCTYPE html>" <html lang="en"> <head> <meta charset="utf-8"> <title>{} - {}</title> <link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css" crossorigin="anonymous"> <!--link rel="stylesheet" type="text/css" href="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/css/jquery.dataTables.css"--> </head> <body> """.format(prj_name, title) return hdr def footer(): ftr = """<script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js"></script> <script type="text/javascript" charset="utf8" src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js"></script> <script> $(function(){ $("#example").dataTable(); }) </script> </body> </html>""" return ftr def table(df): """ Convert the dataframe to an HTML Table In clude the id and class. :param df: Dataframe to convert :return: """ # Example of table start # <table id="example" class="display" .. df_html = df.to_html(classes='display" id="example') return df_html
pytest_plugins = "pytester" LEAKING_TEST = """ import threading import time def test_leak(): for i in range(2): t = threading.Thread( target=time.sleep, args=(0.5,), name="leaked-thread-%d" % i) t.daemon = True t.start() """ INI_ENABLED = """ [pytest] threadleak = True """ INI_DISABLED = """ [pytest] threadleak = False """ def test_leak_enabled_option(testdir): testdir.makepyfile(LEAKING_TEST) result = testdir.runpytest('--threadleak', '-v') result.stdout.fnmatch_lines([ '*::test_leak FAILED', '*Failed: Test leaked *leaked-thread-0*leaked-thread-1*', ]) assert result.ret == 1 def test_leak_enabled_ini(testdir): testdir.makeini(INI_ENABLED) testdir.makepyfile(LEAKING_TEST) result = testdir.runpytest('-v') result.stdout.fnmatch_lines([ '*::test_leak FAILED', '*Failed: Test leaked *leaked-thread-0*leaked-thread-1*', ]) assert result.ret == 1 def test_leak_option_overrides_ini(testdir): testdir.makeini(INI_DISABLED) testdir.makepyfile(LEAKING_TEST) result = testdir.runpytest('--threadleak', '-v') result.stdout.fnmatch_lines([ '*::test_leak FAILED', '*Failed: Test leaked *leaked-thread-0*leaked-thread-1*', ]) assert result.ret == 1 def test_leak_disabled(testdir): testdir.makepyfile(LEAKING_TEST) result = testdir.runpytest('-v') result.stdout.fnmatch_lines(['*::test_leak PASSED']) assert result.ret == 0 def test_leak_disabled_ini(testdir): testdir.makeini(INI_DISABLED) testdir.makepyfile(LEAKING_TEST) result = testdir.runpytest('-v') result.stdout.fnmatch_lines(['*::test_leak PASSED']) assert result.ret == 0 def test_no_leak(testdir): testdir.makepyfile(""" def test_no_leak(): pass """) result = testdir.runpytest('--threadleak', '-v') result.stdout.fnmatch_lines(['*::test_no_leak PASSED']) assert result.ret == 0 def test_help_message(testdir): result = testdir.runpytest('--help') result.stdout.fnmatch_lines([ 'threadleak:', '*--threadleak*Detect tests leaking threads', ])
''' Factorial (hacker challenge). Write a function factorial() that returns the factorial of the given number. For example, factorial(5) should return 120. Do this using recursion; remember that factorial(n) = n * factorial(n-1). ''' def factorial(n): if n == 1 or n == 0: return 1 if n == 2: return 2 return n*factorial(n-1) print(factorial(5)) def factorial_iter(n): res = 1 for i in range(1, n+1): print('before ', res, i) res *= i print('after ', res, i) return res print(factorial_iter(5))
def infini(y : int) -> int: x : int = y while x >= 0: x = x + 1 return x def f(x : int) -> int: return x + 1
def changeConf(xmin=2., xmax=16., resolution=2, Nxx=1000, Ntt=20000, \ every_scalar_t=10, every_aaray_t=100, \ amplitud=0.1, sigma=1, x0=9., Boundaries=0, Metric=1): conf = open('input.par','w') conf.write('&parameters') conf.write('xmin = ' + str(xmin) + '\n') conf.write('xmax = ' + str(xmax) + '\n') conf.write('resolution = ' + str(resolution) + '\n') conf.write('Nxx = ' + str(Nxx) + '\n') conf.write('Ntt = ' + str(Ntt) + '\n') conf.write('courant = 0.25' + '\n') conf.write('every_scalar_t = ' + str(every_scalar_t) + '\n') conf.write('every_array_t = ' + str(every_aaray_t) + '\n') conf.write('amplitud = ' + str(amplitud) + '\n') conf.write('sigma = ' + str(sigma) + '\n') conf.write('x0 = ' + str(x0) + '\n') conf.write('Boundaries = ' + str(Boundaries) + '\n') conf.write('Metric = ' + str(Metric) + '\n') conf.write('\\') conf.close() print('-------------------------')
class Day3: def part1(self): with open(r'C:\Coding\AdventOfCode\AOC2019\Data\Data3.txt') as f: lines = f.read().splitlines() firstPath = lines[0].split(',') secondPath = lines[1].split(',') firstPathCoordinates = self.wiresPositionsDictionary(firstPath) secondPathCoordinates = self.wiresPositionsDictionary(secondPath) manhattanDistance = 9999999999999 for coordinate in firstPathCoordinates: if coordinate in secondPathCoordinates: distance = abs(coordinate.X) + abs(coordinate.Y) if 0 < distance < manhattanDistance: manhattanDistance = distance print("Day 3, part 1: " + str(manhattanDistance)) def wiresPositionsDictionary(self, commands) -> dict: position = Position(0, 0) dictionary = {position: 0} for command in commands: firstLetter = command[0] number = int(command[1:]) i = 0 while i < number: i += 1 if firstLetter == 'U': position = Position(position.X, position.Y + 1) if position.X != 0 and position.Y != 0: dictionary[position] = 1 if firstLetter == 'D': position = Position(position.X, position.Y - 1) if position.X != 0 and position.Y != 0: dictionary[position] = 1 if firstLetter == 'L': position = Position(position.X - 1, position.Y) if position.X != 0 and position.Y != 0: dictionary[position] = 1 if firstLetter == 'R': position = Position(position.X + 1, position.Y) if position.X != 0 or position.Y != 0: dictionary[position] = 1 return dictionary def part2(self): with open(r'C:\Coding\AdventOfCode\AOC2019\Data\Data3.txt') as f: lines = f.read().splitlines() firstPath = lines[0].split(',') secondPath = lines[1].split(',') firstPathCoordinates = self.wiresPositionsDictionaryWithTime(firstPath) secondPathCoordinates = self.wiresPositionsDictionaryWithTime(secondPath) minimumTime = 9999999999999 for coordinate in firstPathCoordinates: if coordinate in secondPathCoordinates: time = firstPathCoordinates[coordinate] + secondPathCoordinates[coordinate] if 0 < time < minimumTime: minimumTime = time print("Day 3, part 2: " + str(minimumTime)) def wiresPositionsDictionaryWithTime(self, commands) -> dict: position = Position(0, 0) dictionary = {position: 0} time = 1 for command in commands: firstLetter = command[0] number = int(command[1:]) i = 0 while i < number: i += 1 if firstLetter == 'U': position = Position(position.X, position.Y + 1) self.addToDictionary(dictionary, position, time) if firstLetter == 'D': position = Position(position.X, position.Y - 1) self.addToDictionary(dictionary, position, time) if firstLetter == 'L': position = Position(position.X - 1, position.Y) self.addToDictionary(dictionary, position, time) if firstLetter == 'R': position = Position(position.X + 1, position.Y) self.addToDictionary(dictionary, position, time) time += 1 return dictionary def addToDictionary(self, dictionary, position, time): if (position.X != 0 or position.Y != 0) and position not in dictionary: dictionary[position] = time class Position: X = 0 Y = 0 def __init__(self, x, y): self.X = x self.Y = y def __eq__(self, other): return self.X == other.X and self.Y == other.Y def __hash__(self): return hash((self.X, self.Y))
# @Title: 移除元素 (Remove Element) # @Author: KivenC # @Date: 2018-07-13 15:47:14 # @Runtime: 28 ms # @Memory: N/A class Solution(object): def removeElement(self, nums, val): """ :type nums: List[int] :type val: int :rtype: int """ count = 0 for i in range(len(nums) - 1, -1, -1): if nums[i] == val: nums.pop(i) nums.append(-1) count += 1 return len(nums) - count
def leiadinheiro(txt): while True: din = str(input(f'{txt}')).replace(',', '.').strip() if din.isalpha() or din == '': print(f'\033[31mErro! "{din}" é um preço invalido\033[m') else: break return float(din)
# -------------------------------------- #! /usr/bin/python # File: 283. Move Zeros.py # Author: Kimberly Gao class Solution: def _init_(self,name): self.name = name # My 1st solution: (Run time: 68ms(29.57%)) (2 pointer) # Memory Usage: 15.4 MB (61.79%) def moveZeros1(self, nums): slow = 0 for fast in range(len(nums)): if nums[fast] != 0: nums[slow] = nums[fast] slow += 1 for fast in range (slow, len(nums)): nums[fast] = 0 return nums # My 2nt solution: (Run time: 72ms(28.1%)) (2 pointer) # Memory Usage: 15.5 MB (19.46%) def moveZeros2(self, nums): slow = 0 for fast in range(len(nums)): i = nums[slow] nums[slow] = nums[fast] nums[fast] = i slow += 1 return nums '''For python, can use if num == o: nums.remove(num) nums.append(num) Also consider using: for slow in xrange(len(nums)) ''' if __name__ == '__main__': nums = [0,1,0,3,12] # nums = 0 should be taken into consideration my_solution = Solution().moveZeros1(nums) print(my_solution) better_solution = Solution().moveZeros2(nums) print(better_solution)
""" # Definition for a Node. class Node: def __init__(self, val: int = 0, left: 'Node' = None, right: 'Node' = None, next: 'Node' = None): self.val = val self.left = left self.right = right self.next = next """ class Solution: def connect(self, root: 'Node') -> 'Node': def processChildNode(childNode, prev, leftmost): if childNode: if prev: prev.next = childNode else: leftmost = childNode prev = childNode return prev, leftmost if root is None: return root leftmost = root while leftmost: curr, prev = leftmost, None leftmost = None while curr: prev, leftmost = processChildNode(curr.left, prev, leftmost) prev, leftmost = processChildNode(curr.right, prev, leftmost) curr = curr.next return root
''' Created on Nov 3, 2018 @author: nilson.nieto ''' list_numeros =input("Ingrese varios numeros separados por espacio : ").split(" , ") for i in list_numeros: print(i)
def getVariableType(v): """ Replacing bools with ints for Python compatibility """ vType = v['Type'] vType = vType.replace('bool', 'int') vType = vType.replace('std::function<void(korali::Sample&)>', 'std::uint64_t') return vType def getCXXVariableName(v): cVarName = '' for name in v: cVarName += name cVarName = cVarName.replace(" ", "") cVarName = cVarName.replace("(", "") cVarName = cVarName.replace(")", "") cVarName = cVarName.replace("+", "") cVarName = cVarName.replace("-", "") cVarName = cVarName.replace("[", "") cVarName = cVarName.replace("]", "") cVarName = '_' + cVarName[0].lower() + cVarName[1:] return cVarName def getVariablePath(v): cVarPath = '' for name in v["Name"]: cVarPath += '["' + name + '"]' return cVarPath def getVariableOptions(v): options = [] if (v.get('Options', '')): for item in v["Options"]: options.append(item["Value"]) return options
def get_fuel(mass): return int(mass / 3) - 2 def get_fuel_including_fuel(mass): total = 0 while True: fuel = get_fuel(mass) if fuel <= 0: break total += fuel mass = fuel return total # Part one with open('input') as f: print(sum( get_fuel( int(line)) # mass for line in f)) # Part two with open('input') as f: print(sum( get_fuel_including_fuel( int(line)) # mass for line in f))
class Manager: def __init__(self): self.worker = None def set_worker(self, worker): assert "Worker" in [el.__name__ for el in worker.__class__.__mro__], "'worker' must be of type Worker" self.worker = worker def manage(self): if self.worker is not None: self.worker.work() class Worker: def work(self): print("I'm working!!") class SuperWorker(Worker): def work(self): print("I work very hard!!!") class LazyWorker(Worker): def work(self): print("I do not work very hard...") class Animal: def feed(self): return "I am eating!" worker = Worker() manager = Manager() manager.set_worker(worker) manager.manage() super_worker = SuperWorker() lazy_worker = LazyWorker() animal = Animal() try: manager.set_worker(super_worker) manager.manage() except AssertionError: print("manager fails to support super_worker....")
N, K = map(int, input().split()) A = [0] total = 0 a = list(map(int, input().split())) ans = 0 m = {0: 1} for x in a: total += x count = m.get(total - K, 0) ans += count m[total] = m.get(total, 0) + 1 A.append(total) print(ans)
""" This module will be having the locators of all the food listing page which comes after clicks on start ordering button """ class FoodSelectionPageLocators: """ food selection class """ place_order_dialog_box_button = "//button[text()='Ok! Place Order']" total_product_items = "//div/div/div[contains(@class, 'ProductItem')]" for_the_table_list = "//div/div/div[contains(@class, 'ProductItem') and contains(@category, 'For The Table')]" crispy_roast_duck = "//div/div/div[contains(@class, 'ProductItem') and contains(@category, 'Crispy roast duck')]" wet_noodles = "//div/div/div[contains(@class, 'ProductItem') and contains(@category, 'Wet Noodles')]" empty_cart = "//label[contains(text(),'EMPTY')]" add_to_cart_button_list = "//a[contains(@class, 'AddToCart')]" add_to_cart_sweet_potato_roll= "(//a[contains(@class, 'AddToCart')])[3]" add_button_for_wet_noodles = "//div/div/div[contains(@class, 'ProductItem') and contains(@category, 'Wet Noodles')]/child::div/child::a" wet_noodles_text = "//div/div/div[contains(@class, 'ProductItem') and contains(@category, 'Wet Noodles')]/child::div/child::div/span" checkout_order_button = "//button[text()='CHECKOUT' and @href='#']" mobile_number_text_box = "//input[@id= 'cust_phoneNo']" proceed_button = "//button[text()= 'PROCEED']" invalid_mobile_no = "//label[contains(text(),'Enter Valid Mobile Number')]" your_name_text_box = "//input[@id= 'cust_userName']" your_email_id_text_box = "//input[@id= 'cust_useremail']" invalid_email_id = "//label[contains(text(),'Enter Valid Email ID')]" proceed_button_2 = "(//button[text()= 'PROCEED'])[2]" category_side_bar = "//a[contains(@sidecat, 'category')]"
class Solution: def findMaxAverage(self, nums: List[int], k: int) -> float: # sliding window, O(N) time, O(1) space globMax = tempMax = sum(nums[:k]) for i in range(k, len(nums)): tempMax += (nums[i] - nums[i-k]) globMax = max(tempMax, globMax) return globMax / k
# -*- coding: utf-8 -*- # Copyright 2019 Cohesity Inc. class ChangeEnum(object): """Implementation of the 'Change' enum. TODO: type enum description here. Attributes: KPROTECTIONJOBNAME: TODO: type description here. KPROTECTIONJOBDESCRIPTION: TODO: type description here. KPROTECTIONJOBSOURCES: TODO: type description here. KPROTECTIONJOBSCHEDULE: TODO: type description here. KPROTECTIONJOBFULLSCHEDULE: TODO: type description here. KPROTECTIONJOBRETRYSETTINGS: TODO: type description here. KPROTECTIONJOBRETENTIONPOLICY: TODO: type description here. KPROTECTIONJOBINDEXINGPOLICY: TODO: type description here. KPROTECTIONJOBALERTINGPOLICY: TODO: type description here. KPROTECTIONJOBPRIORITY: TODO: type description here. KPROTECTIONJOBQUIESCE: TODO: type description here. KPROTECTIONJOBSLA: TODO: type description here. KPROTECTIONJOBPOLICYID: TODO: type description here. KPROTECTIONJOBTIMEZONE: TODO: type description here. KPROTECTIONJOBFUTURERUNSPAUSED: TODO: type description here. KPROTECTIONJOBFUTURERUNSRESUMED: TODO: type description here. KSNAPSHOTTARGETPOLICY: TODO: type description here. KPROTECTIONJOBBLACKOUTWINDOW: TODO: type description here. KPROTECTIONJOBQOS: TODO: type description here. KPROTECTIONJOBINVALIDFIELD: TODO: type description here. """ KPROTECTIONJOBNAME = 'kProtectionJobName' KPROTECTIONJOBDESCRIPTION = 'kProtectionJobDescription' KPROTECTIONJOBSOURCES = 'kProtectionJobSources' KPROTECTIONJOBSCHEDULE = 'kProtectionJobSchedule' KPROTECTIONJOBFULLSCHEDULE = 'kProtectionJobFullSchedule' KPROTECTIONJOBRETRYSETTINGS = 'kProtectionJobRetrySettings' KPROTECTIONJOBRETENTIONPOLICY = 'kProtectionJobRetentionPolicy' KPROTECTIONJOBINDEXINGPOLICY = 'kProtectionJobIndexingPolicy' KPROTECTIONJOBALERTINGPOLICY = 'kProtectionJobAlertingPolicy' KPROTECTIONJOBPRIORITY = 'kProtectionJobPriority' KPROTECTIONJOBQUIESCE = 'kProtectionJobQuiesce' KPROTECTIONJOBSLA = 'kProtectionJobSla' KPROTECTIONJOBPOLICYID = 'kProtectionJobPolicyId' KPROTECTIONJOBTIMEZONE = 'kProtectionJobTimezone' KPROTECTIONJOBFUTURERUNSPAUSED = 'kProtectionJobFutureRunsPaused' KPROTECTIONJOBFUTURERUNSRESUMED = 'kProtectionJobFutureRunsResumed' KSNAPSHOTTARGETPOLICY = 'kSnapshotTargetPolicy' KPROTECTIONJOBBLACKOUTWINDOW = 'kProtectionJobBlackoutWindow' KPROTECTIONJOBQOS = 'kProtectionJobQOS' KPROTECTIONJOBINVALIDFIELD = 'kProtectionJobInvalidField'