PoshGram.psm1
# This is a locally sourced Imports file for local development. # It can be imported by the psm1 in local development to add script level variables. # It will merged in the build process. This is for local development only. # region script variables # $script:resourcePath = "$PSScriptRoot\Resources" <# .SYNOPSIS Enriches the Telegram sticker object with additional emoji data. .DESCRIPTION Evaluates the emoji data for the specified emoji and adds it to the Telegram sticker object. .EXAMPLE Add-EmojiDetail -StickerObject $stickerObject Enriches the Telegram sticker object with additional emoji data. .PARAMETER StickerObject Telegram sticker object .OUTPUTS System.Management.Automation.PSCustomObject .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ .COMPONENT PoshGram #> function Add-EmojiDetail { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'Telegram sticker object')] [object]$StickerObject ) try { $emojiData = Get-Emoji -Emoji $StickerObject.emoji } catch { Write-Warning -Message ('An error was encountered getting the emoji data for {0}' -f $StickerObject.emoji) Write-Error $_ } if ($emojiData) { Write-Debug -Message ('Emoji data found for {0}' -f $StickerObject.emoji) $StickerObject | Add-Member -Type NoteProperty -Name Group -Value $emojiData.Group -Force $StickerObject | Add-Member -Type NoteProperty -Name SubGroup -Value $emojiData.SubGroup -Force $StickerObject | Add-Member -Type NoteProperty -Name Code -Value $emojiData.UnicodeStandard -Force $StickerObject | Add-Member -Type NoteProperty -Name pwshEscapedFormat -Value $emojiData.pwshEscapedFormat -Force $StickerObject | Add-Member -Type NoteProperty -Name Shortcode -Value $emojiData.ShortCode -Force } else { Write-Debug -Message ('No emoji data found for {0}' -f $StickerObject.emoji) } return $StickerObject } #Add-EmojiDetail <# .SYNOPSIS Evaluates if the provided URL is reachable .DESCRIPTION Evaluates if the provided URL is reachable and returns a boolean based on results .EXAMPLE Confirm-URL -Uri http://gph.is/2y3AWRU Determines if the provided URL is accessible and returns a boolean based on results .PARAMETER Uri Uri you wish to resolve .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ .COMPONENT PoshGram #> function Confirm-URL { [CmdletBinding()] param ( ## The URI to resolve [Parameter(Mandatory = $true, HelpMessage = 'Uri you wish to resolve')] [string]$Uri ) $result = $true #assume the best [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Write-Verbose -Message "Attempting to confirm $Uri" try { Invoke-WebRequest -Uri $uri -UseBasicParsing -DisableKeepAlive -ErrorAction Stop | Out-Null Write-Verbose -Message 'Confirmed.' } #try_Invoke-WebRequest catch { Write-Verbose -Message 'Catch on Invoke-WebRequest. This is not necessarily a bad thing. Checking status code.' if ([int]$_.Exception.Response.StatusCode -eq 0) { Write-Warning -Message "$Uri" Write-Warning -Message 'The URL provided does not appear to be valid' $result = $false } #we will proceed with any other exit code } #catch_Invoke-WebRequest return $result } #Confirm-URL <# .SYNOPSIS Resolve a URI to the URIs it redirects to .DESCRIPTION Resolves a URI provided to the URI it redirects to. If no redirect is in place, null is returned. This is useful for resolving shortlinks to try url file paths. .EXAMPLE Resolve-ShortLink -Uri http://gph.is/2y3AWRU Resolve shortlink to full URI .PARAMETER Uri Uri you wish to resolve .OUTPUTS System.String -or- Null .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ .COMPONENT PoshGram #> function Resolve-ShortLink { [CmdletBinding()] param ( ## The URI to resolve [Parameter(Mandatory = $true, HelpMessage = 'Uri you wish to resolve')] [string]$Uri ) $result = $null $eval = $null [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 try { $eval = Invoke-WebRequest -Uri $uri -MaximumRedirection 0 -ErrorAction Stop } #try_Invoke-WebRequest catch { #if($_.ErrorDetails.Message -like "*maximum redirection*"){ if ($_.Exception.Message -like "*Moved*") { $eval = $_ Write-Verbose -Message 'Moved detected.' #$result = $eval.Headers.Location $result = $eval.Exception.Response.Headers.Location.AbsoluteUri } #if_Error_Moved else { Write-Warning -Message 'An Error was encountered resolving a potential shortlink:' Write-Error $_ } #else_Error_Moved } #catch_Invoke-WebRequest return $result } #Resolve-ShortLink <# .SYNOPSIS Verifies that provided quiz explanation matches Telegram requirements. .DESCRIPTION Evaluates if the provided quiz explanation meets the Telegram explanation requirements. .EXAMPLE Test-Explanation -Explanation $explanation Verifies if the provided options meet the poll requirements. .PARAMETER Explanation Quiz explanation text .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ Telegram currently supports 0-200 characters with at most 2 line feeds after entities parsing .COMPONENT PoshGram #> function Test-Explanation { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'Quiz explanation text')] [string]$Explanation ) $results = $true #assume the best Write-Verbose -Message 'Evaluating provided explanation...' $splitTest = $Explanation -split '\n' $carriageCount = $splitTest | Measure-Object | Select-Object -ExpandProperty Count if ($carriageCount -gt 2) { Write-Warning -Message 'Explanation can contain at most 2 line feeds.' $results = $false } if ($Explanation.Length -gt 200) { Write-Warning -Message 'Explanation can contain at most 200 characters.' $results = $false } return $results } #function_Test-Explanation <# .SYNOPSIS Verifies that specified file is a supported Telegram extension type .DESCRIPTION Evaluates the specified file path to determine if the file is a supported extension type .EXAMPLE Test-FileExtension -FilePath C:\photos\aphoto.jpg -Type Photo Verifies if the path specified is a supported photo extension type .EXAMPLE Test-FileExtension -FilePath $PhotoPath -Type Photo -Verbose Verifies if the path specified in $PhotoPath is a supported photo extension type with verbose output .EXAMPLE $fileTypeEval = Test-FileExtension -FilePath $AnimationPath -Type Animation Verifies if the path specified is a supported Animation extension type .EXAMPLE $fileTypeEval = Test-FileExtension -FilePath $Audio -Type Audio Verifies if the path specified is a supported Audio extension type .EXAMPLE $fileTypeEval = Test-FileExtension -FilePath $PhotoPath -Type Photo Verifies if the path specified is a supported photo extension type .EXAMPLE $fileTypeEval = Test-FileExtension -FilePath $Video -Type Video Verifies if the path specified is a supported Video extension type .EXAMPLE $fileTypeEval = Test-FileExtension -FilePath $Sticker -Type Sticker Verifies if the path specified is a supported Sticker extension type .PARAMETER FilePath Path to file that will be evaluated .PARAMETER Type Telegram message type .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ .COMPONENT PoshGram #> function Test-FileExtension { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'Path to file that will be evaluated')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$FilePath, [Parameter(Mandatory = $true, HelpMessage = 'Telegram message type')] [ValidateSet('Photo', 'Video', 'Audio', 'Animation', 'Sticker')] [string]$Type ) #------------------------------------------------------------ $supportedPhotoExtensions = @( 'JPG' 'JPEG' 'PNG' 'GIF' 'BMP' 'WEBP' 'SVG' 'TIFF' ) $supportedVideoExtensions = @( 'MP4' ) $supportedAudioExtensions = @( 'MP3', 'M4A' ) $supportedAnimationExtensions = @( 'GIF' ) $supportedStickerExtensions = @( 'WEBP' 'TGS' 'WEBM' ) switch ($Type) { Photo { $extType = $supportedPhotoExtensions } #photo Video { $extType = $supportedVideoExtensions } #video Audio { $extType = $supportedAudioExtensions } #audio Animation { $extType = $supportedAnimationExtensions } #animation Sticker { $extType = $supportedStickerExtensions } } #switch_Type Write-Verbose -Message "Validating type: $Type" #------------------------------------------------------------ [bool]$results = $true #assume the best. #------------------------------------------------------------ Write-Verbose -Message "Processing $FilePath ..." $divide = $FilePath.Split('.') $rawExtension = $divide[$divide.Length - 1] $extension = $rawExtension.ToUpper() Write-Verbose -Message "Verifying discovered extension: $extension" switch ($extension) { { $extType -contains $_ } { Write-Verbose -Message 'Extension verified.' } default { Write-Warning -Message "The specified file is not a supported $Type extension." $results = $false } #default } #switch_extension return $results } #function_Test-FileExtension <# .SYNOPSIS Verifies that file size is supported by Telegram .DESCRIPTION Evaluates if the file is at or below the supported Telegram file size .EXAMPLE Test-FileSize -Path C:\videos\video.mp4 Verifies if the path specified is a supported video extension type .EXAMPLE Test-FileSize -Path $Path -Verbose Verifies if the path specified in $VideoPath is a supported video extension type with verbose output .PARAMETER Path Path to file .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ Telegram currently supports a 50MB file size for bots .COMPONENT PoshGram #> function Test-FileSize { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'Path to file')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$Path ) $results = $true #assume the best $supportedSize = 50 try { $size = Get-ChildItem -Path $Path -ErrorAction Stop if (($size.Length / 1MB) -gt $supportedSize) { Write-Warning -Message "The file is over $supportedSize (MB)" $results = $false } } catch { Write-Warning -Message 'An error was encountered evaluating the file size' $results = $false } return $results } #function_Test-FileSize <# .SYNOPSIS Verifies that MediaGroup requirements are met. .DESCRIPTION Evaluates the provided files to determine if they met all MediaGroup requirements. .EXAMPLE Test-MediaGroupRequirements -MediaType Photo -FilePaths $files Verifies if the provided files adhere to the Telegram MediaGroup requirements. .PARAMETER MediaType Type of media to send .PARAMETER FilePaths List of filepaths for media you want to send .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ Telegram currently supports a 50MB file size for bots .COMPONENT PoshGram #> function Test-MediaGroupRequirements { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'Type of media to send')] [ValidateSet('Photo', 'Video', 'Document', 'Audio')] [string]$MediaType, [Parameter(Mandatory = $false, HelpMessage = 'List of filepaths for media you want to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string[]]$FilePaths ) Write-Verbose -Message 'Evaluating the group of files for MediaGroup requirements...' $results = $true #assume the best Write-Verbose -Message 'Evaluating file count...' if ($FilePaths.Count -le 1 -or $FilePaths.Count -gt 10) { Write-Warning -Message 'Send-TelegramMediaGroup requires a minimum of 2 and a maximum of 10 media files to be provided.' $results = $false return $results } #file_Count else { Write-Verbose -Message "File count is: $($FilePaths.Count)" } #else_FileCount foreach ($file in $FilePaths) { $fileTypeEval = $null $fileSizeEval = $null Write-Verbose -Message 'Verifying presence of media...' if (-not(Test-Path -Path $file)) { Write-Warning -Message "The specified media path: $file was not found." $results = $false return $results } #if_testPath if ($MediaType -ne 'Document') { Write-Verbose -Message 'Verifying extension type...' $fileTypeEval = Test-FileExtension -FilePath $file -Type $MediaType if ($fileTypeEval -eq $false) { $results = $false return $results } #if_Extension else { Write-Verbose -Message 'Extension supported.' } #else_Extension } Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $file if ($fileSizeEval -eq $false) { $results = $false return $results } #if_Size else { Write-Verbose -Message 'File size verified.' } #else_Size } #foreach_File return $results } #Test-MediaGroupRequirements <# .SYNOPSIS Verifies that poll options are supported by Telegram .DESCRIPTION Evaluates if the provided poll options meet the Telegram poll requirements. .EXAMPLE Test-PollOptions -PollOptions $options Verifies if the provided options meet the poll requirements. .EXAMPLE Test-PollOptions -PollOptions $options Verifies if the provided options meet the poll requirements with verbose output. .PARAMETER PollOptions Poll Options for eval .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ Telegram currently supports 2-10 options 1-100 characters each .COMPONENT PoshGram #> function Test-PollOptions { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'Poll Options for eval')] [string[]]$PollOptions ) $results = $true #assume the best Write-Verbose -Message 'Evaluating number of options...' $optionCount = $PollOptions.Length if ($optionCount -lt 2 -or $optionCount -gt 10) { Write-Warning -Message 'Only 2-10 poll options are allowed.' $results = $false } #if_optionCount else { Write-Verbose -Message 'Option number verified.' Write-Verbose -Message 'Evaluating character length of options...' foreach ($option in $PollOptions) { if ($option.Length -lt 1 -or $option.Length -gt 100) { Write-Warning -Message "$option is not between 1-100 characters." $results = $false } #if_length } #foreach_option } #else_optionCount return $results } #function_Test-PollOptions <# .SYNOPSIS Verifies that specified URL path contains a supported Telegram extension type .DESCRIPTION Evaluates the specified URL path to determine if the URL leads to a supported extension type .EXAMPLE Test-URLExtension -URL $URL -Type Photo Verifies if the URL path specified is a supported photo extension type .EXAMPLE Test-URLExtension -URL $PhotoURL -Type Photo -Verbose Verifies if the URL path specified is a supported photo extension type with Verbose output .EXAMPLE Test-URLExtension -URL $VideoURL -Type Video Verifies if the URL path specified is a supported video extension type .EXAMPLE Test-URLExtension -URL $AudioURL -Type Audio Verifies if the URL path specified is a supported audio extension type .EXAMPLE Test-URLExtension -URL $animationURL -Type Animation Verifies if the URL path specified is a supported animation extension type .EXAMPLE Test-URLExtension -URL $DocumentURL -Type Document Verifies if the URL path specified is a supported document extension type .EXAMPLE Test-URLExtension -URL $stickerURL -Type Sticker Verifies if the URL path specified is a supported sticker extension type .PARAMETER URL The URL string to the specified online file .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ .COMPONENT PoshGram #> function Test-URLExtension { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'URL string of document')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$URL, [Parameter(Mandatory = $true, HelpMessage = 'Telegram message type')] [ValidateSet('Photo', 'Video', 'Audio', 'Animation', 'Document', 'Sticker')] [string]$Type ) #------------------------------------------------------------ $supportedPhotoExtensions = @( 'JPG' 'JPEG' 'PNG' 'GIF' 'BMP' 'WEBP' 'SVG' 'TIFF' ) $supportedVideoExtensions = @( 'MP4' ) $supportedAudioExtensions = @( 'MP3' 'M4A' ) $supportedAnimationExtensions = @( 'GIF' ) $supportedDocumentExtensions = @( 'PDF' 'GIF' 'ZIP' ) $supportedStickerExtensions = @( 'WEBP' 'WEBM' #'TGS' #* doesn't seem to work for URL uploads ) switch ($Type) { Photo { $extType = $supportedPhotoExtensions } #photo Video { $extType = $supportedVideoExtensions } #video Audio { $extType = $supportedAudioExtensions } #audio Animation { $extType = $supportedAnimationExtensions } #animation Document { $extType = $supportedDocumentExtensions } #document Sticker { $extType = $supportedStickerExtensions } #sticker } #switch_Type Write-Verbose -Message "Validating type: $Type" #------------------------------------------------------------ [bool]$results = $true #assume the best. #------------------------------------------------------------ Write-Verbose -Message 'Testing provided URL' $urlEval = Confirm-URL -Uri $URL if ($urlEval -ne $true) { Write-Verbose -Message 'URL Confirmation did not return true.' $results = $false return $results } #if_urlEval #------------------------------------------------------------ Write-Verbose -Message 'Resolving potential shortlink...' $slEval = Resolve-ShortLink -Uri $URL -ErrorAction SilentlyContinue if ($slEval) { $URL = $slEval } #if_slEval #------------------------------------------------------------ Write-Verbose -Message "Processing $URL ..." $divide = $URL.Split('.') $rawExtension = $divide[$divide.Length - 1] $extension = $rawExtension.ToUpper() Write-Verbose -Message "Verifying discovered extension: $extension" switch ($extension) { { $extType -contains $_ } { Write-Verbose -Message 'Extension verified.' } default { Write-Warning -Message "The specified file is not a supported $Type extension." $results = $false } #default } #switch_extension #------------------------------------------------------------ return $results } #function_Test-URLExtension <# .SYNOPSIS Verifies that specified URL file size is supported by Telegram .DESCRIPTION Evaluates the specified URL path to determine if the file is at or below the supported Telegram file size .EXAMPLE Test-URLFileSize -URL 'https://github.com/techthoughts2/PoshGram/raw/main/test/SourceFiles/techthoughts.png' Verifies if the file in the specified URL is at or below the Telegram maximum size .EXAMPLE Test-URLFileSize -URL $URL -Verbose Verifies if the file in the specified URL is at or below the Telegram maximum size with verbose output .PARAMETER URL URL address to file .OUTPUTS System.Boolean .NOTES Author: Jake Morrison - @jakemorrison - https://www.techthoughts.info/ Telegram currently supports a 50MB file size for bots .COMPONENT PoshGram #> function Test-URLFileSize { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = 'URL address to file')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$URL ) $results = $true #assume the best $supportedSize = 50 try { $urlFileInfo = Invoke-WebRequest $URL -ErrorAction Stop if (($urlFileInfo.RawContentLength / 1MB) -gt $supportedSize) { Write-Warning -Message "The file is over $supportedSize (MB)" $results = $false } #if_size } #try_Invoke-WebRequest catch { Write-Warning -Message 'An error was encountered evaluating the file size' $results = $false } #catch_Invoke-WebRequest return $results } #function_Test-URLFileSize <# .EXTERNALHELP PoshGram-help.xml #> function Get-TelegramCustomEmojiStickerInfo { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Custom Emoji pack name')] [ValidateNotNullOrEmpty()] [ValidateCount(1, 200)] [string[]]$CustomEmojiIdentifier ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Debug -Message ('Identifier count: {0}' -f $CustomEmojiIdentifier.Count) $identifierList = New-Object System.Collections.Generic.List[string] foreach ($identifier in $CustomEmojiIdentifier) { [void]$identifierList.Add($identifier) } if ($identifierList.Count -eq 1) { # special case for single identifier where we have to hand-craft the JSON $jsonIdentifierArray = @" [ "$identifierList" ] "@ } #if else { $jsonIdentifierArray = $identifierList | ConvertTo-Json } #else $form = @{ custom_emoji_ids = $jsonIdentifierArray } #form $uri = 'https://api.telegram.org/bot{0}/getCustomEmojiStickers' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Retrieving sticker information...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered getting the Telegram custom emoji pack info:' if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue return $results } else { throw $_ } } #catch_messageSend # Add-EmojiDetails Write-Verbose -Message 'Custom emoji information found. Processing emoji information...' $stickerData = New-Object System.Collections.Generic.List[Object] foreach ($emoji in $results.result) { #------------------- $enrichedEmoji = $null #------------------- $enrichedEmoji = Add-EmojiDetail -StickerObject $emoji [void]$stickerData.Add($enrichedEmoji) } return $stickerData } #function_Get-TelegramCustomEmojiStickerInfo <# .EXTERNALHELP PoshGram-help.xml #> function Get-TelegramStickerPackInfo { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Sticker pack name')] [ValidateNotNullOrEmpty()] [string]$StickerSetName ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $form = @{ name = $StickerSetName } #form $uri = 'https://api.telegram.org/bot{0}/getStickerSet' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Retrieving sticker information...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered getting the Telegram sticker info:' if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue return $results } else { throw $_ } } #catch_messageSend Write-Verbose -Message 'Sticker information found. Processing emoji information...' $stickerData = New-Object System.Collections.Generic.List[Object] foreach ($emoji in $results.result.stickers) { #------------------- $enrichedEmoji = $null #------------------- $enrichedEmoji = Add-EmojiDetail -StickerObject $emoji [void]$stickerData.Add($enrichedEmoji) } return $stickerData } #function_Get-TelegramStickerPackInfo <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramContact { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Contact phone number')] [ValidateNotNullOrEmpty()] [string]$PhoneNumber, [Parameter(Mandatory = $true, HelpMessage = 'Contact first name')] [ValidateNotNullOrEmpty()] [string]$FirstName, [Parameter(Mandatory = $false, HelpMessage = 'Contact last name')] [ValidateNotNullOrEmpty()] [string]$LastName, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $form = @{ chat_id = $ChatID phone_number = $PhoneNumber first_name = $FirstName last_name = $LastName disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendContact' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending contact...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram contact:' if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramContact <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramDice { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Emoji on which the dice throw animation is based.')] [ValidateSet('dice', 'dart', 'basketball', 'football', 'slotmachine', 'bowling')] [string]$Emoji, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) switch ($Emoji) { dice { $emojiSend = '🎲' } dart { $emojiSend = '🎯' } basketball { $emojiSend = '🏀' } football { $emojiSend = '⚽' } slotmachine { $emojiSend = '🎰' } bowling { $emojiSend = '🎳' } } $form = @{ chat_id = $ChatID emoji = $emojiSend disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendDice' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending dice...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram location:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramDice <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocalAnimation { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'File path to the animation you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$AnimationPath, [Parameter(Mandatory = $false, HelpMessage = 'Animation caption')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Animation needs to be covered with a spoiler animation')] [switch]$HasSpoiler, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying presence of animation...' if (-not(Test-Path -Path $AnimationPath)) { throw ('The specified animation path: {0} was not found.' -f $AnimationPath) } #if_testPath else { Write-Verbose -Message 'Path verified.' } #else_testPath Write-Verbose -Message 'Verifying extension type...' $fileTypeEval = Test-FileExtension -FilePath $AnimationPath -Type Animation if ($fileTypeEval -eq $false) { throw 'File extension is not a supported Animation type' } #if_animationExtension else { Write-Verbose -Message 'Extension supported.' } #else_animationExtension Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $AnimationPath if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_animationSize else { Write-Verbose -Message 'File size verified.' } #else_animationSize Write-Verbose -Message 'Getting animation file...' try { $fileObject = Get-Item $AnimationPath -ErrorAction Stop } #try_Get-ItemAnimation catch { Write-Warning -Message 'The specified animation could not be interpreted properly.' throw $_ } #catch_Get-ItemAnimation $form = @{ chat_id = $ChatID animation = $fileObject caption = $Caption parse_mode = $ParseMode has_spoiler = $HasSpoiler.IsPresent disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendAnimation' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending animation...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram animation message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocalAnimation <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocalAudio { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Local path to file you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$Audio, [Parameter(Mandatory = $false, HelpMessage = 'Caption for file')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Duration of the audio in seconds')] [int]$Duration, [Parameter(Mandatory = $false, HelpMessage = 'Performer')] [string]$Performer, [Parameter(Mandatory = $false, HelpMessage = 'TrackName')] [string]$Title, [Parameter(Mandatory = $false, HelpMessage = 'Original File Name')] [string]$FileName, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying presence of file...' if (-not(Test-Path -Path $Audio)) { throw ('The specified file was not found {0}' -f $Audio) } #if_testPath else { Write-Verbose -Message 'Path verified.' } #else_testPath Write-Verbose -Message 'Verifying extension type...' $fileTypeEval = Test-FileExtension -FilePath $Audio -Type Audio if ($fileTypeEval -eq $false) { throw 'File extension is not a supported Audio type' } #if_audioExtension else { Write-Verbose -Message 'Extension supported.' } #else_audioExtension Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $Audio if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_audioSize else { Write-Verbose -Message 'File size verified.' } #else_audioSize Write-Verbose -Message 'Getting audio file...' try { $fileObject = Get-Item $Audio -ErrorAction Stop } #try_Get-ItemAudio catch { Write-Warning -Message 'The specified audio could not be interpreted properly.' throw $_ } #catch_Get-ItemAudio $form = @{ chat_id = $ChatID audio = $fileObject caption = $Caption parse_mode = $ParseMode duration = $Duration performer = $Performer title = $Title file_name = $FileName disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendAudio' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending audio...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram audio message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocalAudio <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocalDocument { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Local path to file you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$File, [Parameter(Mandatory = $false, HelpMessage = 'Caption for file')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Disables automatic server-side content type detection')] [switch]$DisableContentTypeDetection, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying presence of file...' if (-not(Test-Path -Path $File)) { throw ('The specified file was not found: {0}' -f $AnimationPath) } #if_testPath else { Write-Verbose -Message 'Path verified.' } #else_testPath Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $File if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_fileSize else { Write-Verbose -Message 'File size verified.' } #else_fileSize Write-Verbose -Message 'Getting document file...' try { $fileObject = Get-Item $File -ErrorAction Stop } #try_Get-Item catch { Write-Warning -Message 'The specified file could not be interpreted properly.' throw $_ } #catch_Get-Item $form = @{ chat_id = $ChatID document = $fileObject caption = $Caption parse_mode = $ParseMode disable_content_type_detection = $DisableContentTypeDetection.IsPresent disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendDocument' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending document...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram document message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocalDocument <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocalPhoto { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'File path to the photo you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$PhotoPath, [Parameter(Mandatory = $false, HelpMessage = 'Photo caption')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Photo needs to be covered with a spoiler animation')] [switch]$HasSpoiler, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying presence of photo...' if (-not(Test-Path -Path $PhotoPath)) { throw ('The specified photo path: {0} was not found.' -f $PhotoPath) } #if_testPath else { Write-Verbose -Message 'Path verified.' } #else_testPath Write-Verbose -Message 'Verifying extension type...' $fileTypeEval = Test-FileExtension -FilePath $PhotoPath -Type Photo if ($fileTypeEval -eq $false) { throw 'File extension is not a supported Photo type' } #if_photoExtension else { Write-Verbose -Message 'Extension supported.' } #else_photoExtension Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $PhotoPath if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_photoSize else { Write-Verbose -Message 'File size verified.' } #else_photoSize Write-Verbose -Message 'Getting photo file...' try { $fileObject = Get-Item $PhotoPath -ErrorAction Stop } #try_Get-ItemPhoto catch { Write-Warning -Message 'The specified photo could not be interpreted properly.' throw $_ } #catch_Get-ItemPhoto $form = @{ chat_id = $ChatID photo = $fileObject caption = $Caption parse_mode = $ParseMode has_spoiler = $HasSpoiler.IsPresent disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendphoto' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending photo...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram photo message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocalPhoto <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocalSticker { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'File path to the sticker you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$StickerPath, [Parameter(Mandatory = $false, HelpMessage = 'Emoji associated with the sticker')] [ValidatePattern('\p{So}|\p{Cs}')] [string]$Emoji, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying presence of sticker...' $pathEval = Test-Path -Path $StickerPath Write-Verbose -Message ('Path Evaluated Outcome: {0}' -f $pathEval) if (-not(Test-Path -Path $StickerPath)) { throw ('The specified sticker path: {0} was not found.' -f $AnimationPath) } #if_testPath else { Write-Verbose -Message 'Path verified.' } #else_testPath Write-Verbose -Message 'Verifying extension type...' $fileTypeEval = Test-FileExtension -FilePath $StickerPath -Type Sticker if ($fileTypeEval -eq $false) { throw 'File extension is not a supported Sticker type' } #if_stickerExtension else { Write-Verbose -Message 'Extension supported.' } #else_stickerExtension Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $StickerPath if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_stickerSize else { Write-Verbose -Message 'File size verified.' } #else_stickerSize Write-Verbose -Message 'Getting sticker file...' try { $fileObject = Get-Item $StickerPath -ErrorAction Stop } #try_Get-ItemSticker catch { Write-Warning -Message 'The specified sticker could not be interpreted properly.' throw $_ } #catch_Get-ItemSticker $form = @{ chat_id = $ChatID sticker = $fileObject disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form if ($Emoji) { $form.Add('emoji', $Emoji) } #if_emoji $uri = 'https://api.telegram.org/bot{0}/sendSticker' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending sticker...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram sticker message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocalSticker <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocalVideo { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Local path to file you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$Video, [Parameter(Mandatory = $false, HelpMessage = 'Duration of video in seconds')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [Int32]$Duration, [Parameter(Mandatory = $false, HelpMessage = 'Video width')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [Int32]$Width, [Parameter(Mandatory = $false, HelpMessage = 'Video height')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [Int32]$Height, [Parameter(Mandatory = $false, HelpMessage = 'Original File Name')] [string]$FileName, [Parameter(Mandatory = $false, HelpMessage = 'Caption for file')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Video needs to be covered with a spoiler animation')] [switch]$HasSpoiler, [Parameter(Mandatory = $false, HelpMessage = 'Use if the uploaded video is suitable for streaming')] [switch]$Streaming, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying presence of file...' if (-not(Test-Path -Path $Video)) { throw ('The specified video file: {0} was not found.' -f $Video) } #if_testPath else { Write-Verbose -Message 'Path verified.' } #else_testPath Write-Verbose -Message 'Verifying extension type...' $fileTypeEval = Test-FileExtension -FilePath $Video -Type Video if ($fileTypeEval -eq $false) { throw 'File extension is not a supported Video type' } #if_videoExtension else { Write-Verbose -Message 'Extension supported.' } #else_videoExtension Write-Verbose -Message 'Verifying file size...' $fileSizeEval = Test-FileSize -Path $Video if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_videoSize else { Write-Verbose -Message 'File size verified.' } #else_videoSize Write-Verbose -Message 'Getting video file...' try { $fileObject = Get-Item $Video -ErrorAction Stop } #try_Get-ItemVideo catch { Write-Warning -Message 'The specified video file could not be interpreted properly.' throw $_ } #catch_Get-ItemVideo $form = @{ chat_id = $ChatID video = $fileObject duration = $Duration width = $Width height = $Height file_name = $FileName caption = $Caption parse_mode = $ParseMode has_spoiler = $HasSpoiler.IsPresent supports_streaming = $Streaming.IsPresent disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendVideo' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending video...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram video message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocalVideo <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramLocation { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Latitude of the location')] [ValidateRange(-90, 90)] [single]$Latitude, [Parameter(Mandatory = $true, HelpMessage = 'Longitude of the location')] [ValidateRange(-180, 180)] [single]$Longitude, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $form = @{ chat_id = $ChatID latitude = $Latitude longitude = $Longitude disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendLocation' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending location...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram location:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramLocation <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramMediaGroup { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Type of media to send')] [ValidateSet('Photo', 'Video', 'Document', 'Audio')] [string]$MediaType, [Parameter(Mandatory = $false, HelpMessage = 'List of filepaths for media you want to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string[]]$FilePaths, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $MediaType = $MediaType.ToLower() Write-Verbose -Message ('You have specified a media type of: {0}' -f $MediaType) Write-Verbose -Message 'Testing if media group meets requirements...' $mediaGroupReqsEval = Test-MediaGroupRequirements -MediaType $MediaType -FilePath $FilePaths if (-not $mediaGroupReqsEval) { throw 'Telegram media group requirements not met' } Write-Verbose -Message 'Forming serialized JSON for all media files...' $form = @{ chat_id = $ChatID; disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent media = '' } $json = @' [ '@ $i = 1 foreach ($file in $FilePaths) { $fInfo = $null try { $fInfo = Get-Item -Path $file -ErrorAction Stop } catch { throw ('An issue was encountered retrieving data from: {0}' -f $file) } $Form += @{"$MediaType$i" = $fInfo } $json += "{`"type`":`"$MediaType`",`"`media`":`"attach://$MediaType$i`"}," $i++ } $json = $json.Substring(0, $json.Length - 1) $json += @' ] '@ $Form.media = $json Write-Verbose -Message 'JSON formation completed.' $uri = 'https://api.telegram.org/bot{0}/sendMediaGroup' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending media...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } Write-Verbose -Message 'Sending media...' try { $results = Invoke-RestMethod @invokeRestMethodSplat Write-Verbose -Message 'Media sent.' } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram media message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramMediaGroup <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramPoll { [CmdletBinding(DefaultParameterSetName = 'default')] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Poll question')] [ValidateLength(1, 300)] [string]$Question, [Parameter(Mandatory = $true, HelpMessage = 'String array of answer options')] [ValidateNotNullOrEmpty()] [string[]]$Options, [Parameter(Mandatory = $false, HelpMessage = 'Set the poll to be anonymous or not')] [bool]$IsAnonymous = $true, #default is anonymous [Parameter(Mandatory = $false, HelpMessage = 'Poll Type')] [ValidateSet('quiz', 'regular')] [string]$PollType = 'regular', #default is regular [Parameter(Mandatory = $false, HelpMessage = 'Poll allows multiple answers - ignored in quiz mode')] [bool]$MultipleAnswers = $false, #default is false [Parameter(Mandatory = $false, HelpMessage = 'Quiz answer designator')] [int]$QuizAnswer, [Parameter(Mandatory = $false, HelpMessage = 'Text that is shown when a user chooses an incorrect answer')] [string]$Explanation, [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for explanation formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ExplanationParseMode = 'HTML', #set to HTML by default [Parameter(ParameterSetName = 'OpenPeriod', Mandatory = $false, HelpMessage = 'Time in seconds the poll/quiz will be active after creation')] [ValidateRange(5, 600)] [int]$OpenPeriod, [Parameter(ParameterSetName = 'OpenDate', Mandatory = $false, HelpMessage = 'Point in time when the poll will be automatically closed.')] [datetime]$CloseDate, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Testing poll options...' $optionEval = Test-PollOptions -PollOptions $Options if ($optionEval -eq $false) { throw 'Poll options do not meet Telegram requirements' } Write-Verbose -Message 'Converting options to json format...' $Options = $Options | ConvertTo-Json $form = @{ chat_id = $ChatID question = $Question disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent options = $Options is_anonymous = $IsAnonymous type = $PollType allows_multiple_answers = $MultipleAnswers } #form if ($PollType -eq 'quiz') { Write-Verbose -Message 'Processing quiz...' Write-Verbose -Message ('Quiz answer: {0}' -f $QuizAnswer) if (-not ($QuizAnswer -ge 0 -and $QuizAnswer -le 9)) { throw 'When PollType is quiz, you must supply a QuizAnswer designator between 0-9.' } else { $Form += @{correct_option_id = $QuizAnswer } if ($Explanation) { $explanationEval = Test-Explanation -Explanation $Explanation if ($explanationEval -eq $false) { throw 'Explanation does not meet Telegram requirements.' } $Form += @{explanation = $Explanation } $Form += @{explanation_parse_mode = $ExplanationParseMode } } } } if ($OpenPeriod) { $Form += @{open_period = $OpenPeriod } } if ($CloseDate) { $Form += @{close_date = (New-TimeSpan -Start (Get-Date) -End $CloseDate).TotalSeconds } } $uri = 'https://api.telegram.org/bot{0}/sendPoll' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending poll...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram poll:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramPoll <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramSticker { [CmdletBinding()] param ( [Parameter(ParameterSetName = 'FileIDG')] [Parameter(ParameterSetName = 'FileEmojiG')] [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(ParameterSetName = 'FileIDG')] [Parameter(ParameterSetName = 'FileEmojiG')] [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(ParameterSetName = 'FileIDG')] [Parameter(Mandatory = $true, ParameterSetName = 'ByFileID', HelpMessage = 'Telegram sticker file_id')] [string]$FileID, [Parameter(ParameterSetName = 'FileEmojiG')] [Parameter(Mandatory = $true, ParameterSetName = 'BySPShortCode', HelpMessage = 'Name of the sticker set')] [string]$StickerSetName, [Parameter(ParameterSetName = 'FileEmojiG')] [Parameter(Mandatory = $true, ParameterSetName = 'BySPShortCode', HelpMessage = 'Specifies the shortcode of the emoji to retrieve')] [ArgumentCompletions( ':1st_place_medal:', ':2nd_place_medal:', ':3rd_place_medal:', "':A_button_(blood_type):'", "':AB_button_(blood_type):'", ':abacus:', ':accordion:', ':adhesive_bandage:', ':admission_tickets:', ':aerial_tramway:', ':airplane_arrival:', ':airplane_departure:', ':airplane:', ':alarm_clock:', ':alembic:', ':alien_monster:', ':alien:', ':ambulance:', ':american_football:', ':amphora:', ':anatomical_heart:', ':anchor:', ':anger_symbol:', ':angry_face_with_horns:', ':angry_face:', ':anguished_face:', ':ant:', ':antenna_bars:', ':anxious_face_with_sweat:', ':Aquarius:', ':Aries:', ':articulated_lorry:', ':artist_palette:', ':artist:', ':artist:_dark_skin_tone:', ':artist:_light_skin_tone:', ':artist:_medium_skin_tone:', ':artist:_medium-dark_skin_tone:', ':artist:_medium-light_skin_tone:', ':astonished_face:', ':astronaut:', ':astronaut:_dark_skin_tone:', ':astronaut:_light_skin_tone:', ':astronaut:_medium_skin_tone:', ':astronaut:_medium-dark_skin_tone:', ':astronaut:_medium-light_skin_tone:', ':ATM_sign:', ':atom_symbol:', ':auto_rickshaw:', ':automobile:', ':avocado:', ':axe:', "':B_button_(blood_type):'", ':baby_angel:', ':baby_angel:_dark_skin_tone:', ':baby_angel:_light_skin_tone:', ':baby_angel:_medium_skin_tone:', ':baby_angel:_medium-dark_skin_tone:', ':baby_angel:_medium-light_skin_tone:', ':baby_bottle:', ':baby_chick:', ':baby_symbol:', ':baby:', ':baby:_dark_skin_tone:', ':baby:_light_skin_tone:', ':baby:_medium_skin_tone:', ':baby:_medium-dark_skin_tone:', ':baby:_medium-light_skin_tone:', ':BACK_arrow:', ':backhand_index_pointing_down:', ':backhand_index_pointing_down:_dark_skin_tone:', ':backhand_index_pointing_down:_light_skin_tone:', ':backhand_index_pointing_down:_medium_skin_tone:', ':backhand_index_pointing_down:_medium-dark_skin_tone:', ':backhand_index_pointing_down:_medium-light_skin_tone:', ':backhand_index_pointing_left:', ':backhand_index_pointing_left:_dark_skin_tone:', ':backhand_index_pointing_left:_light_skin_tone:', ':backhand_index_pointing_left:_medium_skin_tone:', ':backhand_index_pointing_left:_medium-dark_skin_tone:', ':backhand_index_pointing_left:_medium-light_skin_tone:', ':backhand_index_pointing_right:', ':backhand_index_pointing_right:_dark_skin_tone:', ':backhand_index_pointing_right:_light_skin_tone:', ':backhand_index_pointing_right:_medium_skin_tone:', ':backhand_index_pointing_right:_medium-dark_skin_tone:', ':backhand_index_pointing_right:_medium-light_skin_tone:', ':backhand_index_pointing_up:', ':backhand_index_pointing_up:_dark_skin_tone:', ':backhand_index_pointing_up:_light_skin_tone:', ':backhand_index_pointing_up:_medium_skin_tone:', ':backhand_index_pointing_up:_medium-dark_skin_tone:', ':backhand_index_pointing_up:_medium-light_skin_tone:', ':backpack:', ':bacon:', ':badger:', ':badminton:', ':bagel:', ':baggage_claim:', ':baguette_bread:', ':balance_scale:', ':bald:', ':ballet_shoes:', ':balloon:', ':ballot_box_with_ballot:', ':banana:', ':banjo:', ':bank:', ':bar_chart:', ':barber_pole:', ':baseball:', ':basket:', ':basketball:', ':bat:', ':bathtub:', ':battery:', ':beach_with_umbrella:', ':beaming_face_with_smiling_eyes:', ':beans:', ':bear:', ':beating_heart:', ':beaver:', ':bed:', ':beer_mug:', ':beetle:', ':bell_pepper:', ':bell_with_slash:', ':bell:', ':bellhop_bell:', ':bento_box:', ':beverage_box:', ':bicycle:', ':bikini:', ':billed_cap:', ':biohazard:', ':bird:', ':birthday_cake:', ':bison:', ':biting_lip:', ':black_bird:', ':black_cat:', ':black_circle:', ':black_flag:', ':black_heart:', ':black_large_square:', ':black_medium_square:', ':black_medium-small_square:', ':black_nib:', ':black_small_square:', ':black_square_button:', ':blossom:', ':blowfish:', ':blue_book:', ':blue_circle:', ':blue_heart:', ':blue_square:', ':blueberries:', ':boar:', ':bomb:', ':bone:', ':bookmark_tabs:', ':bookmark:', ':books:', ':boomerang:', ':bottle_with_popping_cork:', ':bouquet:', ':bow_and_arrow:', ':bowl_with_spoon:', ':bowling:', ':boxing_glove:', ':boy:', ':boy:_dark_skin_tone:', ':boy:_light_skin_tone:', ':boy:_medium_skin_tone:', ':boy:_medium-dark_skin_tone:', ':boy:_medium-light_skin_tone:', ':brain:', ':bread:', ':breast-feeding:', ':breast-feeding:_dark_skin_tone:', ':breast-feeding:_light_skin_tone:', ':breast-feeding:_medium_skin_tone:', ':breast-feeding:_medium-dark_skin_tone:', ':breast-feeding:_medium-light_skin_tone:', ':brick:', ':bridge_at_night:', ':briefcase:', ':briefs:', ':bright_button:', ':broccoli:', ':broken_chain:', ':broken_heart:', ':broom:', ':brown_circle:', ':brown_heart:', ':brown_mushroom:', ':brown_square:', ':bubble_tea:', ':bubbles:', ':bucket:', ':bug:', ':building_construction:', ':bullet_train:', ':bullseye:', ':burrito:', ':bus_stop:', ':bus:', ':bust_in_silhouette:', ':busts_in_silhouette:', ':butter:', ':butterfly:', ':cactus:', ':calendar:', ':call_me_hand:', ':call_me_hand:_dark_skin_tone:', ':call_me_hand:_light_skin_tone:', ':call_me_hand:_medium_skin_tone:', ':call_me_hand:_medium-dark_skin_tone:', ':call_me_hand:_medium-light_skin_tone:', ':camel:', ':camera_with_flash:', ':camera:', ':camping:', ':Cancer:', ':candle:', ':candy:', ':canned_food:', ':canoe:', ':Capricorn:', ':card_file_box:', ':card_index_dividers:', ':card_index:', ':carousel_horse:', ':carp_streamer:', ':carpentry_saw:', ':carrot:', ':castle:', ':cat_face:', ':cat_with_tears_of_joy:', ':cat_with_wry_smile:', ':cat:', ':chains:', ':chair:', ':chart_decreasing:', ':chart_increasing_with_yen:', ':chart_increasing:', ':check_box_with_check:', ':check_mark_button:', ':check_mark:', ':cheese_wedge:', ':chequered_flag:', ':cherries:', ':cherry_blossom:', ':chess_pawn:', ':chestnut:', ':chicken:', ':child:', ':child:_dark_skin_tone:', ':child:_light_skin_tone:', ':child:_medium_skin_tone:', ':child:_medium-dark_skin_tone:', ':child:_medium-light_skin_tone:', ':children_crossing:', ':chipmunk:', ':chocolate_bar:', ':chopsticks:', ':Christmas_tree:', ':church:', ':cigarette:', ':cinema:', ':circled_M:', ':circus_tent:', ':cityscape_at_dusk:', ':cityscape:', ':CL_button:', ':clamp:', ':clapper_board:', ':clapping_hands:', ':clapping_hands:_dark_skin_tone:', ':clapping_hands:_light_skin_tone:', ':clapping_hands:_medium_skin_tone:', ':clapping_hands:_medium-dark_skin_tone:', ':clapping_hands:_medium-light_skin_tone:', ':classical_building:', ':clinking_beer_mugs:', ':clinking_glasses:', ':clipboard:', ':clockwise_vertical_arrows:', ':closed_book:', ':closed_mailbox_with_lowered_flag:', ':closed_mailbox_with_raised_flag:', ':closed_umbrella:', ':cloud_with_lightning_and_rain:', ':cloud_with_lightning:', ':cloud_with_rain:', ':cloud_with_snow:', ':cloud:', ':clown_face:', ':club_suit:', ':clutch_bag:', ':coat:', ':cockroach:', ':cocktail_glass:', ':coconut:', ':coffin:', ':coin:', ':cold_face:', ':collision:', ':comet:', ':compass:', ':computer_disk:', ':computer_mouse:', ':confetti_ball:', ':confounded_face:', ':confused_face:', ':construction_worker:', ':construction_worker:_dark_skin_tone:', ':construction_worker:_light_skin_tone:', ':construction_worker:_medium_skin_tone:', ':construction_worker:_medium-dark_skin_tone:', ':construction_worker:_medium-light_skin_tone:', ':construction:', ':control_knobs:', ':convenience_store:', ':cook:', ':cook:_dark_skin_tone:', ':cook:_light_skin_tone:', ':cook:_medium_skin_tone:', ':cook:_medium-dark_skin_tone:', ':cook:_medium-light_skin_tone:', ':cooked_rice:', ':cookie:', ':cooking:', ':COOL_button:', ':copyright:', ':coral:', ':couch_and_lamp:', ':counterclockwise_arrows_button:', ':couple_with_heart:', ':couple_with_heart:_dark_skin_tone:', ':couple_with_heart:_light_skin_tone:', ':couple_with_heart:_man,_man,_dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_man,_man,_dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_man,_man,_dark_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_man,_man,_dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_man,_man,_dark_skin_tone:', ':couple_with_heart:_man,_man,_light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_man,_man,_light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_man,_man,_light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_man,_man,_light_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_man,_man,_light_skin_tone:', ':couple_with_heart:_man,_man,_medium_skin_tone,_dark_skin_tone:', ':couple_with_heart:_man,_man,_medium_skin_tone,_light_skin_tone:', ':couple_with_heart:_man,_man,_medium_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_man,_man,_medium_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_man,_man,_medium_skin_tone:', ':couple_with_heart:_man,_man,_medium-dark_skin_tone,_dark_skin_tone:', ':couple_with_heart:_man,_man,_medium-dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_man,_man,_medium-dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_man,_man,_medium-dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_man,_man,_medium-dark_skin_tone:', ':couple_with_heart:_man,_man,_medium-light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_man,_man,_medium-light_skin_tone,_light_skin_tone:', ':couple_with_heart:_man,_man,_medium-light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_man,_man,_medium-light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_man,_man,_medium-light_skin_tone:', ':couple_with_heart:_man,_man:', ':couple_with_heart:_medium_skin_tone:', ':couple_with_heart:_medium-dark_skin_tone:', ':couple_with_heart:_medium-light_skin_tone:', ':couple_with_heart:_person,_person,_dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_person,_person,_dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_person,_person,_dark_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_person,_person,_dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_person,_person,_light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_person,_person,_light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_person,_person,_light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_person,_person,_light_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_person,_person,_medium_skin_tone,_dark_skin_tone:', ':couple_with_heart:_person,_person,_medium_skin_tone,_light_skin_tone:', ':couple_with_heart:_person,_person,_medium_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_person,_person,_medium_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_person,_person,_medium-dark_skin_tone,_dark_skin_tone:', ':couple_with_heart:_person,_person,_medium-dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_person,_person,_medium-dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_person,_person,_medium-dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_person,_person,_medium-light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_person,_person,_medium-light_skin_tone,_light_skin_tone:', ':couple_with_heart:_person,_person,_medium-light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_person,_person,_medium-light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_man,_dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_man,_dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_man,_dark_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_man,_dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_man,_dark_skin_tone:', ':couple_with_heart:_woman,_man,_light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_man,_light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_man,_light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_man,_light_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_man,_light_skin_tone:', ':couple_with_heart:_woman,_man,_medium_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_man,_medium_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_man,_medium_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_man,_medium_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_man,_medium_skin_tone:', ':couple_with_heart:_woman,_man,_medium-dark_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_man,_medium-dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_man,_medium-dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_man,_medium-dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_man,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_man,_medium-light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_man,_medium-light_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_man,_medium-light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_man,_medium-light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_man,_medium-light_skin_tone:', ':couple_with_heart:_woman,_man:', ':couple_with_heart:_woman,_woman,_dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_woman,_dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_woman,_dark_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_woman,_dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_woman,_dark_skin_tone:', ':couple_with_heart:_woman,_woman,_light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_woman,_light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_woman,_light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_woman,_light_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_woman,_light_skin_tone:', ':couple_with_heart:_woman,_woman,_medium_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_woman,_medium_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_woman,_medium_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_woman,_medium_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_woman,_medium_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-dark_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-dark_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-dark_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-dark_skin_tone,_medium-light_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-light_skin_tone,_dark_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-light_skin_tone,_light_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-light_skin_tone,_medium_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-light_skin_tone,_medium-dark_skin_tone:', ':couple_with_heart:_woman,_woman,_medium-light_skin_tone:', ':couple_with_heart:_woman,_woman:', ':cow_face:', ':cow:', ':cowboy_hat_face:', ':crab:', ':crayon:', ':credit_card:', ':crescent_moon:', ':cricket_game:', ':cricket:', ':crocodile:', ':croissant:', ':cross_mark_button:', ':cross_mark:', ':crossed_fingers:', ':crossed_fingers:_dark_skin_tone:', ':crossed_fingers:_light_skin_tone:', ':crossed_fingers:_medium_skin_tone:', ':crossed_fingers:_medium-dark_skin_tone:', ':crossed_fingers:_medium-light_skin_tone:', ':crossed_flags:', ':crossed_swords:', ':crown:', ':crutch:', ':crying_cat:', ':crying_face:', ':crystal_ball:', ':cucumber:', ':cup_with_straw:', ':cupcake:', ':curling_stone:', ':curly_hair:', ':curly_loop:', ':currency_exchange:', ':curry_rice:', ':custard:', ':customs:', ':cut_of_meat:', ':cyclone:', ':dagger:', ':dango:', ':dark_skin_tone:', ':dashing_away:', ':deaf_man:', ':deaf_man:_dark_skin_tone:', ':deaf_man:_light_skin_tone:', ':deaf_man:_medium_skin_tone:', ':deaf_man:_medium-dark_skin_tone:', ':deaf_man:_medium-light_skin_tone:', ':deaf_person:', ':deaf_person:_dark_skin_tone:', ':deaf_person:_light_skin_tone:', ':deaf_person:_medium_skin_tone:', ':deaf_person:_medium-dark_skin_tone:', ':deaf_person:_medium-light_skin_tone:', ':deaf_woman:', ':deaf_woman:_dark_skin_tone:', ':deaf_woman:_light_skin_tone:', ':deaf_woman:_medium_skin_tone:', ':deaf_woman:_medium-dark_skin_tone:', ':deaf_woman:_medium-light_skin_tone:', ':deciduous_tree:', ':deer:', ':delivery_truck:', ':department_store:', ':derelict_house:', ':desert_island:', ':desert:', ':desktop_computer:', ':detective:', ':detective:_dark_skin_tone:', ':detective:_light_skin_tone:', ':detective:_medium_skin_tone:', ':detective:_medium-dark_skin_tone:', ':detective:_medium-light_skin_tone:', ':diamond_suit:', ':diamond_with_a_dot:', ':dim_button:', ':disappointed_face:', ':disguised_face:', ':divide:', ':diving_mask:', ':diya_lamp:', ':dizzy:', ':dna:', ':dodo:', ':dog_face:', ':dog:', ':dollar_banknote:', ':dolphin:', ':donkey:', ':door:', ':dotted_line_face:', ':dotted_six-pointed_star:', ':double_curly_loop:', ':double_exclamation_mark:', ':doughnut:', ':dove:', ':down_arrow:', ':down-left_arrow:', ':down-right_arrow:', ':downcast_face_with_sweat:', ':downwards_button:', ':dragon_face:', ':dragon:', ':dress:', ':drooling_face:', ':drop_of_blood:', ':droplet:', ':drum:', ':duck:', ':dumpling:', ':dvd:', ':e-mail:', ':eagle:', ':ear_of_corn:', ':ear_with_hearing_aid:', ':ear_with_hearing_aid:_dark_skin_tone:', ':ear_with_hearing_aid:_light_skin_tone:', ':ear_with_hearing_aid:_medium_skin_tone:', ':ear_with_hearing_aid:_medium-dark_skin_tone:', ':ear_with_hearing_aid:_medium-light_skin_tone:', ':ear:', ':ear:_dark_skin_tone:', ':ear:_light_skin_tone:', ':ear:_medium_skin_tone:', ':ear:_medium-dark_skin_tone:', ':ear:_medium-light_skin_tone:', ':egg:', ':eggplant:', ':eight_o''clock:', ':eight-pointed_star:', ':eight-spoked_asterisk:', ':eight-thirty:', ':eject_button:', ':electric_plug:', ':elephant:', ':elevator:', ':eleven_o''clock:', ':eleven-thirty:', ':elf:', ':elf:_dark_skin_tone:', ':elf:_light_skin_tone:', ':elf:_medium_skin_tone:', ':elf:_medium-dark_skin_tone:', ':elf:_medium-light_skin_tone:', ':empty_nest:', ':END_arrow:', ':enraged_face:', ':envelope_with_arrow:', ':envelope:', ':euro_banknote:', ':evergreen_tree:', ':ewe:', ':exclamation_question_mark:', ':exploding_head:', ':expressionless_face:', ':eye_in_speech_bubble:', ':eye:', ':eyes:', ':face_blowing_a_kiss:', ':face_exhaling:', ':face_holding_back_tears:', ':face_in_clouds:', ':face_savoring_food:', ':face_screaming_in_fear:', ':face_vomiting:', ':face_with_crossed-out_eyes:', ':face_with_diagonal_mouth:', ':face_with_hand_over_mouth:', ':face_with_head-bandage:', ':face_with_medical_mask:', ':face_with_monocle:', ':face_with_open_eyes_and_hand_over_mouth:', ':face_with_open_mouth:', ':face_with_peeking_eye:', ':face_with_raised_eyebrow:', ':face_with_rolling_eyes:', ':face_with_spiral_eyes:', ':face_with_steam_from_nose:', ':face_with_symbols_on_mouth:', ':face_with_tears_of_joy:', ':face_with_thermometer:', ':face_with_tongue:', ':face_without_mouth:', ':factory_worker:', ':factory_worker:_dark_skin_tone:', ':factory_worker:_light_skin_tone:', ':factory_worker:_medium_skin_tone:', ':factory_worker:_medium-dark_skin_tone:', ':factory_worker:_medium-light_skin_tone:', ':factory:', ':fairy:', ':fairy:_dark_skin_tone:', ':fairy:_light_skin_tone:', ':fairy:_medium_skin_tone:', ':fairy:_medium-dark_skin_tone:', ':fairy:_medium-light_skin_tone:', ':falafel:', ':fallen_leaf:', ':family:', ':family:_adult,_adult,_child,_child:', ':family:_adult,_adult,_child:', ':family:_adult,_child,_child:', ':family:_adult,_child:', ':family:_man,_boy,_boy:', ':family:_man,_boy:', ':family:_man,_girl,_boy:', ':family:_man,_girl,_girl:', ':family:_man,_girl:', ':family:_man,_man,_boy,_boy:', ':family:_man,_man,_boy:', ':family:_man,_man,_girl,_boy:', ':family:_man,_man,_girl,_girl:', ':family:_man,_man,_girl:', ':family:_man,_woman,_boy,_boy:', ':family:_man,_woman,_boy:', ':family:_man,_woman,_girl,_boy:', ':family:_man,_woman,_girl,_girl:', ':family:_man,_woman,_girl:', ':family:_woman,_boy,_boy:', ':family:_woman,_boy:', ':family:_woman,_girl,_boy:', ':family:_woman,_girl,_girl:', ':family:_woman,_girl:', ':family:_woman,_woman,_boy,_boy:', ':family:_woman,_woman,_boy:', ':family:_woman,_woman,_girl,_boy:', ':family:_woman,_woman,_girl,_girl:', ':family:_woman,_woman,_girl:', ':farmer:', ':farmer:_dark_skin_tone:', ':farmer:_light_skin_tone:', ':farmer:_medium_skin_tone:', ':farmer:_medium-dark_skin_tone:', ':farmer:_medium-light_skin_tone:', ':fast_down_button:', ':fast_reverse_button:', ':fast_up_button:', ':fast-forward_button:', ':fax_machine:', ':fearful_face:', ':feather:', ':female_sign:', ':ferris_wheel:', ':ferry:', ':field_hockey:', ':file_cabinet:', ':file_folder:', ':film_frames:', ':film_projector:', ':fire_engine:', ':fire_extinguisher:', ':fire:', ':firecracker:', ':firefighter:', ':firefighter:_dark_skin_tone:', ':firefighter:_light_skin_tone:', ':firefighter:_medium_skin_tone:', ':firefighter:_medium-dark_skin_tone:', ':firefighter:_medium-light_skin_tone:', ':fireworks:', ':first_quarter_moon_face:', ':first_quarter_moon:', ':fish_cake_with_swirl:', ':fish:', ':fishing_pole:', ':five_o''clock:', ':five-thirty:', ':flag_in_hole:', ':flag:_Afghanistan:', ':flag:_Åland_Islands:', ':flag:_Albania:', ':flag:_Algeria:', ':flag:_American_Samoa:', ':flag:_Andorra:', ':flag:_Angola:', ':flag:_Anguilla:', ':flag:_Antarctica:', ':flag:_Antigua_&_Barbuda:', ':flag:_Argentina:', ':flag:_Armenia:', ':flag:_Aruba:', ':flag:_Ascension_Island:', ':flag:_Australia:', ':flag:_Austria:', ':flag:_Azerbaijan:', ':flag:_Bahamas:', ':flag:_Bahrain:', ':flag:_Bangladesh:', ':flag:_Barbados:', ':flag:_Belarus:', ':flag:_Belgium:', ':flag:_Belize:', ':flag:_Benin:', ':flag:_Bermuda:', ':flag:_Bhutan:', ':flag:_Bolivia:', ':flag:_Bosnia_&_Herzegovina:', ':flag:_Botswana:', ':flag:_Bouvet_Island:', ':flag:_Brazil:', ':flag:_British_Indian_Ocean_Territory:', ':flag:_British_Virgin_Islands:', ':flag:_Brunei:', ':flag:_Bulgaria:', ':flag:_Burkina_Faso:', ':flag:_Burundi:', ':flag:_Cambodia:', ':flag:_Cameroon:', ':flag:_Canada:', ':flag:_Canary_Islands:', ':flag:_Cape_Verde:', ':flag:_Caribbean_Netherlands:', ':flag:_Cayman_Islands:', ':flag:_Central_African_Republic:', ':flag:_Ceuta_&_Melilla:', ':flag:_Chad:', ':flag:_Chile:', ':flag:_China:', ':flag:_Christmas_Island:', ':flag:_Clipperton_Island:', "':flag:_Cocos_(Keeling)_Islands:'", ':flag:_Colombia:', ':flag:_Comoros:', ':flag:_Congo_-_Brazzaville:', ':flag:_Congo_-_Kinshasa:', ':flag:_Cook_Islands:', ':flag:_Costa_Rica:', ':flag:_Côte_d''Ivoire:', ':flag:_Croatia:', ':flag:_Cuba:', ':flag:_Curaçao:', ':flag:_Cyprus:', ':flag:_Czechia:', ':flag:_Denmark:', ':flag:_Diego_Garcia:', ':flag:_Djibouti:', ':flag:_Dominica:', ':flag:_Dominican_Republic:', ':flag:_Ecuador:', ':flag:_Egypt:', ':flag:_El_Salvador:', ':flag:_England:', ':flag:_Equatorial_Guinea:', ':flag:_Eritrea:', ':flag:_Estonia:', ':flag:_Eswatini:', ':flag:_Ethiopia:', ':flag:_European_Union:', ':flag:_Falkland_Islands:', ':flag:_Faroe_Islands:', ':flag:_Fiji:', ':flag:_Finland:', ':flag:_France:', ':flag:_French_Guiana:', ':flag:_French_Polynesia:', ':flag:_French_Southern_Territories:', ':flag:_Gabon:', ':flag:_Gambia:', ':flag:_Georgia:', ':flag:_Germany:', ':flag:_Ghana:', ':flag:_Gibraltar:', ':flag:_Greece:', ':flag:_Greenland:', ':flag:_Grenada:', ':flag:_Guadeloupe:', ':flag:_Guam:', ':flag:_Guatemala:', ':flag:_Guernsey:', ':flag:_Guinea-Bissau:', ':flag:_Guinea:', ':flag:_Guyana:', ':flag:_Haiti:', ':flag:_Heard_&_McDonald_Islands:', ':flag:_Honduras:', ':flag:_Hong_Kong_SAR_China:', ':flag:_Hungary:', ':flag:_Iceland:', ':flag:_India:', ':flag:_Indonesia:', ':flag:_Iran:', ':flag:_Iraq:', ':flag:_Ireland:', ':flag:_Isle_of_Man:', ':flag:_Israel:', ':flag:_Italy:', ':flag:_Jamaica:', ':flag:_Japan:', ':flag:_Jersey:', ':flag:_Jordan:', ':flag:_Kazakhstan:', ':flag:_Kenya:', ':flag:_Kiribati:', ':flag:_Kosovo:', ':flag:_Kuwait:', ':flag:_Kyrgyzstan:', ':flag:_Laos:', ':flag:_Latvia:', ':flag:_Lebanon:', ':flag:_Lesotho:', ':flag:_Liberia:', ':flag:_Libya:', ':flag:_Liechtenstein:', ':flag:_Lithuania:', ':flag:_Luxembourg:', ':flag:_Macao_SAR_China:', ':flag:_Madagascar:', ':flag:_Malawi:', ':flag:_Malaysia:', ':flag:_Maldives:', ':flag:_Mali:', ':flag:_Malta:', ':flag:_Marshall_Islands:', ':flag:_Martinique:', ':flag:_Mauritania:', ':flag:_Mauritius:', ':flag:_Mayotte:', ':flag:_Mexico:', ':flag:_Micronesia:', ':flag:_Moldova:', ':flag:_Monaco:', ':flag:_Mongolia:', ':flag:_Montenegro:', ':flag:_Montserrat:', ':flag:_Morocco:', ':flag:_Mozambique:', "':flag:_Myanmar_(Burma):'", ':flag:_Namibia:', ':flag:_Nauru:', ':flag:_Nepal:', ':flag:_Netherlands:', ':flag:_New_Caledonia:', ':flag:_New_Zealand:', ':flag:_Nicaragua:', ':flag:_Niger:', ':flag:_Nigeria:', ':flag:_Niue:', ':flag:_Norfolk_Island:', ':flag:_North_Korea:', ':flag:_North_Macedonia:', ':flag:_Northern_Mariana_Islands:', ':flag:_Norway:', ':flag:_Oman:', ':flag:_Pakistan:', ':flag:_Palau:', ':flag:_Palestinian_Territories:', ':flag:_Panama:', ':flag:_Papua_New_Guinea:', ':flag:_Paraguay:', ':flag:_Peru:', ':flag:_Philippines:', ':flag:_Pitcairn_Islands:', ':flag:_Poland:', ':flag:_Portugal:', ':flag:_Puerto_Rico:', ':flag:_Qatar:', ':flag:_Réunion:', ':flag:_Romania:', ':flag:_Russia:', ':flag:_Rwanda:', ':flag:_Samoa:', ':flag:_San_Marino:', ':flag:_São_Tomé_&_Príncipe:', ':flag:_Saudi_Arabia:', ':flag:_Scotland:', ':flag:_Senegal:', ':flag:_Serbia:', ':flag:_Seychelles:', ':flag:_Sierra_Leone:', ':flag:_Singapore:', ':flag:_Sint_Maarten:', ':flag:_Slovakia:', ':flag:_Slovenia:', ':flag:_Solomon_Islands:', ':flag:_Somalia:', ':flag:_South_Africa:', ':flag:_South_Georgia_&_South_Sandwich_Islands:', ':flag:_South_Korea:', ':flag:_South_Sudan:', ':flag:_Spain:', ':flag:_Sri_Lanka:', ':flag:_St._Barthélemy:', ':flag:_St._Helena:', ':flag:_St._Kitts_&_Nevis:', ':flag:_St._Lucia:', ':flag:_St._Martin:', ':flag:_St._Pierre_&_Miquelon:', ':flag:_St._Vincent_&_Grenadines:', ':flag:_Sudan:', ':flag:_Suriname:', ':flag:_Svalbard_&_Jan_Mayen:', ':flag:_Sweden:', ':flag:_Switzerland:', ':flag:_Syria:', ':flag:_Taiwan:', ':flag:_Tajikistan:', ':flag:_Tanzania:', ':flag:_Thailand:', ':flag:_Timor-Leste:', ':flag:_Togo:', ':flag:_Tokelau:', ':flag:_Tonga:', ':flag:_Trinidad_&_Tobago:', ':flag:_Tristan_da_Cunha:', ':flag:_Tunisia:', ':flag:_Türkiye:', ':flag:_Turkmenistan:', ':flag:_Turks_&_Caicos_Islands:', ':flag:_Tuvalu:', ':flag:_U.S._Outlying_Islands:', ':flag:_U.S._Virgin_Islands:', ':flag:_Uganda:', ':flag:_Ukraine:', ':flag:_United_Arab_Emirates:', ':flag:_United_Kingdom:', ':flag:_United_Nations:', ':flag:_United_States:', ':flag:_Uruguay:', ':flag:_Uzbekistan:', ':flag:_Vanuatu:', ':flag:_Vatican_City:', ':flag:_Venezuela:', ':flag:_Vietnam:', ':flag:_Wales:', ':flag:_Wallis_&_Futuna:', ':flag:_Western_Sahara:', ':flag:_Yemen:', ':flag:_Zambia:', ':flag:_Zimbabwe:', ':flamingo:', ':flashlight:', ':flat_shoe:', ':flatbread:', ':fleur-de-lis:', ':flexed_biceps:', ':flexed_biceps:_dark_skin_tone:', ':flexed_biceps:_light_skin_tone:', ':flexed_biceps:_medium_skin_tone:', ':flexed_biceps:_medium-dark_skin_tone:', ':flexed_biceps:_medium-light_skin_tone:', ':floppy_disk:', ':flower_playing_cards:', ':flushed_face:', ':flute:', ':fly:', ':flying_disc:', ':flying_saucer:', ':fog:', ':foggy:', ':folded_hands:', ':folded_hands:_dark_skin_tone:', ':folded_hands:_light_skin_tone:', ':folded_hands:_medium_skin_tone:', ':folded_hands:_medium-dark_skin_tone:', ':folded_hands:_medium-light_skin_tone:', ':folding_hand_fan:', ':fondue:', ':foot:', ':foot:_dark_skin_tone:', ':foot:_light_skin_tone:', ':foot:_medium_skin_tone:', ':foot:_medium-dark_skin_tone:', ':foot:_medium-light_skin_tone:', ':footprints:', ':fork_and_knife_with_plate:', ':fork_and_knife:', ':fortune_cookie:', ':fountain_pen:', ':fountain:', ':four_leaf_clover:', ':four_o''clock:', ':four-thirty:', ':fox:', ':framed_picture:', ':FREE_button:', ':french_fries:', ':fried_shrimp:', ':frog:', ':front-facing_baby_chick:', ':frowning_face_with_open_mouth:', ':frowning_face:', ':fuel_pump:', ':full_moon_face:', ':full_moon:', ':funeral_urn:', ':game_die:', ':garlic:', ':gear:', ':gem_stone:', ':Gemini:', ':genie:', ':ghost:', ':ginger_root:', ':giraffe:', ':girl:', ':girl:_dark_skin_tone:', ':girl:_light_skin_tone:', ':girl:_medium_skin_tone:', ':girl:_medium-dark_skin_tone:', ':girl:_medium-light_skin_tone:', ':glass_of_milk:', ':glasses:', ':globe_showing_Americas:', ':globe_showing_Asia-Australia:', ':globe_showing_Europe-Africa:', ':globe_with_meridians:', ':gloves:', ':glowing_star:', ':goal_net:', ':goat:', ':goblin:', ':goggles:', ':goose:', ':gorilla:', ':graduation_cap:', ':grapes:', ':green_apple:', ':green_book:', ':green_circle:', ':green_heart:', ':green_salad:', ':green_square:', ':grey_heart:', ':grimacing_face:', ':grinning_cat_with_smiling_eyes:', ':grinning_cat:', ':grinning_face_with_big_eyes:', ':grinning_face_with_smiling_eyes:', ':grinning_face_with_sweat:', ':grinning_face:', ':grinning_squinting_face:', ':growing_heart:', ':guard:', ':guard:_dark_skin_tone:', ':guard:_light_skin_tone:', ':guard:_medium_skin_tone:', ':guard:_medium-dark_skin_tone:', ':guard:_medium-light_skin_tone:', ':guide_dog:', ':guitar:', ':hair_pick:', ':hamburger:', ':hammer_and_pick:', ':hammer_and_wrench:', ':hammer:', ':hamsa:', ':hamster:', ':hand_with_fingers_splayed:', ':hand_with_fingers_splayed:_dark_skin_tone:', ':hand_with_fingers_splayed:_light_skin_tone:', ':hand_with_fingers_splayed:_medium_skin_tone:', ':hand_with_fingers_splayed:_medium-dark_skin_tone:', ':hand_with_fingers_splayed:_medium-light_skin_tone:', ':hand_with_index_finger_and_thumb_crossed:', ':hand_with_index_finger_and_thumb_crossed:_dark_skin_tone:', ':hand_with_index_finger_and_thumb_crossed:_light_skin_tone:', ':hand_with_index_finger_and_thumb_crossed:_medium_skin_tone:', ':hand_with_index_finger_and_thumb_crossed:_medium-dark_skin_tone:', ':hand_with_index_finger_and_thumb_crossed:_medium-light_skin_tone:', ':handbag:', ':handshake:', ':handshake:_dark_skin_tone,_light_skin_tone:', ':handshake:_dark_skin_tone,_medium_skin_tone:', ':handshake:_dark_skin_tone,_medium-dark_skin_tone:', ':handshake:_dark_skin_tone,_medium-light_skin_tone:', ':handshake:_dark_skin_tone:', ':handshake:_light_skin_tone,_dark_skin_tone:', ':handshake:_light_skin_tone,_medium_skin_tone:', ':handshake:_light_skin_tone,_medium-dark_skin_tone:', ':handshake:_light_skin_tone,_medium-light_skin_tone:', ':handshake:_light_skin_tone:', ':handshake:_medium_skin_tone,_dark_skin_tone:', ':handshake:_medium_skin_tone,_light_skin_tone:', ':handshake:_medium_skin_tone,_medium-dark_skin_tone:', ':handshake:_medium_skin_tone,_medium-light_skin_tone:', ':handshake:_medium_skin_tone:', ':handshake:_medium-dark_skin_tone,_dark_skin_tone:', ':handshake:_medium-dark_skin_tone,_light_skin_tone:', ':handshake:_medium-dark_skin_tone,_medium_skin_tone:', ':handshake:_medium-dark_skin_tone,_medium-light_skin_tone:', ':handshake:_medium-dark_skin_tone:', ':handshake:_medium-light_skin_tone,_dark_skin_tone:', ':handshake:_medium-light_skin_tone,_light_skin_tone:', ':handshake:_medium-light_skin_tone,_medium_skin_tone:', ':handshake:_medium-light_skin_tone,_medium-dark_skin_tone:', ':handshake:_medium-light_skin_tone:', ':hatching_chick:', ':head_shaking_horizontally:', ':head_shaking_vertically:', ':headphone:', ':headstone:', ':health_worker:', ':health_worker:_dark_skin_tone:', ':health_worker:_light_skin_tone:', ':health_worker:_medium_skin_tone:', ':health_worker:_medium-dark_skin_tone:', ':health_worker:_medium-light_skin_tone:', ':hear-no-evil_monkey:', ':heart_decoration:', ':heart_exclamation:', ':heart_hands:', ':heart_hands:_dark_skin_tone:', ':heart_hands:_light_skin_tone:', ':heart_hands:_medium_skin_tone:', ':heart_hands:_medium-dark_skin_tone:', ':heart_hands:_medium-light_skin_tone:', ':heart_on_fire:', ':heart_suit:', ':heart_with_arrow:', ':heart_with_ribbon:', ':heavy_dollar_sign:', ':heavy_equals_sign:', ':hedgehog:', ':helicopter:', ':herb:', ':hibiscus:', ':high_voltage:', ':high-heeled_shoe:', ':high-speed_train:', ':hiking_boot:', ':hindu_temple:', ':hippopotamus:', ':hole:', ':hollow_red_circle:', ':honey_pot:', ':honeybee:', ':hook:', ':horizontal_traffic_light:', ':horse_face:', ':horse_racing:', ':horse_racing:_dark_skin_tone:', ':horse_racing:_light_skin_tone:', ':horse_racing:_medium_skin_tone:', ':horse_racing:_medium-dark_skin_tone:', ':horse_racing:_medium-light_skin_tone:', ':horse:', ':hospital:', ':hot_beverage:', ':hot_dog:', ':hot_face:', ':hot_pepper:', ':hot_springs:', ':hotel:', ':hourglass_done:', ':hourglass_not_done:', ':house_with_garden:', ':house:', ':houses:', ':hundred_points:', ':hushed_face:', ':hut:', ':hyacinth:', ':ice_cream:', ':ice_hockey:', ':ice_skate:', ':ice:', ':ID_button:', ':identification_card:', ':inbox_tray:', ':incoming_envelope:', ':index_pointing_at_the_viewer:', ':index_pointing_at_the_viewer:_dark_skin_tone:', ':index_pointing_at_the_viewer:_light_skin_tone:', ':index_pointing_at_the_viewer:_medium_skin_tone:', ':index_pointing_at_the_viewer:_medium-dark_skin_tone:', ':index_pointing_at_the_viewer:_medium-light_skin_tone:', ':index_pointing_up:', ':index_pointing_up:_dark_skin_tone:', ':index_pointing_up:_light_skin_tone:', ':index_pointing_up:_medium_skin_tone:', ':index_pointing_up:_medium-dark_skin_tone:', ':index_pointing_up:_medium-light_skin_tone:', ':infinity:', ':information:', ':input_latin_letters:', ':input_latin_lowercase:', ':input_latin_uppercase:', ':input_numbers:', ':input_symbols:', ':jack-o-lantern:', ':Japanese_“acceptable”_button:', ':Japanese_“application”_button:', ':Japanese_“bargain”_button:', ':Japanese_“congratulations”_button:', ':Japanese_“discount”_button:', ':Japanese_“free_of_charge”_button:', ':Japanese_“here”_button:', ':Japanese_“monthly_amount”_button:', ':Japanese_“no_vacancy”_button:', ':Japanese_“not_free_of_charge”_button:', ':Japanese_“open_for_business”_button:', ':Japanese_“passing_grade”_button:', ':Japanese_“prohibited”_button:', ':Japanese_“reserved”_button:', ':Japanese_“secret”_button:', ':Japanese_“service_charge”_button:', ':Japanese_“vacancy”_button:', ':Japanese_castle:', ':Japanese_dolls:', ':Japanese_post_office:', ':Japanese_symbol_for_beginner:', ':jar:', ':jeans:', ':jellyfish:', ':joker:', ':joystick:', ':judge:', ':judge:_dark_skin_tone:', ':judge:_light_skin_tone:', ':judge:_medium_skin_tone:', ':judge:_medium-dark_skin_tone:', ':judge:_medium-light_skin_tone:', ':kaaba:', ':kangaroo:', ':key:', ':keyboard:', ':keycap:_*:', ':keycap:_0:', ':keycap:_1:', ':keycap:_10:', ':keycap:_2:', ':keycap:_3:', ':keycap:_4:', ':keycap:_5:', ':keycap:_6:', ':keycap:_7:', ':keycap:_8:', ':keycap:_9:', ':khanda:', ':kick_scooter:', ':kimono:', ':kiss_mark:', ':kiss:', ':kiss:_dark_skin_tone:', ':kiss:_light_skin_tone:', ':kiss:_man,_man,_dark_skin_tone,_light_skin_tone:', ':kiss:_man,_man,_dark_skin_tone,_medium_skin_tone:', ':kiss:_man,_man,_dark_skin_tone,_medium-dark_skin_tone:', ':kiss:_man,_man,_dark_skin_tone,_medium-light_skin_tone:', ':kiss:_man,_man,_dark_skin_tone:', ':kiss:_man,_man,_light_skin_tone,_dark_skin_tone:', ':kiss:_man,_man,_light_skin_tone,_medium_skin_tone:', ':kiss:_man,_man,_light_skin_tone,_medium-dark_skin_tone:', ':kiss:_man,_man,_light_skin_tone,_medium-light_skin_tone:', ':kiss:_man,_man,_light_skin_tone:', ':kiss:_man,_man,_medium_skin_tone,_dark_skin_tone:', ':kiss:_man,_man,_medium_skin_tone,_light_skin_tone:', ':kiss:_man,_man,_medium_skin_tone,_medium-dark_skin_tone:', ':kiss:_man,_man,_medium_skin_tone,_medium-light_skin_tone:', ':kiss:_man,_man,_medium_skin_tone:', ':kiss:_man,_man,_medium-dark_skin_tone,_dark_skin_tone:', ':kiss:_man,_man,_medium-dark_skin_tone,_light_skin_tone:', ':kiss:_man,_man,_medium-dark_skin_tone,_medium_skin_tone:', ':kiss:_man,_man,_medium-dark_skin_tone,_medium-light_skin_tone:', ':kiss:_man,_man,_medium-dark_skin_tone:', ':kiss:_man,_man,_medium-light_skin_tone,_dark_skin_tone:', ':kiss:_man,_man,_medium-light_skin_tone,_light_skin_tone:', ':kiss:_man,_man,_medium-light_skin_tone,_medium_skin_tone:', ':kiss:_man,_man,_medium-light_skin_tone,_medium-dark_skin_tone:', ':kiss:_man,_man,_medium-light_skin_tone:', ':kiss:_man,_man:', ':kiss:_medium_skin_tone:', ':kiss:_medium-dark_skin_tone:', ':kiss:_medium-light_skin_tone:', ':kiss:_person,_person,_dark_skin_tone,_light_skin_tone:', ':kiss:_person,_person,_dark_skin_tone,_medium_skin_tone:', ':kiss:_person,_person,_dark_skin_tone,_medium-dark_skin_tone:', ':kiss:_person,_person,_dark_skin_tone,_medium-light_skin_tone:', ':kiss:_person,_person,_light_skin_tone,_dark_skin_tone:', ':kiss:_person,_person,_light_skin_tone,_medium_skin_tone:', ':kiss:_person,_person,_light_skin_tone,_medium-dark_skin_tone:', ':kiss:_person,_person,_light_skin_tone,_medium-light_skin_tone:', ':kiss:_person,_person,_medium_skin_tone,_dark_skin_tone:', ':kiss:_person,_person,_medium_skin_tone,_light_skin_tone:', ':kiss:_person,_person,_medium_skin_tone,_medium-dark_skin_tone:', ':kiss:_person,_person,_medium_skin_tone,_medium-light_skin_tone:', ':kiss:_person,_person,_medium-dark_skin_tone,_dark_skin_tone:', ':kiss:_person,_person,_medium-dark_skin_tone,_light_skin_tone:', ':kiss:_person,_person,_medium-dark_skin_tone,_medium_skin_tone:', ':kiss:_person,_person,_medium-dark_skin_tone,_medium-light_skin_tone:', ':kiss:_person,_person,_medium-light_skin_tone,_dark_skin_tone:', ':kiss:_person,_person,_medium-light_skin_tone,_light_skin_tone:', ':kiss:_person,_person,_medium-light_skin_tone,_medium_skin_tone:', ':kiss:_person,_person,_medium-light_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_man,_dark_skin_tone,_light_skin_tone:', ':kiss:_woman,_man,_dark_skin_tone,_medium_skin_tone:', ':kiss:_woman,_man,_dark_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_man,_dark_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_man,_dark_skin_tone:', ':kiss:_woman,_man,_light_skin_tone,_dark_skin_tone:', ':kiss:_woman,_man,_light_skin_tone,_medium_skin_tone:', ':kiss:_woman,_man,_light_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_man,_light_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_man,_light_skin_tone:', ':kiss:_woman,_man,_medium_skin_tone,_dark_skin_tone:', ':kiss:_woman,_man,_medium_skin_tone,_light_skin_tone:', ':kiss:_woman,_man,_medium_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_man,_medium_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_man,_medium_skin_tone:', ':kiss:_woman,_man,_medium-dark_skin_tone,_dark_skin_tone:', ':kiss:_woman,_man,_medium-dark_skin_tone,_light_skin_tone:', ':kiss:_woman,_man,_medium-dark_skin_tone,_medium_skin_tone:', ':kiss:_woman,_man,_medium-dark_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_man,_medium-dark_skin_tone:', ':kiss:_woman,_man,_medium-light_skin_tone,_dark_skin_tone:', ':kiss:_woman,_man,_medium-light_skin_tone,_light_skin_tone:', ':kiss:_woman,_man,_medium-light_skin_tone,_medium_skin_tone:', ':kiss:_woman,_man,_medium-light_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_man,_medium-light_skin_tone:', ':kiss:_woman,_man:', ':kiss:_woman,_woman,_dark_skin_tone,_light_skin_tone:', ':kiss:_woman,_woman,_dark_skin_tone,_medium_skin_tone:', ':kiss:_woman,_woman,_dark_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_woman,_dark_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_woman,_dark_skin_tone:', ':kiss:_woman,_woman,_light_skin_tone,_dark_skin_tone:', ':kiss:_woman,_woman,_light_skin_tone,_medium_skin_tone:', ':kiss:_woman,_woman,_light_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_woman,_light_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_woman,_light_skin_tone:', ':kiss:_woman,_woman,_medium_skin_tone,_dark_skin_tone:', ':kiss:_woman,_woman,_medium_skin_tone,_light_skin_tone:', ':kiss:_woman,_woman,_medium_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_woman,_medium_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_woman,_medium_skin_tone:', ':kiss:_woman,_woman,_medium-dark_skin_tone,_dark_skin_tone:', ':kiss:_woman,_woman,_medium-dark_skin_tone,_light_skin_tone:', ':kiss:_woman,_woman,_medium-dark_skin_tone,_medium_skin_tone:', ':kiss:_woman,_woman,_medium-dark_skin_tone,_medium-light_skin_tone:', ':kiss:_woman,_woman,_medium-dark_skin_tone:', ':kiss:_woman,_woman,_medium-light_skin_tone,_dark_skin_tone:', ':kiss:_woman,_woman,_medium-light_skin_tone,_light_skin_tone:', ':kiss:_woman,_woman,_medium-light_skin_tone,_medium_skin_tone:', ':kiss:_woman,_woman,_medium-light_skin_tone,_medium-dark_skin_tone:', ':kiss:_woman,_woman,_medium-light_skin_tone:', ':kiss:_woman,_woman:', ':kissing_cat:', ':kissing_face_with_closed_eyes:', ':kissing_face_with_smiling_eyes:', ':kissing_face:', ':kitchen_knife:', ':kite:', ':kiwi_fruit:', ':knot:', ':koala:', ':lab_coat:', ':label:', ':lacrosse:', ':ladder:', ':lady_beetle:', ':laptop:', ':large_blue_diamond:', ':large_orange_diamond:', ':last_quarter_moon_face:', ':last_quarter_moon:', ':last_track_button:', ':latin_cross:', ':leaf_fluttering_in_wind:', ':leafy_green:', ':ledger:', ':left_arrow_curving_right:', ':left_arrow:', ':left_luggage:', ':left_speech_bubble:', ':left-facing_fist:', ':left-facing_fist:_dark_skin_tone:', ':left-facing_fist:_light_skin_tone:', ':left-facing_fist:_medium_skin_tone:', ':left-facing_fist:_medium-dark_skin_tone:', ':left-facing_fist:_medium-light_skin_tone:', ':left-right_arrow:', ':leftwards_hand:', ':leftwards_hand:_dark_skin_tone:', ':leftwards_hand:_light_skin_tone:', ':leftwards_hand:_medium_skin_tone:', ':leftwards_hand:_medium-dark_skin_tone:', ':leftwards_hand:_medium-light_skin_tone:', ':leftwards_pushing_hand:', ':leftwards_pushing_hand:_dark_skin_tone:', ':leftwards_pushing_hand:_light_skin_tone:', ':leftwards_pushing_hand:_medium_skin_tone:', ':leftwards_pushing_hand:_medium-dark_skin_tone:', ':leftwards_pushing_hand:_medium-light_skin_tone:', ':leg:', ':leg:_dark_skin_tone:', ':leg:_light_skin_tone:', ':leg:_medium_skin_tone:', ':leg:_medium-dark_skin_tone:', ':leg:_medium-light_skin_tone:', ':lemon:', ':Leo:', ':leopard:', ':level_slider:', ':Libra:', ':light_blue_heart:', ':light_bulb:', ':light_rail:', ':light_skin_tone:', ':lime:', ':link:', ':linked_paperclips:', ':lion:', ':lipstick:', ':litter_in_bin_sign:', ':lizard:', ':llama:', ':lobster:', ':locked_with_key:', ':locked_with_pen:', ':locked:', ':locomotive:', ':lollipop:', ':long_drum:', ':lotion_bottle:', ':lotus:', ':loudly_crying_face:', ':loudspeaker:', ':love_hotel:', ':love_letter:', ':love-you_gesture:', ':love-you_gesture:_dark_skin_tone:', ':love-you_gesture:_light_skin_tone:', ':love-you_gesture:_medium_skin_tone:', ':love-you_gesture:_medium-dark_skin_tone:', ':love-you_gesture:_medium-light_skin_tone:', ':low_battery:', ':luggage:', ':lungs:', ':lying_face:', ':mage:', ':mage:_dark_skin_tone:', ':mage:_light_skin_tone:', ':mage:_medium_skin_tone:', ':mage:_medium-dark_skin_tone:', ':mage:_medium-light_skin_tone:', ':magic_wand:', ':magnet:', ':magnifying_glass_tilted_left:', ':magnifying_glass_tilted_right:', ':mahjong_red_dragon:', ':male_sign:', ':mammoth:', ':man_artist:', ':man_artist:_dark_skin_tone:', ':man_artist:_light_skin_tone:', ':man_artist:_medium_skin_tone:', ':man_artist:_medium-dark_skin_tone:', ':man_artist:_medium-light_skin_tone:', ':man_astronaut:', ':man_astronaut:_dark_skin_tone:', ':man_astronaut:_light_skin_tone:', ':man_astronaut:_medium_skin_tone:', ':man_astronaut:_medium-dark_skin_tone:', ':man_astronaut:_medium-light_skin_tone:', ':man_biking:', ':man_biking:_dark_skin_tone:', ':man_biking:_light_skin_tone:', ':man_biking:_medium_skin_tone:', ':man_biking:_medium-dark_skin_tone:', ':man_biking:_medium-light_skin_tone:', ':man_bouncing_ball:', ':man_bouncing_ball:_dark_skin_tone:', ':man_bouncing_ball:_light_skin_tone:', ':man_bouncing_ball:_medium_skin_tone:', ':man_bouncing_ball:_medium-dark_skin_tone:', ':man_bouncing_ball:_medium-light_skin_tone:', ':man_bowing:', ':man_bowing:_dark_skin_tone:', ':man_bowing:_light_skin_tone:', ':man_bowing:_medium_skin_tone:', ':man_bowing:_medium-dark_skin_tone:', ':man_bowing:_medium-light_skin_tone:', ':man_cartwheeling:', ':man_cartwheeling:_dark_skin_tone:', ':man_cartwheeling:_light_skin_tone:', ':man_cartwheeling:_medium_skin_tone:', ':man_cartwheeling:_medium-dark_skin_tone:', ':man_cartwheeling:_medium-light_skin_tone:', ':man_climbing:', ':man_climbing:_dark_skin_tone:', ':man_climbing:_light_skin_tone:', ':man_climbing:_medium_skin_tone:', ':man_climbing:_medium-dark_skin_tone:', ':man_climbing:_medium-light_skin_tone:', ':man_construction_worker:', ':man_construction_worker:_dark_skin_tone:', ':man_construction_worker:_light_skin_tone:', ':man_construction_worker:_medium_skin_tone:', ':man_construction_worker:_medium-dark_skin_tone:', ':man_construction_worker:_medium-light_skin_tone:', ':man_cook:', ':man_cook:_dark_skin_tone:', ':man_cook:_light_skin_tone:', ':man_cook:_medium_skin_tone:', ':man_cook:_medium-dark_skin_tone:', ':man_cook:_medium-light_skin_tone:', ':man_dancing:', ':man_dancing:_dark_skin_tone:', ':man_dancing:_light_skin_tone:', ':man_dancing:_medium_skin_tone:', ':man_dancing:_medium-dark_skin_tone:', ':man_dancing:_medium-light_skin_tone:', ':man_detective:', ':man_detective:_dark_skin_tone:', ':man_detective:_light_skin_tone:', ':man_detective:_medium_skin_tone:', ':man_detective:_medium-dark_skin_tone:', ':man_detective:_medium-light_skin_tone:', ':man_elf:', ':man_elf:_dark_skin_tone:', ':man_elf:_light_skin_tone:', ':man_elf:_medium_skin_tone:', ':man_elf:_medium-dark_skin_tone:', ':man_elf:_medium-light_skin_tone:', ':man_facepalming:', ':man_facepalming:_dark_skin_tone:', ':man_facepalming:_light_skin_tone:', ':man_facepalming:_medium_skin_tone:', ':man_facepalming:_medium-dark_skin_tone:', ':man_facepalming:_medium-light_skin_tone:', ':man_factory_worker:', ':man_factory_worker:_dark_skin_tone:', ':man_factory_worker:_light_skin_tone:', ':man_factory_worker:_medium_skin_tone:', ':man_factory_worker:_medium-dark_skin_tone:', ':man_factory_worker:_medium-light_skin_tone:', ':man_fairy:', ':man_fairy:_dark_skin_tone:', ':man_fairy:_light_skin_tone:', ':man_fairy:_medium_skin_tone:', ':man_fairy:_medium-dark_skin_tone:', ':man_fairy:_medium-light_skin_tone:', ':man_farmer:', ':man_farmer:_dark_skin_tone:', ':man_farmer:_light_skin_tone:', ':man_farmer:_medium_skin_tone:', ':man_farmer:_medium-dark_skin_tone:', ':man_farmer:_medium-light_skin_tone:', ':man_feeding_baby:', ':man_feeding_baby:_dark_skin_tone:', ':man_feeding_baby:_light_skin_tone:', ':man_feeding_baby:_medium_skin_tone:', ':man_feeding_baby:_medium-dark_skin_tone:', ':man_feeding_baby:_medium-light_skin_tone:', ':man_firefighter:', ':man_firefighter:_dark_skin_tone:', ':man_firefighter:_light_skin_tone:', ':man_firefighter:_medium_skin_tone:', ':man_firefighter:_medium-dark_skin_tone:', ':man_firefighter:_medium-light_skin_tone:', ':man_frowning:', ':man_frowning:_dark_skin_tone:', ':man_frowning:_light_skin_tone:', ':man_frowning:_medium_skin_tone:', ':man_frowning:_medium-dark_skin_tone:', ':man_frowning:_medium-light_skin_tone:', ':man_genie:', ':man_gesturing_NO:', ':man_gesturing_NO:_dark_skin_tone:', ':man_gesturing_NO:_light_skin_tone:', ':man_gesturing_NO:_medium_skin_tone:', ':man_gesturing_NO:_medium-dark_skin_tone:', ':man_gesturing_NO:_medium-light_skin_tone:', ':man_gesturing_OK:', ':man_gesturing_OK:_dark_skin_tone:', ':man_gesturing_OK:_light_skin_tone:', ':man_gesturing_OK:_medium_skin_tone:', ':man_gesturing_OK:_medium-dark_skin_tone:', ':man_gesturing_OK:_medium-light_skin_tone:', ':man_getting_haircut:', ':man_getting_haircut:_dark_skin_tone:', ':man_getting_haircut:_light_skin_tone:', ':man_getting_haircut:_medium_skin_tone:', ':man_getting_haircut:_medium-dark_skin_tone:', ':man_getting_haircut:_medium-light_skin_tone:', ':man_getting_massage:', ':man_getting_massage:_dark_skin_tone:', ':man_getting_massage:_light_skin_tone:', ':man_getting_massage:_medium_skin_tone:', ':man_getting_massage:_medium-dark_skin_tone:', ':man_getting_massage:_medium-light_skin_tone:', ':man_golfing:', ':man_golfing:_dark_skin_tone:', ':man_golfing:_light_skin_tone:', ':man_golfing:_medium_skin_tone:', ':man_golfing:_medium-dark_skin_tone:', ':man_golfing:_medium-light_skin_tone:', ':man_guard:', ':man_guard:_dark_skin_tone:', ':man_guard:_light_skin_tone:', ':man_guard:_medium_skin_tone:', ':man_guard:_medium-dark_skin_tone:', ':man_guard:_medium-light_skin_tone:', ':man_health_worker:', ':man_health_worker:_dark_skin_tone:', ':man_health_worker:_light_skin_tone:', ':man_health_worker:_medium_skin_tone:', ':man_health_worker:_medium-dark_skin_tone:', ':man_health_worker:_medium-light_skin_tone:', ':man_in_lotus_position:', ':man_in_lotus_position:_dark_skin_tone:', ':man_in_lotus_position:_light_skin_tone:', ':man_in_lotus_position:_medium_skin_tone:', ':man_in_lotus_position:_medium-dark_skin_tone:', ':man_in_lotus_position:_medium-light_skin_tone:', ':man_in_manual_wheelchair_facing_right:', ':man_in_manual_wheelchair_facing_right:_dark_skin_tone:', ':man_in_manual_wheelchair_facing_right:_light_skin_tone:', ':man_in_manual_wheelchair_facing_right:_medium_skin_tone:', ':man_in_manual_wheelchair_facing_right:_medium-dark_skin_tone:', ':man_in_manual_wheelchair_facing_right:_medium-light_skin_tone:', ':man_in_manual_wheelchair:', ':man_in_manual_wheelchair:_dark_skin_tone:', ':man_in_manual_wheelchair:_light_skin_tone:', ':man_in_manual_wheelchair:_medium_skin_tone:', ':man_in_manual_wheelchair:_medium-dark_skin_tone:', ':man_in_manual_wheelchair:_medium-light_skin_tone:', ':man_in_motorized_wheelchair_facing_right:', ':man_in_motorized_wheelchair_facing_right:_dark_skin_tone:', ':man_in_motorized_wheelchair_facing_right:_light_skin_tone:', ':man_in_motorized_wheelchair_facing_right:_medium_skin_tone:', ':man_in_motorized_wheelchair_facing_right:_medium-dark_skin_tone:', ':man_in_motorized_wheelchair_facing_right:_medium-light_skin_tone:', ':man_in_motorized_wheelchair:', ':man_in_motorized_wheelchair:_dark_skin_tone:', ':man_in_motorized_wheelchair:_light_skin_tone:', ':man_in_motorized_wheelchair:_medium_skin_tone:', ':man_in_motorized_wheelchair:_medium-dark_skin_tone:', ':man_in_motorized_wheelchair:_medium-light_skin_tone:', ':man_in_steamy_room:', ':man_in_steamy_room:_dark_skin_tone:', ':man_in_steamy_room:_light_skin_tone:', ':man_in_steamy_room:_medium_skin_tone:', ':man_in_steamy_room:_medium-dark_skin_tone:', ':man_in_steamy_room:_medium-light_skin_tone:', ':man_in_tuxedo:', ':man_in_tuxedo:_dark_skin_tone:', ':man_in_tuxedo:_light_skin_tone:', ':man_in_tuxedo:_medium_skin_tone:', ':man_in_tuxedo:_medium-dark_skin_tone:', ':man_in_tuxedo:_medium-light_skin_tone:', ':man_judge:', ':man_judge:_dark_skin_tone:', ':man_judge:_light_skin_tone:', ':man_judge:_medium_skin_tone:', ':man_judge:_medium-dark_skin_tone:', ':man_judge:_medium-light_skin_tone:', ':man_juggling:', ':man_juggling:_dark_skin_tone:', ':man_juggling:_light_skin_tone:', ':man_juggling:_medium_skin_tone:', ':man_juggling:_medium-dark_skin_tone:', ':man_juggling:_medium-light_skin_tone:', ':man_kneeling_facing_right:', ':man_kneeling_facing_right:_dark_skin_tone:', ':man_kneeling_facing_right:_light_skin_tone:', ':man_kneeling_facing_right:_medium_skin_tone:', ':man_kneeling_facing_right:_medium-dark_skin_tone:', ':man_kneeling_facing_right:_medium-light_skin_tone:', ':man_kneeling:', ':man_kneeling:_dark_skin_tone:', ':man_kneeling:_light_skin_tone:', ':man_kneeling:_medium_skin_tone:', ':man_kneeling:_medium-dark_skin_tone:', ':man_kneeling:_medium-light_skin_tone:', ':man_lifting_weights:', ':man_lifting_weights:_dark_skin_tone:', ':man_lifting_weights:_light_skin_tone:', ':man_lifting_weights:_medium_skin_tone:', ':man_lifting_weights:_medium-dark_skin_tone:', ':man_lifting_weights:_medium-light_skin_tone:', ':man_mage:', ':man_mage:_dark_skin_tone:', ':man_mage:_light_skin_tone:', ':man_mage:_medium_skin_tone:', ':man_mage:_medium-dark_skin_tone:', ':man_mage:_medium-light_skin_tone:', ':man_mechanic:', ':man_mechanic:_dark_skin_tone:', ':man_mechanic:_light_skin_tone:', ':man_mechanic:_medium_skin_tone:', ':man_mechanic:_medium-dark_skin_tone:', ':man_mechanic:_medium-light_skin_tone:', ':man_mountain_biking:', ':man_mountain_biking:_dark_skin_tone:', ':man_mountain_biking:_light_skin_tone:', ':man_mountain_biking:_medium_skin_tone:', ':man_mountain_biking:_medium-dark_skin_tone:', ':man_mountain_biking:_medium-light_skin_tone:', ':man_office_worker:', ':man_office_worker:_dark_skin_tone:', ':man_office_worker:_light_skin_tone:', ':man_office_worker:_medium_skin_tone:', ':man_office_worker:_medium-dark_skin_tone:', ':man_office_worker:_medium-light_skin_tone:', ':man_pilot:', ':man_pilot:_dark_skin_tone:', ':man_pilot:_light_skin_tone:', ':man_pilot:_medium_skin_tone:', ':man_pilot:_medium-dark_skin_tone:', ':man_pilot:_medium-light_skin_tone:', ':man_playing_handball:', ':man_playing_handball:_dark_skin_tone:', ':man_playing_handball:_light_skin_tone:', ':man_playing_handball:_medium_skin_tone:', ':man_playing_handball:_medium-dark_skin_tone:', ':man_playing_handball:_medium-light_skin_tone:', ':man_playing_water_polo:', ':man_playing_water_polo:_dark_skin_tone:', ':man_playing_water_polo:_light_skin_tone:', ':man_playing_water_polo:_medium_skin_tone:', ':man_playing_water_polo:_medium-dark_skin_tone:', ':man_playing_water_polo:_medium-light_skin_tone:', ':man_police_officer:', ':man_police_officer:_dark_skin_tone:', ':man_police_officer:_light_skin_tone:', ':man_police_officer:_medium_skin_tone:', ':man_police_officer:_medium-dark_skin_tone:', ':man_police_officer:_medium-light_skin_tone:', ':man_pouting:', ':man_pouting:_dark_skin_tone:', ':man_pouting:_light_skin_tone:', ':man_pouting:_medium_skin_tone:', ':man_pouting:_medium-dark_skin_tone:', ':man_pouting:_medium-light_skin_tone:', ':man_raising_hand:', ':man_raising_hand:_dark_skin_tone:', ':man_raising_hand:_light_skin_tone:', ':man_raising_hand:_medium_skin_tone:', ':man_raising_hand:_medium-dark_skin_tone:', ':man_raising_hand:_medium-light_skin_tone:', ':man_rowing_boat:', ':man_rowing_boat:_dark_skin_tone:', ':man_rowing_boat:_light_skin_tone:', ':man_rowing_boat:_medium_skin_tone:', ':man_rowing_boat:_medium-dark_skin_tone:', ':man_rowing_boat:_medium-light_skin_tone:', ':man_running_facing_right:', ':man_running_facing_right:_dark_skin_tone:', ':man_running_facing_right:_light_skin_tone:', ':man_running_facing_right:_medium_skin_tone:', ':man_running_facing_right:_medium-dark_skin_tone:', ':man_running_facing_right:_medium-light_skin_tone:', ':man_running:', ':man_running:_dark_skin_tone:', ':man_running:_light_skin_tone:', ':man_running:_medium_skin_tone:', ':man_running:_medium-dark_skin_tone:', ':man_running:_medium-light_skin_tone:', ':man_scientist:', ':man_scientist:_dark_skin_tone:', ':man_scientist:_light_skin_tone:', ':man_scientist:_medium_skin_tone:', ':man_scientist:_medium-dark_skin_tone:', ':man_scientist:_medium-light_skin_tone:', ':man_shrugging:', ':man_shrugging:_dark_skin_tone:', ':man_shrugging:_light_skin_tone:', ':man_shrugging:_medium_skin_tone:', ':man_shrugging:_medium-dark_skin_tone:', ':man_shrugging:_medium-light_skin_tone:', ':man_singer:', ':man_singer:_dark_skin_tone:', ':man_singer:_light_skin_tone:', ':man_singer:_medium_skin_tone:', ':man_singer:_medium-dark_skin_tone:', ':man_singer:_medium-light_skin_tone:', ':man_standing:', ':man_standing:_dark_skin_tone:', ':man_standing:_light_skin_tone:', ':man_standing:_medium_skin_tone:', ':man_standing:_medium-dark_skin_tone:', ':man_standing:_medium-light_skin_tone:', ':man_student:', ':man_student:_dark_skin_tone:', ':man_student:_light_skin_tone:', ':man_student:_medium_skin_tone:', ':man_student:_medium-dark_skin_tone:', ':man_student:_medium-light_skin_tone:', ':man_superhero:', ':man_superhero:_dark_skin_tone:', ':man_superhero:_light_skin_tone:', ':man_superhero:_medium_skin_tone:', ':man_superhero:_medium-dark_skin_tone:', ':man_superhero:_medium-light_skin_tone:', ':man_supervillain:', ':man_supervillain:_dark_skin_tone:', ':man_supervillain:_light_skin_tone:', ':man_supervillain:_medium_skin_tone:', ':man_supervillain:_medium-dark_skin_tone:', ':man_supervillain:_medium-light_skin_tone:', ':man_surfing:', ':man_surfing:_dark_skin_tone:', ':man_surfing:_light_skin_tone:', ':man_surfing:_medium_skin_tone:', ':man_surfing:_medium-dark_skin_tone:', ':man_surfing:_medium-light_skin_tone:', ':man_swimming:', ':man_swimming:_dark_skin_tone:', ':man_swimming:_light_skin_tone:', ':man_swimming:_medium_skin_tone:', ':man_swimming:_medium-dark_skin_tone:', ':man_swimming:_medium-light_skin_tone:', ':man_teacher:', ':man_teacher:_dark_skin_tone:', ':man_teacher:_light_skin_tone:', ':man_teacher:_medium_skin_tone:', ':man_teacher:_medium-dark_skin_tone:', ':man_teacher:_medium-light_skin_tone:', ':man_technologist:', ':man_technologist:_dark_skin_tone:', ':man_technologist:_light_skin_tone:', ':man_technologist:_medium_skin_tone:', ':man_technologist:_medium-dark_skin_tone:', ':man_technologist:_medium-light_skin_tone:', ':man_tipping_hand:', ':man_tipping_hand:_dark_skin_tone:', ':man_tipping_hand:_light_skin_tone:', ':man_tipping_hand:_medium_skin_tone:', ':man_tipping_hand:_medium-dark_skin_tone:', ':man_tipping_hand:_medium-light_skin_tone:', ':man_vampire:', ':man_vampire:_dark_skin_tone:', ':man_vampire:_light_skin_tone:', ':man_vampire:_medium_skin_tone:', ':man_vampire:_medium-dark_skin_tone:', ':man_vampire:_medium-light_skin_tone:', ':man_walking_facing_right:', ':man_walking_facing_right:_dark_skin_tone:', ':man_walking_facing_right:_light_skin_tone:', ':man_walking_facing_right:_medium_skin_tone:', ':man_walking_facing_right:_medium-dark_skin_tone:', ':man_walking_facing_right:_medium-light_skin_tone:', ':man_walking:', ':man_walking:_dark_skin_tone:', ':man_walking:_light_skin_tone:', ':man_walking:_medium_skin_tone:', ':man_walking:_medium-dark_skin_tone:', ':man_walking:_medium-light_skin_tone:', ':man_wearing_turban:', ':man_wearing_turban:_dark_skin_tone:', ':man_wearing_turban:_light_skin_tone:', ':man_wearing_turban:_medium_skin_tone:', ':man_wearing_turban:_medium-dark_skin_tone:', ':man_wearing_turban:_medium-light_skin_tone:', ':man_with_veil:', ':man_with_veil:_dark_skin_tone:', ':man_with_veil:_light_skin_tone:', ':man_with_veil:_medium_skin_tone:', ':man_with_veil:_medium-dark_skin_tone:', ':man_with_veil:_medium-light_skin_tone:', ':man_with_white_cane_facing_right:', ':man_with_white_cane_facing_right:_dark_skin_tone:', ':man_with_white_cane_facing_right:_light_skin_tone:', ':man_with_white_cane_facing_right:_medium_skin_tone:', ':man_with_white_cane_facing_right:_medium-dark_skin_tone:', ':man_with_white_cane_facing_right:_medium-light_skin_tone:', ':man_with_white_cane:', ':man_with_white_cane:_dark_skin_tone:', ':man_with_white_cane:_light_skin_tone:', ':man_with_white_cane:_medium_skin_tone:', ':man_with_white_cane:_medium-dark_skin_tone:', ':man_with_white_cane:_medium-light_skin_tone:', ':man_zombie:', ':man:', ':man:_bald:', ':man:_beard:', ':man:_blond_hair:', ':man:_curly_hair:', ':man:_dark_skin_tone,_bald:', ':man:_dark_skin_tone,_beard:', ':man:_dark_skin_tone,_blond_hair:', ':man:_dark_skin_tone,_curly_hair:', ':man:_dark_skin_tone,_red_hair:', ':man:_dark_skin_tone,_white_hair:', ':man:_dark_skin_tone:', ':man:_light_skin_tone,_bald:', ':man:_light_skin_tone,_beard:', ':man:_light_skin_tone,_blond_hair:', ':man:_light_skin_tone,_curly_hair:', ':man:_light_skin_tone,_red_hair:', ':man:_light_skin_tone,_white_hair:', ':man:_light_skin_tone:', ':man:_medium_skin_tone,_bald:', ':man:_medium_skin_tone,_beard:', ':man:_medium_skin_tone,_blond_hair:', ':man:_medium_skin_tone,_curly_hair:', ':man:_medium_skin_tone,_red_hair:', ':man:_medium_skin_tone,_white_hair:', ':man:_medium_skin_tone:', ':man:_medium-dark_skin_tone,_bald:', ':man:_medium-dark_skin_tone,_beard:', ':man:_medium-dark_skin_tone,_blond_hair:', ':man:_medium-dark_skin_tone,_curly_hair:', ':man:_medium-dark_skin_tone,_red_hair:', ':man:_medium-dark_skin_tone,_white_hair:', ':man:_medium-dark_skin_tone:', ':man:_medium-light_skin_tone,_bald:', ':man:_medium-light_skin_tone,_beard:', ':man:_medium-light_skin_tone,_blond_hair:', ':man:_medium-light_skin_tone,_curly_hair:', ':man:_medium-light_skin_tone,_red_hair:', ':man:_medium-light_skin_tone,_white_hair:', ':man:_medium-light_skin_tone:', ':man:_red_hair:', ':man:_white_hair:', ':man''s_shoe:', ':mango:', ':mantelpiece_clock:', ':manual_wheelchair:', ':map_of_Japan:', ':maple_leaf:', ':maracas:', ':martial_arts_uniform:', ':mate:', ':meat_on_bone:', ':mechanic:', ':mechanic:_dark_skin_tone:', ':mechanic:_light_skin_tone:', ':mechanic:_medium_skin_tone:', ':mechanic:_medium-dark_skin_tone:', ':mechanic:_medium-light_skin_tone:', ':mechanical_arm:', ':mechanical_leg:', ':medical_symbol:', ':medium_skin_tone:', ':medium-dark_skin_tone:', ':medium-light_skin_tone:', ':megaphone:', ':melon:', ':melting_face:', ':memo:', ':men_holding_hands:', ':men_holding_hands:_dark_skin_tone,_light_skin_tone:', ':men_holding_hands:_dark_skin_tone,_medium_skin_tone:', ':men_holding_hands:_dark_skin_tone,_medium-dark_skin_tone:', ':men_holding_hands:_dark_skin_tone,_medium-light_skin_tone:', ':men_holding_hands:_dark_skin_tone:', ':men_holding_hands:_light_skin_tone,_dark_skin_tone:', ':men_holding_hands:_light_skin_tone,_medium_skin_tone:', ':men_holding_hands:_light_skin_tone,_medium-dark_skin_tone:', ':men_holding_hands:_light_skin_tone,_medium-light_skin_tone:', ':men_holding_hands:_light_skin_tone:', ':men_holding_hands:_medium_skin_tone,_dark_skin_tone:', ':men_holding_hands:_medium_skin_tone,_light_skin_tone:', ':men_holding_hands:_medium_skin_tone,_medium-dark_skin_tone:', ':men_holding_hands:_medium_skin_tone,_medium-light_skin_tone:', ':men_holding_hands:_medium_skin_tone:', ':men_holding_hands:_medium-dark_skin_tone,_dark_skin_tone:', ':men_holding_hands:_medium-dark_skin_tone,_light_skin_tone:', ':men_holding_hands:_medium-dark_skin_tone,_medium_skin_tone:', ':men_holding_hands:_medium-dark_skin_tone,_medium-light_skin_tone:', ':men_holding_hands:_medium-dark_skin_tone:', ':men_holding_hands:_medium-light_skin_tone,_dark_skin_tone:', ':men_holding_hands:_medium-light_skin_tone,_light_skin_tone:', ':men_holding_hands:_medium-light_skin_tone,_medium_skin_tone:', ':men_holding_hands:_medium-light_skin_tone,_medium-dark_skin_tone:', ':men_holding_hands:_medium-light_skin_tone:', ':men_with_bunny_ears:', ':men_wrestling:', ':men''s_room:', ':mending_heart:', ':menorah:', ':mermaid:', ':mermaid:_dark_skin_tone:', ':mermaid:_light_skin_tone:', ':mermaid:_medium_skin_tone:', ':mermaid:_medium-dark_skin_tone:', ':mermaid:_medium-light_skin_tone:', ':merman:', ':merman:_dark_skin_tone:', ':merman:_light_skin_tone:', ':merman:_medium_skin_tone:', ':merman:_medium-dark_skin_tone:', ':merman:_medium-light_skin_tone:', ':merperson:', ':merperson:_dark_skin_tone:', ':merperson:_light_skin_tone:', ':merperson:_medium_skin_tone:', ':merperson:_medium-dark_skin_tone:', ':merperson:_medium-light_skin_tone:', ':metro:', ':microbe:', ':microphone:', ':microscope:', ':middle_finger:', ':middle_finger:_dark_skin_tone:', ':middle_finger:_light_skin_tone:', ':middle_finger:_medium_skin_tone:', ':middle_finger:_medium-dark_skin_tone:', ':middle_finger:_medium-light_skin_tone:', ':military_helmet:', ':military_medal:', ':milky_way:', ':minibus:', ':minus:', ':mirror_ball:', ':mirror:', ':moai:', ':mobile_phone_off:', ':mobile_phone_with_arrow:', ':mobile_phone:', ':money_bag:', ':money_with_wings:', ':money-mouth_face:', ':monkey_face:', ':monkey:', ':monorail:', ':moon_cake:', ':moon_viewing_ceremony:', ':moose:', ':mosque:', ':mosquito:', ':motor_boat:', ':motor_scooter:', ':motorcycle:', ':motorized_wheelchair:', ':motorway:', ':mount_fuji:', ':mountain_cableway:', ':mountain_railway:', ':mountain:', ':mouse_face:', ':mouse_trap:', ':mouse:', ':mouth:', ':movie_camera:', ':Mrs._Claus:', ':Mrs._Claus:_dark_skin_tone:', ':Mrs._Claus:_light_skin_tone:', ':Mrs._Claus:_medium_skin_tone:', ':Mrs._Claus:_medium-dark_skin_tone:', ':Mrs._Claus:_medium-light_skin_tone:', ':multiply:', ':mushroom:', ':musical_keyboard:', ':musical_note:', ':musical_notes:', ':musical_score:', ':muted_speaker:', ':mx_claus:', ':mx_claus:_dark_skin_tone:', ':mx_claus:_light_skin_tone:', ':mx_claus:_medium_skin_tone:', ':mx_claus:_medium-dark_skin_tone:', ':mx_claus:_medium-light_skin_tone:', ':nail_polish:', ':nail_polish:_dark_skin_tone:', ':nail_polish:_light_skin_tone:', ':nail_polish:_medium_skin_tone:', ':nail_polish:_medium-dark_skin_tone:', ':nail_polish:_medium-light_skin_tone:', ':name_badge:', ':national_park:', ':nauseated_face:', ':nazar_amulet:', ':necktie:', ':nerd_face:', ':nest_with_eggs:', ':nesting_dolls:', ':neutral_face:', ':NEW_button:', ':new_moon_face:', ':new_moon:', ':newspaper:', ':next_track_button:', ':NG_button:', ':night_with_stars:', ':nine_o''clock:', ':nine-thirty:', ':ninja:', ':ninja:_dark_skin_tone:', ':ninja:_light_skin_tone:', ':ninja:_medium_skin_tone:', ':ninja:_medium-dark_skin_tone:', ':ninja:_medium-light_skin_tone:', ':no_bicycles:', ':no_entry:', ':no_littering:', ':no_mobile_phones:', ':no_one_under_eighteen:', ':no_pedestrians:', ':no_smoking:', ':non-potable_water:', ':nose:', ':nose:_dark_skin_tone:', ':nose:_light_skin_tone:', ':nose:_medium_skin_tone:', ':nose:_medium-dark_skin_tone:', ':nose:_medium-light_skin_tone:', ':notebook_with_decorative_cover:', ':notebook:', ':nut_and_bolt:', "':O_button_(blood_type):'", ':octopus:', ':oden:', ':office_building:', ':office_worker:', ':office_worker:_dark_skin_tone:', ':office_worker:_light_skin_tone:', ':office_worker:_medium_skin_tone:', ':office_worker:_medium-dark_skin_tone:', ':office_worker:_medium-light_skin_tone:', ':ogre:', ':oil_drum:', ':OK_button:', ':OK_hand:', ':OK_hand:_dark_skin_tone:', ':OK_hand:_light_skin_tone:', ':OK_hand:_medium_skin_tone:', ':OK_hand:_medium-dark_skin_tone:', ':OK_hand:_medium-light_skin_tone:', ':old_key:', ':old_man:', ':old_man:_dark_skin_tone:', ':old_man:_light_skin_tone:', ':old_man:_medium_skin_tone:', ':old_man:_medium-dark_skin_tone:', ':old_man:_medium-light_skin_tone:', ':old_woman:', ':old_woman:_dark_skin_tone:', ':old_woman:_light_skin_tone:', ':old_woman:_medium_skin_tone:', ':old_woman:_medium-dark_skin_tone:', ':old_woman:_medium-light_skin_tone:', ':older_person:', ':older_person:_dark_skin_tone:', ':older_person:_light_skin_tone:', ':older_person:_medium_skin_tone:', ':older_person:_medium-dark_skin_tone:', ':older_person:_medium-light_skin_tone:', ':olive:', ':om:', ':ON!_arrow:', ':oncoming_automobile:', ':oncoming_bus:', ':oncoming_fist:', ':oncoming_fist:_dark_skin_tone:', ':oncoming_fist:_light_skin_tone:', ':oncoming_fist:_medium_skin_tone:', ':oncoming_fist:_medium-dark_skin_tone:', ':oncoming_fist:_medium-light_skin_tone:', ':oncoming_police_car:', ':oncoming_taxi:', ':one_o''clock:', ':one-piece_swimsuit:', ':one-thirty:', ':onion:', ':open_book:', ':open_file_folder:', ':open_hands:', ':open_hands:_dark_skin_tone:', ':open_hands:_light_skin_tone:', ':open_hands:_medium_skin_tone:', ':open_hands:_medium-dark_skin_tone:', ':open_hands:_medium-light_skin_tone:', ':open_mailbox_with_lowered_flag:', ':open_mailbox_with_raised_flag:', ':Ophiuchus:', ':optical_disk:', ':orange_book:', ':orange_circle:', ':orange_heart:', ':orange_square:', ':orangutan:', ':orthodox_cross:', ':otter:', ':outbox_tray:', ':owl:', ':ox:', ':oyster:', ':P_button:', ':package:', ':page_facing_up:', ':page_with_curl:', ':pager:', ':paintbrush:', ':palm_down_hand:', ':palm_down_hand:_dark_skin_tone:', ':palm_down_hand:_light_skin_tone:', ':palm_down_hand:_medium_skin_tone:', ':palm_down_hand:_medium-dark_skin_tone:', ':palm_down_hand:_medium-light_skin_tone:', ':palm_tree:', ':palm_up_hand:', ':palm_up_hand:_dark_skin_tone:', ':palm_up_hand:_light_skin_tone:', ':palm_up_hand:_medium_skin_tone:', ':palm_up_hand:_medium-dark_skin_tone:', ':palm_up_hand:_medium-light_skin_tone:', ':palms_up_together:', ':palms_up_together:_dark_skin_tone:', ':palms_up_together:_light_skin_tone:', ':palms_up_together:_medium_skin_tone:', ':palms_up_together:_medium-dark_skin_tone:', ':palms_up_together:_medium-light_skin_tone:', ':pancakes:', ':panda:', ':paperclip:', ':parachute:', ':parrot:', ':part_alternation_mark:', ':party_popper:', ':partying_face:', ':passenger_ship:', ':passport_control:', ':pause_button:', ':paw_prints:', ':pea_pod:', ':peace_symbol:', ':peach:', ':peacock:', ':peanuts:', ':pear:', ':pen:', ':pencil:', ':penguin:', ':pensive_face:', ':people_holding_hands:', ':people_holding_hands:_dark_skin_tone,_light_skin_tone:', ':people_holding_hands:_dark_skin_tone,_medium_skin_tone:', ':people_holding_hands:_dark_skin_tone,_medium-dark_skin_tone:', ':people_holding_hands:_dark_skin_tone,_medium-light_skin_tone:', ':people_holding_hands:_dark_skin_tone:', ':people_holding_hands:_light_skin_tone,_dark_skin_tone:', ':people_holding_hands:_light_skin_tone,_medium_skin_tone:', ':people_holding_hands:_light_skin_tone,_medium-dark_skin_tone:', ':people_holding_hands:_light_skin_tone,_medium-light_skin_tone:', ':people_holding_hands:_light_skin_tone:', ':people_holding_hands:_medium_skin_tone,_dark_skin_tone:', ':people_holding_hands:_medium_skin_tone,_light_skin_tone:', ':people_holding_hands:_medium_skin_tone,_medium-dark_skin_tone:', ':people_holding_hands:_medium_skin_tone,_medium-light_skin_tone:', ':people_holding_hands:_medium_skin_tone:', ':people_holding_hands:_medium-dark_skin_tone,_dark_skin_tone:', ':people_holding_hands:_medium-dark_skin_tone,_light_skin_tone:', ':people_holding_hands:_medium-dark_skin_tone,_medium_skin_tone:', ':people_holding_hands:_medium-dark_skin_tone,_medium-light_skin_tone:', ':people_holding_hands:_medium-dark_skin_tone:', ':people_holding_hands:_medium-light_skin_tone,_dark_skin_tone:', ':people_holding_hands:_medium-light_skin_tone,_light_skin_tone:', ':people_holding_hands:_medium-light_skin_tone,_medium_skin_tone:', ':people_holding_hands:_medium-light_skin_tone,_medium-dark_skin_tone:', ':people_holding_hands:_medium-light_skin_tone:', ':people_hugging:', ':people_with_bunny_ears:', ':people_wrestling:', ':performing_arts:', ':persevering_face:', ':person_biking:', ':person_biking:_dark_skin_tone:', ':person_biking:_light_skin_tone:', ':person_biking:_medium_skin_tone:', ':person_biking:_medium-dark_skin_tone:', ':person_biking:_medium-light_skin_tone:', ':person_bouncing_ball:', ':person_bouncing_ball:_dark_skin_tone:', ':person_bouncing_ball:_light_skin_tone:', ':person_bouncing_ball:_medium_skin_tone:', ':person_bouncing_ball:_medium-dark_skin_tone:', ':person_bouncing_ball:_medium-light_skin_tone:', ':person_bowing:', ':person_bowing:_dark_skin_tone:', ':person_bowing:_light_skin_tone:', ':person_bowing:_medium_skin_tone:', ':person_bowing:_medium-dark_skin_tone:', ':person_bowing:_medium-light_skin_tone:', ':person_cartwheeling:', ':person_cartwheeling:_dark_skin_tone:', ':person_cartwheeling:_light_skin_tone:', ':person_cartwheeling:_medium_skin_tone:', ':person_cartwheeling:_medium-dark_skin_tone:', ':person_cartwheeling:_medium-light_skin_tone:', ':person_climbing:', ':person_climbing:_dark_skin_tone:', ':person_climbing:_light_skin_tone:', ':person_climbing:_medium_skin_tone:', ':person_climbing:_medium-dark_skin_tone:', ':person_climbing:_medium-light_skin_tone:', ':person_facepalming:', ':person_facepalming:_dark_skin_tone:', ':person_facepalming:_light_skin_tone:', ':person_facepalming:_medium_skin_tone:', ':person_facepalming:_medium-dark_skin_tone:', ':person_facepalming:_medium-light_skin_tone:', ':person_feeding_baby:', ':person_feeding_baby:_dark_skin_tone:', ':person_feeding_baby:_light_skin_tone:', ':person_feeding_baby:_medium_skin_tone:', ':person_feeding_baby:_medium-dark_skin_tone:', ':person_feeding_baby:_medium-light_skin_tone:', ':person_fencing:', ':person_frowning:', ':person_frowning:_dark_skin_tone:', ':person_frowning:_light_skin_tone:', ':person_frowning:_medium_skin_tone:', ':person_frowning:_medium-dark_skin_tone:', ':person_frowning:_medium-light_skin_tone:', ':person_gesturing_NO:', ':person_gesturing_NO:_dark_skin_tone:', ':person_gesturing_NO:_light_skin_tone:', ':person_gesturing_NO:_medium_skin_tone:', ':person_gesturing_NO:_medium-dark_skin_tone:', ':person_gesturing_NO:_medium-light_skin_tone:', ':person_gesturing_OK:', ':person_gesturing_OK:_dark_skin_tone:', ':person_gesturing_OK:_light_skin_tone:', ':person_gesturing_OK:_medium_skin_tone:', ':person_gesturing_OK:_medium-dark_skin_tone:', ':person_gesturing_OK:_medium-light_skin_tone:', ':person_getting_haircut:', ':person_getting_haircut:_dark_skin_tone:', ':person_getting_haircut:_light_skin_tone:', ':person_getting_haircut:_medium_skin_tone:', ':person_getting_haircut:_medium-dark_skin_tone:', ':person_getting_haircut:_medium-light_skin_tone:', ':person_getting_massage:', ':person_getting_massage:_dark_skin_tone:', ':person_getting_massage:_light_skin_tone:', ':person_getting_massage:_medium_skin_tone:', ':person_getting_massage:_medium-dark_skin_tone:', ':person_getting_massage:_medium-light_skin_tone:', ':person_golfing:', ':person_golfing:_dark_skin_tone:', ':person_golfing:_light_skin_tone:', ':person_golfing:_medium_skin_tone:', ':person_golfing:_medium-dark_skin_tone:', ':person_golfing:_medium-light_skin_tone:', ':person_in_bed:', ':person_in_bed:_dark_skin_tone:', ':person_in_bed:_light_skin_tone:', ':person_in_bed:_medium_skin_tone:', ':person_in_bed:_medium-dark_skin_tone:', ':person_in_bed:_medium-light_skin_tone:', ':person_in_lotus_position:', ':person_in_lotus_position:_dark_skin_tone:', ':person_in_lotus_position:_light_skin_tone:', ':person_in_lotus_position:_medium_skin_tone:', ':person_in_lotus_position:_medium-dark_skin_tone:', ':person_in_lotus_position:_medium-light_skin_tone:', ':person_in_manual_wheelchair_facing_right:', ':person_in_manual_wheelchair_facing_right:_dark_skin_tone:', ':person_in_manual_wheelchair_facing_right:_light_skin_tone:', ':person_in_manual_wheelchair_facing_right:_medium_skin_tone:', ':person_in_manual_wheelchair_facing_right:_medium-dark_skin_tone:', ':person_in_manual_wheelchair_facing_right:_medium-light_skin_tone:', ':person_in_manual_wheelchair:', ':person_in_manual_wheelchair:_dark_skin_tone:', ':person_in_manual_wheelchair:_light_skin_tone:', ':person_in_manual_wheelchair:_medium_skin_tone:', ':person_in_manual_wheelchair:_medium-dark_skin_tone:', ':person_in_manual_wheelchair:_medium-light_skin_tone:', ':person_in_motorized_wheelchair_facing_right:', ':person_in_motorized_wheelchair_facing_right:_dark_skin_tone:', ':person_in_motorized_wheelchair_facing_right:_light_skin_tone:', ':person_in_motorized_wheelchair_facing_right:_medium_skin_tone:', ':person_in_motorized_wheelchair_facing_right:_medium-dark_skin_tone:', ':person_in_motorized_wheelchair_facing_right:_medium-light_skin_tone:', ':person_in_motorized_wheelchair:', ':person_in_motorized_wheelchair:_dark_skin_tone:', ':person_in_motorized_wheelchair:_light_skin_tone:', ':person_in_motorized_wheelchair:_medium_skin_tone:', ':person_in_motorized_wheelchair:_medium-dark_skin_tone:', ':person_in_motorized_wheelchair:_medium-light_skin_tone:', ':person_in_steamy_room:', ':person_in_steamy_room:_dark_skin_tone:', ':person_in_steamy_room:_light_skin_tone:', ':person_in_steamy_room:_medium_skin_tone:', ':person_in_steamy_room:_medium-dark_skin_tone:', ':person_in_steamy_room:_medium-light_skin_tone:', ':person_in_suit_levitating:', ':person_in_suit_levitating:_dark_skin_tone:', ':person_in_suit_levitating:_light_skin_tone:', ':person_in_suit_levitating:_medium_skin_tone:', ':person_in_suit_levitating:_medium-dark_skin_tone:', ':person_in_suit_levitating:_medium-light_skin_tone:', ':person_in_tuxedo:', ':person_in_tuxedo:_dark_skin_tone:', ':person_in_tuxedo:_light_skin_tone:', ':person_in_tuxedo:_medium_skin_tone:', ':person_in_tuxedo:_medium-dark_skin_tone:', ':person_in_tuxedo:_medium-light_skin_tone:', ':person_juggling:', ':person_juggling:_dark_skin_tone:', ':person_juggling:_light_skin_tone:', ':person_juggling:_medium_skin_tone:', ':person_juggling:_medium-dark_skin_tone:', ':person_juggling:_medium-light_skin_tone:', ':person_kneeling_facing_right:', ':person_kneeling_facing_right:_dark_skin_tone:', ':person_kneeling_facing_right:_light_skin_tone:', ':person_kneeling_facing_right:_medium_skin_tone:', ':person_kneeling_facing_right:_medium-dark_skin_tone:', ':person_kneeling_facing_right:_medium-light_skin_tone:', ':person_kneeling:', ':person_kneeling:_dark_skin_tone:', ':person_kneeling:_light_skin_tone:', ':person_kneeling:_medium_skin_tone:', ':person_kneeling:_medium-dark_skin_tone:', ':person_kneeling:_medium-light_skin_tone:', ':person_lifting_weights:', ':person_lifting_weights:_dark_skin_tone:', ':person_lifting_weights:_light_skin_tone:', ':person_lifting_weights:_medium_skin_tone:', ':person_lifting_weights:_medium-dark_skin_tone:', ':person_lifting_weights:_medium-light_skin_tone:', ':person_mountain_biking:', ':person_mountain_biking:_dark_skin_tone:', ':person_mountain_biking:_light_skin_tone:', ':person_mountain_biking:_medium_skin_tone:', ':person_mountain_biking:_medium-dark_skin_tone:', ':person_mountain_biking:_medium-light_skin_tone:', ':person_playing_handball:', ':person_playing_handball:_dark_skin_tone:', ':person_playing_handball:_light_skin_tone:', ':person_playing_handball:_medium_skin_tone:', ':person_playing_handball:_medium-dark_skin_tone:', ':person_playing_handball:_medium-light_skin_tone:', ':person_playing_water_polo:', ':person_playing_water_polo:_dark_skin_tone:', ':person_playing_water_polo:_light_skin_tone:', ':person_playing_water_polo:_medium_skin_tone:', ':person_playing_water_polo:_medium-dark_skin_tone:', ':person_playing_water_polo:_medium-light_skin_tone:', ':person_pouting:', ':person_pouting:_dark_skin_tone:', ':person_pouting:_light_skin_tone:', ':person_pouting:_medium_skin_tone:', ':person_pouting:_medium-dark_skin_tone:', ':person_pouting:_medium-light_skin_tone:', ':person_raising_hand:', ':person_raising_hand:_dark_skin_tone:', ':person_raising_hand:_light_skin_tone:', ':person_raising_hand:_medium_skin_tone:', ':person_raising_hand:_medium-dark_skin_tone:', ':person_raising_hand:_medium-light_skin_tone:', ':person_rowing_boat:', ':person_rowing_boat:_dark_skin_tone:', ':person_rowing_boat:_light_skin_tone:', ':person_rowing_boat:_medium_skin_tone:', ':person_rowing_boat:_medium-dark_skin_tone:', ':person_rowing_boat:_medium-light_skin_tone:', ':person_running_facing_right:', ':person_running_facing_right:_dark_skin_tone:', ':person_running_facing_right:_light_skin_tone:', ':person_running_facing_right:_medium_skin_tone:', ':person_running_facing_right:_medium-dark_skin_tone:', ':person_running_facing_right:_medium-light_skin_tone:', ':person_running:', ':person_running:_dark_skin_tone:', ':person_running:_light_skin_tone:', ':person_running:_medium_skin_tone:', ':person_running:_medium-dark_skin_tone:', ':person_running:_medium-light_skin_tone:', ':person_shrugging:', ':person_shrugging:_dark_skin_tone:', ':person_shrugging:_light_skin_tone:', ':person_shrugging:_medium_skin_tone:', ':person_shrugging:_medium-dark_skin_tone:', ':person_shrugging:_medium-light_skin_tone:', ':person_standing:', ':person_standing:_dark_skin_tone:', ':person_standing:_light_skin_tone:', ':person_standing:_medium_skin_tone:', ':person_standing:_medium-dark_skin_tone:', ':person_standing:_medium-light_skin_tone:', ':person_surfing:', ':person_surfing:_dark_skin_tone:', ':person_surfing:_light_skin_tone:', ':person_surfing:_medium_skin_tone:', ':person_surfing:_medium-dark_skin_tone:', ':person_surfing:_medium-light_skin_tone:', ':person_swimming:', ':person_swimming:_dark_skin_tone:', ':person_swimming:_light_skin_tone:', ':person_swimming:_medium_skin_tone:', ':person_swimming:_medium-dark_skin_tone:', ':person_swimming:_medium-light_skin_tone:', ':person_taking_bath:', ':person_taking_bath:_dark_skin_tone:', ':person_taking_bath:_light_skin_tone:', ':person_taking_bath:_medium_skin_tone:', ':person_taking_bath:_medium-dark_skin_tone:', ':person_taking_bath:_medium-light_skin_tone:', ':person_tipping_hand:', ':person_tipping_hand:_dark_skin_tone:', ':person_tipping_hand:_light_skin_tone:', ':person_tipping_hand:_medium_skin_tone:', ':person_tipping_hand:_medium-dark_skin_tone:', ':person_tipping_hand:_medium-light_skin_tone:', ':person_walking_facing_right:', ':person_walking_facing_right:_dark_skin_tone:', ':person_walking_facing_right:_light_skin_tone:', ':person_walking_facing_right:_medium_skin_tone:', ':person_walking_facing_right:_medium-dark_skin_tone:', ':person_walking_facing_right:_medium-light_skin_tone:', ':person_walking:', ':person_walking:_dark_skin_tone:', ':person_walking:_light_skin_tone:', ':person_walking:_medium_skin_tone:', ':person_walking:_medium-dark_skin_tone:', ':person_walking:_medium-light_skin_tone:', ':person_wearing_turban:', ':person_wearing_turban:_dark_skin_tone:', ':person_wearing_turban:_light_skin_tone:', ':person_wearing_turban:_medium_skin_tone:', ':person_wearing_turban:_medium-dark_skin_tone:', ':person_wearing_turban:_medium-light_skin_tone:', ':person_with_crown:', ':person_with_crown:_dark_skin_tone:', ':person_with_crown:_light_skin_tone:', ':person_with_crown:_medium_skin_tone:', ':person_with_crown:_medium-dark_skin_tone:', ':person_with_crown:_medium-light_skin_tone:', ':person_with_skullcap:', ':person_with_skullcap:_dark_skin_tone:', ':person_with_skullcap:_light_skin_tone:', ':person_with_skullcap:_medium_skin_tone:', ':person_with_skullcap:_medium-dark_skin_tone:', ':person_with_skullcap:_medium-light_skin_tone:', ':person_with_veil:', ':person_with_veil:_dark_skin_tone:', ':person_with_veil:_light_skin_tone:', ':person_with_veil:_medium_skin_tone:', ':person_with_veil:_medium-dark_skin_tone:', ':person_with_veil:_medium-light_skin_tone:', ':person_with_white_cane_facing_right:', ':person_with_white_cane_facing_right:_dark_skin_tone:', ':person_with_white_cane_facing_right:_light_skin_tone:', ':person_with_white_cane_facing_right:_medium_skin_tone:', ':person_with_white_cane_facing_right:_medium-dark_skin_tone:', ':person_with_white_cane_facing_right:_medium-light_skin_tone:', ':person_with_white_cane:', ':person_with_white_cane:_dark_skin_tone:', ':person_with_white_cane:_light_skin_tone:', ':person_with_white_cane:_medium_skin_tone:', ':person_with_white_cane:_medium-dark_skin_tone:', ':person_with_white_cane:_medium-light_skin_tone:', ':person:', ':person:_bald:', ':person:_beard:', ':person:_blond_hair:', ':person:_curly_hair:', ':person:_dark_skin_tone,_bald:', ':person:_dark_skin_tone,_beard:', ':person:_dark_skin_tone,_blond_hair:', ':person:_dark_skin_tone,_curly_hair:', ':person:_dark_skin_tone,_red_hair:', ':person:_dark_skin_tone,_white_hair:', ':person:_dark_skin_tone:', ':person:_light_skin_tone,_bald:', ':person:_light_skin_tone,_beard:', ':person:_light_skin_tone,_blond_hair:', ':person:_light_skin_tone,_curly_hair:', ':person:_light_skin_tone,_red_hair:', ':person:_light_skin_tone,_white_hair:', ':person:_light_skin_tone:', ':person:_medium_skin_tone,_bald:', ':person:_medium_skin_tone,_beard:', ':person:_medium_skin_tone,_blond_hair:', ':person:_medium_skin_tone,_curly_hair:', ':person:_medium_skin_tone,_red_hair:', ':person:_medium_skin_tone,_white_hair:', ':person:_medium_skin_tone:', ':person:_medium-dark_skin_tone,_bald:', ':person:_medium-dark_skin_tone,_beard:', ':person:_medium-dark_skin_tone,_blond_hair:', ':person:_medium-dark_skin_tone,_curly_hair:', ':person:_medium-dark_skin_tone,_red_hair:', ':person:_medium-dark_skin_tone,_white_hair:', ':person:_medium-dark_skin_tone:', ':person:_medium-light_skin_tone,_bald:', ':person:_medium-light_skin_tone,_beard:', ':person:_medium-light_skin_tone,_blond_hair:', ':person:_medium-light_skin_tone,_curly_hair:', ':person:_medium-light_skin_tone,_red_hair:', ':person:_medium-light_skin_tone,_white_hair:', ':person:_medium-light_skin_tone:', ':person:_red_hair:', ':person:_white_hair:', ':petri_dish:', ':phoenix:', ':pick:', ':pickup_truck:', ':pie:', ':pig_face:', ':pig_nose:', ':pig:', ':pile_of_poo:', ':pill:', ':pilot:', ':pilot:_dark_skin_tone:', ':pilot:_light_skin_tone:', ':pilot:_medium_skin_tone:', ':pilot:_medium-dark_skin_tone:', ':pilot:_medium-light_skin_tone:', ':piñata:', ':pinched_fingers:', ':pinched_fingers:_dark_skin_tone:', ':pinched_fingers:_light_skin_tone:', ':pinched_fingers:_medium_skin_tone:', ':pinched_fingers:_medium-dark_skin_tone:', ':pinched_fingers:_medium-light_skin_tone:', ':pinching_hand:', ':pinching_hand:_dark_skin_tone:', ':pinching_hand:_light_skin_tone:', ':pinching_hand:_medium_skin_tone:', ':pinching_hand:_medium-dark_skin_tone:', ':pinching_hand:_medium-light_skin_tone:', ':pine_decoration:', ':pineapple:', ':ping_pong:', ':pink_heart:', ':pirate_flag:', ':Pisces:', ':pizza:', ':placard:', ':place_of_worship:', ':play_button:', ':play_or_pause_button:', ':playground_slide:', ':pleading_face:', ':plunger:', ':plus:', ':polar_bear:', ':police_car_light:', ':police_car:', ':police_officer:', ':police_officer:_dark_skin_tone:', ':police_officer:_light_skin_tone:', ':police_officer:_medium_skin_tone:', ':police_officer:_medium-dark_skin_tone:', ':police_officer:_medium-light_skin_tone:', ':poodle:', ':pool_8_ball:', ':popcorn:', ':post_office:', ':postal_horn:', ':postbox:', ':pot_of_food:', ':potable_water:', ':potato:', ':potted_plant:', ':poultry_leg:', ':pound_banknote:', ':pouring_liquid:', ':pouting_cat:', ':prayer_beads:', ':pregnant_man:', ':pregnant_man:_dark_skin_tone:', ':pregnant_man:_light_skin_tone:', ':pregnant_man:_medium_skin_tone:', ':pregnant_man:_medium-dark_skin_tone:', ':pregnant_man:_medium-light_skin_tone:', ':pregnant_person:', ':pregnant_person:_dark_skin_tone:', ':pregnant_person:_light_skin_tone:', ':pregnant_person:_medium_skin_tone:', ':pregnant_person:_medium-dark_skin_tone:', ':pregnant_person:_medium-light_skin_tone:', ':pregnant_woman:', ':pregnant_woman:_dark_skin_tone:', ':pregnant_woman:_light_skin_tone:', ':pregnant_woman:_medium_skin_tone:', ':pregnant_woman:_medium-dark_skin_tone:', ':pregnant_woman:_medium-light_skin_tone:', ':pretzel:', ':prince:', ':prince:_dark_skin_tone:', ':prince:_light_skin_tone:', ':prince:_medium_skin_tone:', ':prince:_medium-dark_skin_tone:', ':prince:_medium-light_skin_tone:', ':princess:', ':princess:_dark_skin_tone:', ':princess:_light_skin_tone:', ':princess:_medium_skin_tone:', ':princess:_medium-dark_skin_tone:', ':princess:_medium-light_skin_tone:', ':printer:', ':prohibited:', ':purple_circle:', ':purple_heart:', ':purple_square:', ':purse:', ':pushpin:', ':puzzle_piece:', ':rabbit_face:', ':rabbit:', ':raccoon:', ':racing_car:', ':radio_button:', ':radio:', ':radioactive:', ':railway_car:', ':railway_track:', ':rainbow_flag:', ':rainbow:', ':raised_back_of_hand:', ':raised_back_of_hand:_dark_skin_tone:', ':raised_back_of_hand:_light_skin_tone:', ':raised_back_of_hand:_medium_skin_tone:', ':raised_back_of_hand:_medium-dark_skin_tone:', ':raised_back_of_hand:_medium-light_skin_tone:', ':raised_fist:', ':raised_fist:_dark_skin_tone:', ':raised_fist:_light_skin_tone:', ':raised_fist:_medium_skin_tone:', ':raised_fist:_medium-dark_skin_tone:', ':raised_fist:_medium-light_skin_tone:', ':raised_hand:', ':raised_hand:_dark_skin_tone:', ':raised_hand:_light_skin_tone:', ':raised_hand:_medium_skin_tone:', ':raised_hand:_medium-dark_skin_tone:', ':raised_hand:_medium-light_skin_tone:', ':raising_hands:', ':raising_hands:_dark_skin_tone:', ':raising_hands:_light_skin_tone:', ':raising_hands:_medium_skin_tone:', ':raising_hands:_medium-dark_skin_tone:', ':raising_hands:_medium-light_skin_tone:', ':ram:', ':rat:', ':razor:', ':receipt:', ':record_button:', ':recycling_symbol:', ':red_apple:', ':red_circle:', ':red_envelope:', ':red_exclamation_mark:', ':red_hair:', ':red_heart:', ':red_paper_lantern:', ':red_question_mark:', ':red_square:', ':red_triangle_pointed_down:', ':red_triangle_pointed_up:', ':registered:', ':relieved_face:', ':reminder_ribbon:', ':repeat_button:', ':repeat_single_button:', ':rescue_worker''s_helmet:', ':restroom:', ':reverse_button:', ':revolving_hearts:', ':rhinoceros:', ':ribbon:', ':rice_ball:', ':rice_cracker:', ':right_anger_bubble:', ':right_arrow_curving_down:', ':right_arrow_curving_left:', ':right_arrow_curving_up:', ':right_arrow:', ':right-facing_fist:', ':right-facing_fist:_dark_skin_tone:', ':right-facing_fist:_light_skin_tone:', ':right-facing_fist:_medium_skin_tone:', ':right-facing_fist:_medium-dark_skin_tone:', ':right-facing_fist:_medium-light_skin_tone:', ':rightwards_hand:', ':rightwards_hand:_dark_skin_tone:', ':rightwards_hand:_light_skin_tone:', ':rightwards_hand:_medium_skin_tone:', ':rightwards_hand:_medium-dark_skin_tone:', ':rightwards_hand:_medium-light_skin_tone:', ':rightwards_pushing_hand:', ':rightwards_pushing_hand:_dark_skin_tone:', ':rightwards_pushing_hand:_light_skin_tone:', ':rightwards_pushing_hand:_medium_skin_tone:', ':rightwards_pushing_hand:_medium-dark_skin_tone:', ':rightwards_pushing_hand:_medium-light_skin_tone:', ':ring_buoy:', ':ring:', ':ringed_planet:', ':roasted_sweet_potato:', ':robot:', ':rock:', ':rocket:', ':roll_of_paper:', ':rolled-up_newspaper:', ':roller_coaster:', ':roller_skate:', ':rolling_on_the_floor_laughing:', ':rooster:', ':rose:', ':rosette:', ':round_pushpin:', ':rugby_football:', ':running_shirt:', ':running_shoe:', ':sad_but_relieved_face:', ':safety_pin:', ':safety_vest:', ':Sagittarius:', ':sailboat:', ':sake:', ':salt:', ':saluting_face:', ':sandwich:', ':Santa_Claus:', ':Santa_Claus:_dark_skin_tone:', ':Santa_Claus:_light_skin_tone:', ':Santa_Claus:_medium_skin_tone:', ':Santa_Claus:_medium-dark_skin_tone:', ':Santa_Claus:_medium-light_skin_tone:', ':sari:', ':satellite_antenna:', ':satellite:', ':sauropod:', ':saxophone:', ':scarf:', ':school:', ':scientist:', ':scientist:_dark_skin_tone:', ':scientist:_light_skin_tone:', ':scientist:_medium_skin_tone:', ':scientist:_medium-dark_skin_tone:', ':scientist:_medium-light_skin_tone:', ':scissors:', ':Scorpio:', ':scorpion:', ':screwdriver:', ':scroll:', ':seal:', ':seat:', ':see-no-evil_monkey:', ':seedling:', ':selfie:', ':selfie:_dark_skin_tone:', ':selfie:_light_skin_tone:', ':selfie:_medium_skin_tone:', ':selfie:_medium-dark_skin_tone:', ':selfie:_medium-light_skin_tone:', ':service_dog:', ':seven_o''clock:', ':seven-thirty:', ':sewing_needle:', ':shaking_face:', ':shallow_pan_of_food:', ':shamrock:', ':shark:', ':shaved_ice:', ':sheaf_of_rice:', ':shield:', ':shinto_shrine:', ':ship:', ':shooting_star:', ':shopping_bags:', ':shopping_cart:', ':shortcake:', ':shorts:', ':shower:', ':shrimp:', ':shuffle_tracks_button:', ':shushing_face:', ':sign_of_the_horns:', ':sign_of_the_horns:_dark_skin_tone:', ':sign_of_the_horns:_light_skin_tone:', ':sign_of_the_horns:_medium_skin_tone:', ':sign_of_the_horns:_medium-dark_skin_tone:', ':sign_of_the_horns:_medium-light_skin_tone:', ':singer:', ':singer:_dark_skin_tone:', ':singer:_light_skin_tone:', ':singer:_medium_skin_tone:', ':singer:_medium-dark_skin_tone:', ':singer:_medium-light_skin_tone:', ':six_o''clock:', ':six-thirty:', ':skateboard:', ':skier:', ':skis:', ':skull_and_crossbones:', ':skull:', ':skunk:', ':sled:', ':sleeping_face:', ':sleepy_face:', ':slightly_frowning_face:', ':slightly_smiling_face:', ':slot_machine:', ':sloth:', ':small_airplane:', ':small_blue_diamond:', ':small_orange_diamond:', ':smiling_cat_with_heart-eyes:', ':smiling_face_with_halo:', ':smiling_face_with_heart-eyes:', ':smiling_face_with_hearts:', ':smiling_face_with_horns:', ':smiling_face_with_open_hands:', ':smiling_face_with_smiling_eyes:', ':smiling_face_with_sunglasses:', ':smiling_face_with_tear:', ':smiling_face:', ':smirking_face:', ':snail:', ':snake:', ':sneezing_face:', ':snow-capped_mountain:', ':snowboarder:', ':snowboarder:_dark_skin_tone:', ':snowboarder:_light_skin_tone:', ':snowboarder:_medium_skin_tone:', ':snowboarder:_medium-dark_skin_tone:', ':snowboarder:_medium-light_skin_tone:', ':snowflake:', ':snowman_without_snow:', ':snowman:', ':soap:', ':soccer_ball:', ':socks:', ':soft_ice_cream:', ':softball:', ':SOON_arrow:', ':SOS_button:', ':spade_suit:', ':spaghetti:', ':sparkle:', ':sparkler:', ':sparkles:', ':sparkling_heart:', ':speak-no-evil_monkey:', ':speaker_high_volume:', ':speaker_low_volume:', ':speaker_medium_volume:', ':speaking_head:', ':speech_balloon:', ':speedboat:', ':spider_web:', ':spider:', ':spiral_calendar:', ':spiral_notepad:', ':spiral_shell:', ':sponge:', ':spoon:', ':sport_utility_vehicle:', ':sports_medal:', ':spouting_whale:', ':squid:', ':squinting_face_with_tongue:', ':stadium:', ':star_and_crescent:', ':star_of_David:', ':star-struck:', ':star:', ':station:', ':Statue_of_Liberty:', ':steaming_bowl:', ':stethoscope:', ':stop_button:', ':stop_sign:', ':stopwatch:', ':straight_ruler:', ':strawberry:', ':student:', ':student:_dark_skin_tone:', ':student:_light_skin_tone:', ':student:_medium_skin_tone:', ':student:_medium-dark_skin_tone:', ':student:_medium-light_skin_tone:', ':studio_microphone:', ':stuffed_flatbread:', ':sun_behind_cloud:', ':sun_behind_large_cloud:', ':sun_behind_rain_cloud:', ':sun_behind_small_cloud:', ':sun_with_face:', ':sun:', ':sunflower:', ':sunglasses:', ':sunrise_over_mountains:', ':sunrise:', ':sunset:', ':superhero:', ':superhero:_dark_skin_tone:', ':superhero:_light_skin_tone:', ':superhero:_medium_skin_tone:', ':superhero:_medium-dark_skin_tone:', ':superhero:_medium-light_skin_tone:', ':supervillain:', ':supervillain:_dark_skin_tone:', ':supervillain:_light_skin_tone:', ':supervillain:_medium_skin_tone:', ':supervillain:_medium-dark_skin_tone:', ':supervillain:_medium-light_skin_tone:', ':sushi:', ':suspension_railway:', ':swan:', ':sweat_droplets:', ':synagogue:', ':syringe:', ':T-Rex:', ':t-shirt:', ':taco:', ':takeout_box:', ':tamale:', ':tanabata_tree:', ':tangerine:', ':Taurus:', ':taxi:', ':teacher:', ':teacher:_dark_skin_tone:', ':teacher:_light_skin_tone:', ':teacher:_medium_skin_tone:', ':teacher:_medium-dark_skin_tone:', ':teacher:_medium-light_skin_tone:', ':teacup_without_handle:', ':teapot:', ':tear-off_calendar:', ':technologist:', ':technologist:_dark_skin_tone:', ':technologist:_light_skin_tone:', ':technologist:_medium_skin_tone:', ':technologist:_medium-dark_skin_tone:', ':technologist:_medium-light_skin_tone:', ':teddy_bear:', ':telephone_receiver:', ':telephone:', ':telescope:', ':television:', ':ten_o''clock:', ':ten-thirty:', ':tennis:', ':tent:', ':test_tube:', ':thermometer:', ':thinking_face:', ':thong_sandal:', ':thought_balloon:', ':thread:', ':three_o''clock:', ':three-thirty:', ':thumbs_down:', ':thumbs_down:_dark_skin_tone:', ':thumbs_down:_light_skin_tone:', ':thumbs_down:_medium_skin_tone:', ':thumbs_down:_medium-dark_skin_tone:', ':thumbs_down:_medium-light_skin_tone:', ':thumbs_up:', ':thumbs_up:_dark_skin_tone:', ':thumbs_up:_light_skin_tone:', ':thumbs_up:_medium_skin_tone:', ':thumbs_up:_medium-dark_skin_tone:', ':thumbs_up:_medium-light_skin_tone:', ':ticket:', ':tiger_face:', ':tiger:', ':timer_clock:', ':tired_face:', ':toilet:', ':Tokyo_tower:', ':tomato:', ':tongue:', ':toolbox:', ':tooth:', ':toothbrush:', ':TOP_arrow:', ':top_hat:', ':tornado:', ':trackball:', ':tractor:', ':trade_mark:', ':train:', ':tram_car:', ':tram:', ':transgender_flag:', ':transgender_symbol:', ':triangular_flag:', ':triangular_ruler:', ':trident_emblem:', ':troll:', ':trolleybus:', ':trophy:', ':tropical_drink:', ':tropical_fish:', ':trumpet:', ':tulip:', ':tumbler_glass:', ':turkey:', ':turtle:', ':twelve_o''clock:', ':twelve-thirty:', ':two_hearts:', ':two_o''clock:', ':two-hump_camel:', ':two-thirty:', ':umbrella_on_ground:', ':umbrella_with_rain_drops:', ':umbrella:', ':unamused_face:', ':unicorn:', ':unlocked:', ':up_arrow:', ':up-down_arrow:', ':up-left_arrow:', ':up-right_arrow:', ':UP!_button:', ':upside-down_face:', ':upwards_button:', ':vampire:', ':vampire:_dark_skin_tone:', ':vampire:_light_skin_tone:', ':vampire:_medium_skin_tone:', ':vampire:_medium-dark_skin_tone:', ':vampire:_medium-light_skin_tone:', ':vertical_traffic_light:', ':vibration_mode:', ':victory_hand:', ':victory_hand:_dark_skin_tone:', ':victory_hand:_light_skin_tone:', ':victory_hand:_medium_skin_tone:', ':victory_hand:_medium-dark_skin_tone:', ':victory_hand:_medium-light_skin_tone:', ':video_camera:', ':video_game:', ':videocassette:', ':violin:', ':Virgo:', ':volcano:', ':volleyball:', ':VS_button:', ':vulcan_salute:', ':vulcan_salute:_dark_skin_tone:', ':vulcan_salute:_light_skin_tone:', ':vulcan_salute:_medium_skin_tone:', ':vulcan_salute:_medium-dark_skin_tone:', ':vulcan_salute:_medium-light_skin_tone:', ':waffle:', ':waning_crescent_moon:', ':waning_gibbous_moon:', ':warning:', ':wastebasket:', ':watch:', ':water_buffalo:', ':water_closet:', ':water_pistol:', ':water_wave:', ':watermelon:', ':waving_hand:', ':waving_hand:_dark_skin_tone:', ':waving_hand:_light_skin_tone:', ':waving_hand:_medium_skin_tone:', ':waving_hand:_medium-dark_skin_tone:', ':waving_hand:_medium-light_skin_tone:', ':wavy_dash:', ':waxing_crescent_moon:', ':waxing_gibbous_moon:', ':weary_cat:', ':weary_face:', ':wedding:', ':whale:', ':wheel_of_dharma:', ':wheel:', ':wheelchair_symbol:', ':white_cane:', ':white_circle:', ':white_exclamation_mark:', ':white_flag:', ':white_flower:', ':white_hair:', ':white_heart:', ':white_large_square:', ':white_medium_square:', ':white_medium-small_square:', ':white_question_mark:', ':white_small_square:', ':white_square_button:', ':wilted_flower:', ':wind_chime:', ':wind_face:', ':window:', ':wine_glass:', ':wing:', ':winking_face_with_tongue:', ':winking_face:', ':wireless:', ':wolf:', ':woman_and_man_holding_hands:', ':woman_and_man_holding_hands:_dark_skin_tone,_light_skin_tone:', ':woman_and_man_holding_hands:_dark_skin_tone,_medium_skin_tone:', ':woman_and_man_holding_hands:_dark_skin_tone,_medium-dark_skin_tone:', ':woman_and_man_holding_hands:_dark_skin_tone,_medium-light_skin_tone:', ':woman_and_man_holding_hands:_dark_skin_tone:', ':woman_and_man_holding_hands:_light_skin_tone,_dark_skin_tone:', ':woman_and_man_holding_hands:_light_skin_tone,_medium_skin_tone:', ':woman_and_man_holding_hands:_light_skin_tone,_medium-dark_skin_tone:', ':woman_and_man_holding_hands:_light_skin_tone,_medium-light_skin_tone:', ':woman_and_man_holding_hands:_light_skin_tone:', ':woman_and_man_holding_hands:_medium_skin_tone,_dark_skin_tone:', ':woman_and_man_holding_hands:_medium_skin_tone,_light_skin_tone:', ':woman_and_man_holding_hands:_medium_skin_tone,_medium-dark_skin_tone:', ':woman_and_man_holding_hands:_medium_skin_tone,_medium-light_skin_tone:', ':woman_and_man_holding_hands:_medium_skin_tone:', ':woman_and_man_holding_hands:_medium-dark_skin_tone,_dark_skin_tone:', ':woman_and_man_holding_hands:_medium-dark_skin_tone,_light_skin_tone:', ':woman_and_man_holding_hands:_medium-dark_skin_tone,_medium_skin_tone:', ':woman_and_man_holding_hands:_medium-dark_skin_tone,_medium-light_skin_tone:', ':woman_and_man_holding_hands:_medium-dark_skin_tone:', ':woman_and_man_holding_hands:_medium-light_skin_tone,_dark_skin_tone:', ':woman_and_man_holding_hands:_medium-light_skin_tone,_light_skin_tone:', ':woman_and_man_holding_hands:_medium-light_skin_tone,_medium_skin_tone:', ':woman_and_man_holding_hands:_medium-light_skin_tone,_medium-dark_skin_tone:', ':woman_and_man_holding_hands:_medium-light_skin_tone:', ':woman_artist:', ':woman_artist:_dark_skin_tone:', ':woman_artist:_light_skin_tone:', ':woman_artist:_medium_skin_tone:', ':woman_artist:_medium-dark_skin_tone:', ':woman_artist:_medium-light_skin_tone:', ':woman_astronaut:', ':woman_astronaut:_dark_skin_tone:', ':woman_astronaut:_light_skin_tone:', ':woman_astronaut:_medium_skin_tone:', ':woman_astronaut:_medium-dark_skin_tone:', ':woman_astronaut:_medium-light_skin_tone:', ':woman_biking:', ':woman_biking:_dark_skin_tone:', ':woman_biking:_light_skin_tone:', ':woman_biking:_medium_skin_tone:', ':woman_biking:_medium-dark_skin_tone:', ':woman_biking:_medium-light_skin_tone:', ':woman_bouncing_ball:', ':woman_bouncing_ball:_dark_skin_tone:', ':woman_bouncing_ball:_light_skin_tone:', ':woman_bouncing_ball:_medium_skin_tone:', ':woman_bouncing_ball:_medium-dark_skin_tone:', ':woman_bouncing_ball:_medium-light_skin_tone:', ':woman_bowing:', ':woman_bowing:_dark_skin_tone:', ':woman_bowing:_light_skin_tone:', ':woman_bowing:_medium_skin_tone:', ':woman_bowing:_medium-dark_skin_tone:', ':woman_bowing:_medium-light_skin_tone:', ':woman_cartwheeling:', ':woman_cartwheeling:_dark_skin_tone:', ':woman_cartwheeling:_light_skin_tone:', ':woman_cartwheeling:_medium_skin_tone:', ':woman_cartwheeling:_medium-dark_skin_tone:', ':woman_cartwheeling:_medium-light_skin_tone:', ':woman_climbing:', ':woman_climbing:_dark_skin_tone:', ':woman_climbing:_light_skin_tone:', ':woman_climbing:_medium_skin_tone:', ':woman_climbing:_medium-dark_skin_tone:', ':woman_climbing:_medium-light_skin_tone:', ':woman_construction_worker:', ':woman_construction_worker:_dark_skin_tone:', ':woman_construction_worker:_light_skin_tone:', ':woman_construction_worker:_medium_skin_tone:', ':woman_construction_worker:_medium-dark_skin_tone:', ':woman_construction_worker:_medium-light_skin_tone:', ':woman_cook:', ':woman_cook:_dark_skin_tone:', ':woman_cook:_light_skin_tone:', ':woman_cook:_medium_skin_tone:', ':woman_cook:_medium-dark_skin_tone:', ':woman_cook:_medium-light_skin_tone:', ':woman_dancing:', ':woman_dancing:_dark_skin_tone:', ':woman_dancing:_light_skin_tone:', ':woman_dancing:_medium_skin_tone:', ':woman_dancing:_medium-dark_skin_tone:', ':woman_dancing:_medium-light_skin_tone:', ':woman_detective:', ':woman_detective:_dark_skin_tone:', ':woman_detective:_light_skin_tone:', ':woman_detective:_medium_skin_tone:', ':woman_detective:_medium-dark_skin_tone:', ':woman_detective:_medium-light_skin_tone:', ':woman_elf:', ':woman_elf:_dark_skin_tone:', ':woman_elf:_light_skin_tone:', ':woman_elf:_medium_skin_tone:', ':woman_elf:_medium-dark_skin_tone:', ':woman_elf:_medium-light_skin_tone:', ':woman_facepalming:', ':woman_facepalming:_dark_skin_tone:', ':woman_facepalming:_light_skin_tone:', ':woman_facepalming:_medium_skin_tone:', ':woman_facepalming:_medium-dark_skin_tone:', ':woman_facepalming:_medium-light_skin_tone:', ':woman_factory_worker:', ':woman_factory_worker:_dark_skin_tone:', ':woman_factory_worker:_light_skin_tone:', ':woman_factory_worker:_medium_skin_tone:', ':woman_factory_worker:_medium-dark_skin_tone:', ':woman_factory_worker:_medium-light_skin_tone:', ':woman_fairy:', ':woman_fairy:_dark_skin_tone:', ':woman_fairy:_light_skin_tone:', ':woman_fairy:_medium_skin_tone:', ':woman_fairy:_medium-dark_skin_tone:', ':woman_fairy:_medium-light_skin_tone:', ':woman_farmer:', ':woman_farmer:_dark_skin_tone:', ':woman_farmer:_light_skin_tone:', ':woman_farmer:_medium_skin_tone:', ':woman_farmer:_medium-dark_skin_tone:', ':woman_farmer:_medium-light_skin_tone:', ':woman_feeding_baby:', ':woman_feeding_baby:_dark_skin_tone:', ':woman_feeding_baby:_light_skin_tone:', ':woman_feeding_baby:_medium_skin_tone:', ':woman_feeding_baby:_medium-dark_skin_tone:', ':woman_feeding_baby:_medium-light_skin_tone:', ':woman_firefighter:', ':woman_firefighter:_dark_skin_tone:', ':woman_firefighter:_light_skin_tone:', ':woman_firefighter:_medium_skin_tone:', ':woman_firefighter:_medium-dark_skin_tone:', ':woman_firefighter:_medium-light_skin_tone:', ':woman_frowning:', ':woman_frowning:_dark_skin_tone:', ':woman_frowning:_light_skin_tone:', ':woman_frowning:_medium_skin_tone:', ':woman_frowning:_medium-dark_skin_tone:', ':woman_frowning:_medium-light_skin_tone:', ':woman_genie:', ':woman_gesturing_NO:', ':woman_gesturing_NO:_dark_skin_tone:', ':woman_gesturing_NO:_light_skin_tone:', ':woman_gesturing_NO:_medium_skin_tone:', ':woman_gesturing_NO:_medium-dark_skin_tone:', ':woman_gesturing_NO:_medium-light_skin_tone:', ':woman_gesturing_OK:', ':woman_gesturing_OK:_dark_skin_tone:', ':woman_gesturing_OK:_light_skin_tone:', ':woman_gesturing_OK:_medium_skin_tone:', ':woman_gesturing_OK:_medium-dark_skin_tone:', ':woman_gesturing_OK:_medium-light_skin_tone:', ':woman_getting_haircut:', ':woman_getting_haircut:_dark_skin_tone:', ':woman_getting_haircut:_light_skin_tone:', ':woman_getting_haircut:_medium_skin_tone:', ':woman_getting_haircut:_medium-dark_skin_tone:', ':woman_getting_haircut:_medium-light_skin_tone:', ':woman_getting_massage:', ':woman_getting_massage:_dark_skin_tone:', ':woman_getting_massage:_light_skin_tone:', ':woman_getting_massage:_medium_skin_tone:', ':woman_getting_massage:_medium-dark_skin_tone:', ':woman_getting_massage:_medium-light_skin_tone:', ':woman_golfing:', ':woman_golfing:_dark_skin_tone:', ':woman_golfing:_light_skin_tone:', ':woman_golfing:_medium_skin_tone:', ':woman_golfing:_medium-dark_skin_tone:', ':woman_golfing:_medium-light_skin_tone:', ':woman_guard:', ':woman_guard:_dark_skin_tone:', ':woman_guard:_light_skin_tone:', ':woman_guard:_medium_skin_tone:', ':woman_guard:_medium-dark_skin_tone:', ':woman_guard:_medium-light_skin_tone:', ':woman_health_worker:', ':woman_health_worker:_dark_skin_tone:', ':woman_health_worker:_light_skin_tone:', ':woman_health_worker:_medium_skin_tone:', ':woman_health_worker:_medium-dark_skin_tone:', ':woman_health_worker:_medium-light_skin_tone:', ':woman_in_lotus_position:', ':woman_in_lotus_position:_dark_skin_tone:', ':woman_in_lotus_position:_light_skin_tone:', ':woman_in_lotus_position:_medium_skin_tone:', ':woman_in_lotus_position:_medium-dark_skin_tone:', ':woman_in_lotus_position:_medium-light_skin_tone:', ':woman_in_manual_wheelchair_facing_right:', ':woman_in_manual_wheelchair_facing_right:_dark_skin_tone:', ':woman_in_manual_wheelchair_facing_right:_light_skin_tone:', ':woman_in_manual_wheelchair_facing_right:_medium_skin_tone:', ':woman_in_manual_wheelchair_facing_right:_medium-dark_skin_tone:', ':woman_in_manual_wheelchair_facing_right:_medium-light_skin_tone:', ':woman_in_manual_wheelchair:', ':woman_in_manual_wheelchair:_dark_skin_tone:', ':woman_in_manual_wheelchair:_light_skin_tone:', ':woman_in_manual_wheelchair:_medium_skin_tone:', ':woman_in_manual_wheelchair:_medium-dark_skin_tone:', ':woman_in_manual_wheelchair:_medium-light_skin_tone:', ':woman_in_motorized_wheelchair_facing_right:', ':woman_in_motorized_wheelchair_facing_right:_dark_skin_tone:', ':woman_in_motorized_wheelchair_facing_right:_light_skin_tone:', ':woman_in_motorized_wheelchair_facing_right:_medium_skin_tone:', ':woman_in_motorized_wheelchair_facing_right:_medium-dark_skin_tone:', ':woman_in_motorized_wheelchair_facing_right:_medium-light_skin_tone:', ':woman_in_motorized_wheelchair:', ':woman_in_motorized_wheelchair:_dark_skin_tone:', ':woman_in_motorized_wheelchair:_light_skin_tone:', ':woman_in_motorized_wheelchair:_medium_skin_tone:', ':woman_in_motorized_wheelchair:_medium-dark_skin_tone:', ':woman_in_motorized_wheelchair:_medium-light_skin_tone:', ':woman_in_steamy_room:', ':woman_in_steamy_room:_dark_skin_tone:', ':woman_in_steamy_room:_light_skin_tone:', ':woman_in_steamy_room:_medium_skin_tone:', ':woman_in_steamy_room:_medium-dark_skin_tone:', ':woman_in_steamy_room:_medium-light_skin_tone:', ':woman_in_tuxedo:', ':woman_in_tuxedo:_dark_skin_tone:', ':woman_in_tuxedo:_light_skin_tone:', ':woman_in_tuxedo:_medium_skin_tone:', ':woman_in_tuxedo:_medium-dark_skin_tone:', ':woman_in_tuxedo:_medium-light_skin_tone:', ':woman_judge:', ':woman_judge:_dark_skin_tone:', ':woman_judge:_light_skin_tone:', ':woman_judge:_medium_skin_tone:', ':woman_judge:_medium-dark_skin_tone:', ':woman_judge:_medium-light_skin_tone:', ':woman_juggling:', ':woman_juggling:_dark_skin_tone:', ':woman_juggling:_light_skin_tone:', ':woman_juggling:_medium_skin_tone:', ':woman_juggling:_medium-dark_skin_tone:', ':woman_juggling:_medium-light_skin_tone:', ':woman_kneeling_facing_right:', ':woman_kneeling_facing_right:_dark_skin_tone:', ':woman_kneeling_facing_right:_light_skin_tone:', ':woman_kneeling_facing_right:_medium_skin_tone:', ':woman_kneeling_facing_right:_medium-dark_skin_tone:', ':woman_kneeling_facing_right:_medium-light_skin_tone:', ':woman_kneeling:', ':woman_kneeling:_dark_skin_tone:', ':woman_kneeling:_light_skin_tone:', ':woman_kneeling:_medium_skin_tone:', ':woman_kneeling:_medium-dark_skin_tone:', ':woman_kneeling:_medium-light_skin_tone:', ':woman_lifting_weights:', ':woman_lifting_weights:_dark_skin_tone:', ':woman_lifting_weights:_light_skin_tone:', ':woman_lifting_weights:_medium_skin_tone:', ':woman_lifting_weights:_medium-dark_skin_tone:', ':woman_lifting_weights:_medium-light_skin_tone:', ':woman_mage:', ':woman_mage:_dark_skin_tone:', ':woman_mage:_light_skin_tone:', ':woman_mage:_medium_skin_tone:', ':woman_mage:_medium-dark_skin_tone:', ':woman_mage:_medium-light_skin_tone:', ':woman_mechanic:', ':woman_mechanic:_dark_skin_tone:', ':woman_mechanic:_light_skin_tone:', ':woman_mechanic:_medium_skin_tone:', ':woman_mechanic:_medium-dark_skin_tone:', ':woman_mechanic:_medium-light_skin_tone:', ':woman_mountain_biking:', ':woman_mountain_biking:_dark_skin_tone:', ':woman_mountain_biking:_light_skin_tone:', ':woman_mountain_biking:_medium_skin_tone:', ':woman_mountain_biking:_medium-dark_skin_tone:', ':woman_mountain_biking:_medium-light_skin_tone:', ':woman_office_worker:', ':woman_office_worker:_dark_skin_tone:', ':woman_office_worker:_light_skin_tone:', ':woman_office_worker:_medium_skin_tone:', ':woman_office_worker:_medium-dark_skin_tone:', ':woman_office_worker:_medium-light_skin_tone:', ':woman_pilot:', ':woman_pilot:_dark_skin_tone:', ':woman_pilot:_light_skin_tone:', ':woman_pilot:_medium_skin_tone:', ':woman_pilot:_medium-dark_skin_tone:', ':woman_pilot:_medium-light_skin_tone:', ':woman_playing_handball:', ':woman_playing_handball:_dark_skin_tone:', ':woman_playing_handball:_light_skin_tone:', ':woman_playing_handball:_medium_skin_tone:', ':woman_playing_handball:_medium-dark_skin_tone:', ':woman_playing_handball:_medium-light_skin_tone:', ':woman_playing_water_polo:', ':woman_playing_water_polo:_dark_skin_tone:', ':woman_playing_water_polo:_light_skin_tone:', ':woman_playing_water_polo:_medium_skin_tone:', ':woman_playing_water_polo:_medium-dark_skin_tone:', ':woman_playing_water_polo:_medium-light_skin_tone:', ':woman_police_officer:', ':woman_police_officer:_dark_skin_tone:', ':woman_police_officer:_light_skin_tone:', ':woman_police_officer:_medium_skin_tone:', ':woman_police_officer:_medium-dark_skin_tone:', ':woman_police_officer:_medium-light_skin_tone:', ':woman_pouting:', ':woman_pouting:_dark_skin_tone:', ':woman_pouting:_light_skin_tone:', ':woman_pouting:_medium_skin_tone:', ':woman_pouting:_medium-dark_skin_tone:', ':woman_pouting:_medium-light_skin_tone:', ':woman_raising_hand:', ':woman_raising_hand:_dark_skin_tone:', ':woman_raising_hand:_light_skin_tone:', ':woman_raising_hand:_medium_skin_tone:', ':woman_raising_hand:_medium-dark_skin_tone:', ':woman_raising_hand:_medium-light_skin_tone:', ':woman_rowing_boat:', ':woman_rowing_boat:_dark_skin_tone:', ':woman_rowing_boat:_light_skin_tone:', ':woman_rowing_boat:_medium_skin_tone:', ':woman_rowing_boat:_medium-dark_skin_tone:', ':woman_rowing_boat:_medium-light_skin_tone:', ':woman_running_facing_right:', ':woman_running_facing_right:_dark_skin_tone:', ':woman_running_facing_right:_light_skin_tone:', ':woman_running_facing_right:_medium_skin_tone:', ':woman_running_facing_right:_medium-dark_skin_tone:', ':woman_running_facing_right:_medium-light_skin_tone:', ':woman_running:', ':woman_running:_dark_skin_tone:', ':woman_running:_light_skin_tone:', ':woman_running:_medium_skin_tone:', ':woman_running:_medium-dark_skin_tone:', ':woman_running:_medium-light_skin_tone:', ':woman_scientist:', ':woman_scientist:_dark_skin_tone:', ':woman_scientist:_light_skin_tone:', ':woman_scientist:_medium_skin_tone:', ':woman_scientist:_medium-dark_skin_tone:', ':woman_scientist:_medium-light_skin_tone:', ':woman_shrugging:', ':woman_shrugging:_dark_skin_tone:', ':woman_shrugging:_light_skin_tone:', ':woman_shrugging:_medium_skin_tone:', ':woman_shrugging:_medium-dark_skin_tone:', ':woman_shrugging:_medium-light_skin_tone:', ':woman_singer:', ':woman_singer:_dark_skin_tone:', ':woman_singer:_light_skin_tone:', ':woman_singer:_medium_skin_tone:', ':woman_singer:_medium-dark_skin_tone:', ':woman_singer:_medium-light_skin_tone:', ':woman_standing:', ':woman_standing:_dark_skin_tone:', ':woman_standing:_light_skin_tone:', ':woman_standing:_medium_skin_tone:', ':woman_standing:_medium-dark_skin_tone:', ':woman_standing:_medium-light_skin_tone:', ':woman_student:', ':woman_student:_dark_skin_tone:', ':woman_student:_light_skin_tone:', ':woman_student:_medium_skin_tone:', ':woman_student:_medium-dark_skin_tone:', ':woman_student:_medium-light_skin_tone:', ':woman_superhero:', ':woman_superhero:_dark_skin_tone:', ':woman_superhero:_light_skin_tone:', ':woman_superhero:_medium_skin_tone:', ':woman_superhero:_medium-dark_skin_tone:', ':woman_superhero:_medium-light_skin_tone:', ':woman_supervillain:', ':woman_supervillain:_dark_skin_tone:', ':woman_supervillain:_light_skin_tone:', ':woman_supervillain:_medium_skin_tone:', ':woman_supervillain:_medium-dark_skin_tone:', ':woman_supervillain:_medium-light_skin_tone:', ':woman_surfing:', ':woman_surfing:_dark_skin_tone:', ':woman_surfing:_light_skin_tone:', ':woman_surfing:_medium_skin_tone:', ':woman_surfing:_medium-dark_skin_tone:', ':woman_surfing:_medium-light_skin_tone:', ':woman_swimming:', ':woman_swimming:_dark_skin_tone:', ':woman_swimming:_light_skin_tone:', ':woman_swimming:_medium_skin_tone:', ':woman_swimming:_medium-dark_skin_tone:', ':woman_swimming:_medium-light_skin_tone:', ':woman_teacher:', ':woman_teacher:_dark_skin_tone:', ':woman_teacher:_light_skin_tone:', ':woman_teacher:_medium_skin_tone:', ':woman_teacher:_medium-dark_skin_tone:', ':woman_teacher:_medium-light_skin_tone:', ':woman_technologist:', ':woman_technologist:_dark_skin_tone:', ':woman_technologist:_light_skin_tone:', ':woman_technologist:_medium_skin_tone:', ':woman_technologist:_medium-dark_skin_tone:', ':woman_technologist:_medium-light_skin_tone:', ':woman_tipping_hand:', ':woman_tipping_hand:_dark_skin_tone:', ':woman_tipping_hand:_light_skin_tone:', ':woman_tipping_hand:_medium_skin_tone:', ':woman_tipping_hand:_medium-dark_skin_tone:', ':woman_tipping_hand:_medium-light_skin_tone:', ':woman_vampire:', ':woman_vampire:_dark_skin_tone:', ':woman_vampire:_light_skin_tone:', ':woman_vampire:_medium_skin_tone:', ':woman_vampire:_medium-dark_skin_tone:', ':woman_vampire:_medium-light_skin_tone:', ':woman_walking_facing_right:', ':woman_walking_facing_right:_dark_skin_tone:', ':woman_walking_facing_right:_light_skin_tone:', ':woman_walking_facing_right:_medium_skin_tone:', ':woman_walking_facing_right:_medium-dark_skin_tone:', ':woman_walking_facing_right:_medium-light_skin_tone:', ':woman_walking:', ':woman_walking:_dark_skin_tone:', ':woman_walking:_light_skin_tone:', ':woman_walking:_medium_skin_tone:', ':woman_walking:_medium-dark_skin_tone:', ':woman_walking:_medium-light_skin_tone:', ':woman_wearing_turban:', ':woman_wearing_turban:_dark_skin_tone:', ':woman_wearing_turban:_light_skin_tone:', ':woman_wearing_turban:_medium_skin_tone:', ':woman_wearing_turban:_medium-dark_skin_tone:', ':woman_wearing_turban:_medium-light_skin_tone:', ':woman_with_headscarf:', ':woman_with_headscarf:_dark_skin_tone:', ':woman_with_headscarf:_light_skin_tone:', ':woman_with_headscarf:_medium_skin_tone:', ':woman_with_headscarf:_medium-dark_skin_tone:', ':woman_with_headscarf:_medium-light_skin_tone:', ':woman_with_veil:', ':woman_with_veil:_dark_skin_tone:', ':woman_with_veil:_light_skin_tone:', ':woman_with_veil:_medium_skin_tone:', ':woman_with_veil:_medium-dark_skin_tone:', ':woman_with_veil:_medium-light_skin_tone:', ':woman_with_white_cane_facing_right:', ':woman_with_white_cane_facing_right:_dark_skin_tone:', ':woman_with_white_cane_facing_right:_light_skin_tone:', ':woman_with_white_cane_facing_right:_medium_skin_tone:', ':woman_with_white_cane_facing_right:_medium-dark_skin_tone:', ':woman_with_white_cane_facing_right:_medium-light_skin_tone:', ':woman_with_white_cane:', ':woman_with_white_cane:_dark_skin_tone:', ':woman_with_white_cane:_light_skin_tone:', ':woman_with_white_cane:_medium_skin_tone:', ':woman_with_white_cane:_medium-dark_skin_tone:', ':woman_with_white_cane:_medium-light_skin_tone:', ':woman_zombie:', ':woman:', ':woman:_bald:', ':woman:_beard:', ':woman:_blond_hair:', ':woman:_curly_hair:', ':woman:_dark_skin_tone,_bald:', ':woman:_dark_skin_tone,_beard:', ':woman:_dark_skin_tone,_blond_hair:', ':woman:_dark_skin_tone,_curly_hair:', ':woman:_dark_skin_tone,_red_hair:', ':woman:_dark_skin_tone,_white_hair:', ':woman:_dark_skin_tone:', ':woman:_light_skin_tone,_bald:', ':woman:_light_skin_tone,_beard:', ':woman:_light_skin_tone,_blond_hair:', ':woman:_light_skin_tone,_curly_hair:', ':woman:_light_skin_tone,_red_hair:', ':woman:_light_skin_tone,_white_hair:', ':woman:_light_skin_tone:', ':woman:_medium_skin_tone,_bald:', ':woman:_medium_skin_tone,_beard:', ':woman:_medium_skin_tone,_blond_hair:', ':woman:_medium_skin_tone,_curly_hair:', ':woman:_medium_skin_tone,_red_hair:', ':woman:_medium_skin_tone,_white_hair:', ':woman:_medium_skin_tone:', ':woman:_medium-dark_skin_tone,_bald:', ':woman:_medium-dark_skin_tone,_beard:', ':woman:_medium-dark_skin_tone,_blond_hair:', ':woman:_medium-dark_skin_tone,_curly_hair:', ':woman:_medium-dark_skin_tone,_red_hair:', ':woman:_medium-dark_skin_tone,_white_hair:', ':woman:_medium-dark_skin_tone:', ':woman:_medium-light_skin_tone,_bald:', ':woman:_medium-light_skin_tone,_beard:', ':woman:_medium-light_skin_tone,_blond_hair:', ':woman:_medium-light_skin_tone,_curly_hair:', ':woman:_medium-light_skin_tone,_red_hair:', ':woman:_medium-light_skin_tone,_white_hair:', ':woman:_medium-light_skin_tone:', ':woman:_red_hair:', ':woman:_white_hair:', ':woman''s_boot:', ':woman''s_clothes:', ':woman''s_hat:', ':woman''s_sandal:', ':women_holding_hands:', ':women_holding_hands:_dark_skin_tone,_light_skin_tone:', ':women_holding_hands:_dark_skin_tone,_medium_skin_tone:', ':women_holding_hands:_dark_skin_tone,_medium-dark_skin_tone:', ':women_holding_hands:_dark_skin_tone,_medium-light_skin_tone:', ':women_holding_hands:_dark_skin_tone:', ':women_holding_hands:_light_skin_tone,_dark_skin_tone:', ':women_holding_hands:_light_skin_tone,_medium_skin_tone:', ':women_holding_hands:_light_skin_tone,_medium-dark_skin_tone:', ':women_holding_hands:_light_skin_tone,_medium-light_skin_tone:', ':women_holding_hands:_light_skin_tone:', ':women_holding_hands:_medium_skin_tone,_dark_skin_tone:', ':women_holding_hands:_medium_skin_tone,_light_skin_tone:', ':women_holding_hands:_medium_skin_tone,_medium-dark_skin_tone:', ':women_holding_hands:_medium_skin_tone,_medium-light_skin_tone:', ':women_holding_hands:_medium_skin_tone:', ':women_holding_hands:_medium-dark_skin_tone,_dark_skin_tone:', ':women_holding_hands:_medium-dark_skin_tone,_light_skin_tone:', ':women_holding_hands:_medium-dark_skin_tone,_medium_skin_tone:', ':women_holding_hands:_medium-dark_skin_tone,_medium-light_skin_tone:', ':women_holding_hands:_medium-dark_skin_tone:', ':women_holding_hands:_medium-light_skin_tone,_dark_skin_tone:', ':women_holding_hands:_medium-light_skin_tone,_light_skin_tone:', ':women_holding_hands:_medium-light_skin_tone,_medium_skin_tone:', ':women_holding_hands:_medium-light_skin_tone,_medium-dark_skin_tone:', ':women_holding_hands:_medium-light_skin_tone:', ':women_with_bunny_ears:', ':women_wrestling:', ':women''s_room:', ':wood:', ':woozy_face:', ':world_map:', ':worm:', ':worried_face:', ':wrapped_gift:', ':wrench:', ':writing_hand:', ':writing_hand:_dark_skin_tone:', ':writing_hand:_light_skin_tone:', ':writing_hand:_medium_skin_tone:', ':writing_hand:_medium-dark_skin_tone:', ':writing_hand:_medium-light_skin_tone:', ':x-ray:', ':yarn:', ':yawning_face:', ':yellow_circle:', ':yellow_heart:', ':yellow_square:', ':yen_banknote:', ':yin_yang:', ':yo-yo:', ':zany_face:', ':zebra:', ':zipper-mouth_face:', ':zombie:', ':ZZZ:' )] [string]$ShortCode, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) if ($FileID) { Write-Verbose -Message 'sticker file_id provided.' $sticker = $FileID } #if_FileID else { Write-Verbose -Message 'Sticker by emoji shortcode and sticker pack.' $stickerPackInfo = Get-TelegramStickerPackInfo -BotToken $BotToken -StickerSetName $StickerSetName if (-not ($stickerPackInfo -eq $false)) { $sticker = $stickerPackInfo | Where-Object { $_.Shortcode -eq $ShortCode } | Select-Object -First 1 if (-not $sticker) { throw ('The sticker pack {0} does not contain the emoji {1}' -f $StickerSetName, $ShortCode) } #if_noSticker else { $sticker = $sticker.file_id } #else_noSticker } #if_sticker_info else { throw 'Unable to obtain sticker pack information.' } #else_sticker_info } #else_FileID $form = @{ chat_id = $ChatID sticker = $sticker disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendSticker' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending sticker...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the sticker:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramSticker <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramTextMessage { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Text of the message to be sent')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$Message, [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'URL to use for the link preview')] [ValidatePattern('^(http|https)://[a-zA-Z0-9-\.]+(\.[a-zA-Z]{2,})?(:[0-9]+)?(/.*)?$')] [string]$LinkPreviewURL, [Parameter(Mandatory = $false, HelpMessage = 'Choose how link previews are shown')] [ValidateSet('Disabled', 'Small', 'Large')] [string]$LinkPreviewOption = 'Disabled', #set to Disabled by default [Parameter(Mandatory = $false, HelpMessage = 'Use if the link preview must be shown above the message text')] [switch]$LinkPreviewAboveText, [Parameter(Mandatory = $false, HelpMessage = 'Custom or inline keyboard object')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [psobject]$Keyboard, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $linkPreviewOptionsObj = @{ is_disabled = $false prefer_small_media = $true prefer_large_media = $true show_above_text = $false } if ($LinkPreviewOption -eq 'Disabled') { $linkPreviewOptionsObj.is_disabled = $true } elseif ($LinkPreviewOption -eq 'Small') { $linkPreviewOptionsObj.prefer_small_media = $true $linkPreviewOptionsObj.prefer_large_media = $false } elseif ($LinkPreviewOption -eq 'Large') { $linkPreviewOptionsObj.prefer_small_media = $false $linkPreviewOptionsObj.prefer_large_media = $true } if ($LinkPreviewAboveText.IsPresent) { $linkPreviewOptionsObj.show_above_text = $true } if ($LinkPreviewURL) { $linkPreviewOptionsObj.Add('url', $LinkPreviewURL) } $payload = @{ chat_id = $ChatID text = $Message parse_mode = $ParseMode link_preview_options = $linkPreviewOptionsObj disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload if ($Keyboard) { $payload.Add('reply_markup', $Keyboard) } $uri = 'https://api.telegram.org/bot{0}/sendMessage' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending message...' $invokeRestMethodSplat = @{ Uri = $uri Body = ([System.Text.Encoding]::UTF8.GetBytes((ConvertTo-Json -Compress -InputObject $payload -Depth 50))) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramTextMessage <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramURLAnimation { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'URL path to animation')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$AnimationURL, [Parameter(Mandatory = $false, HelpMessage = 'animation caption')] [string]$Caption, [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying URL leads to supported animation extension...' $fileTypeEval = Test-URLExtension -URL $AnimationURL -Type Animation if ($fileTypeEval -eq $false) { throw ('The specified animation URL: {0} does not contain a supported extension.' -f $AnimationURL) } #if_animationExtension else { Write-Verbose -Message 'Extension supported.' } #else_animationExtension Write-Verbose -Message 'Verifying URL presence and file size...' $fileSizeEval = Test-URLFileSize -URL $AnimationURL if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_animationSize else { Write-Verbose -Message 'File size verified.' } #else_animationSize $payload = @{ chat_id = $ChatID animation = $AnimationURL caption = $Caption parse_mode = $ParseMode disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload $uri = 'https://api.telegram.org/bot{0}/sendAnimation' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending animation...' $invokeRestMethodSplat = @{ Uri = $uri Body = (ConvertTo-Json -Compress -InputObject $payload) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramURLAnimation <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramURLAudio { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Local path to file you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$AudioURL, [Parameter(Mandatory = $false, HelpMessage = 'Caption for file')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Duration of the audio in seconds')] [int]$Duration, [Parameter(Mandatory = $false, HelpMessage = 'Performer')] [string]$Performer, [Parameter(Mandatory = $false, HelpMessage = 'TrackName')] [string]$Title, [Parameter(Mandatory = $false, HelpMessage = 'Original File Name')] [string]$FileName, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying URL leads to supported audio extension...' $fileTypeEval = Test-URLExtension -URL $AudioURL -Type Audio if ($fileTypeEval -eq $false) { throw ('The specified audio URL: {0} does not contain a supported extension.' -f $AudioURL) } #if_audioExtension else { Write-Verbose -Message 'Extension supported.' } #else_audioExtension Write-Verbose -Message 'Verifying URL presence and file size...' $fileSizeEval = Test-URLFileSize -URL $AudioURL if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_audioSize else { Write-Verbose -Message 'File size verified.' } #else_audioSize $payload = @{ chat_id = $ChatID audio = $AudioURL caption = $Caption parse_mode = $ParseMode duration = $Duration performer = $Performer title = $Title file_name = $FileName disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload $uri = 'https://api.telegram.org/bot{0}/sendAudio' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending audio...' $invokeRestMethodSplat = @{ Uri = $uri Body = (ConvertTo-Json -Compress -InputObject $payload) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramURLAudio <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramURLDocument { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'URL path to file')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$FileURL, [Parameter(Mandatory = $false, HelpMessage = 'File caption')] [string]$Caption, [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Disables automatic server-side content type detection')] [switch]$DisableContentTypeDetection, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying URL leads to supported document extension...' $fileTypeEval = Test-URLExtension -URL $FileURL -Type Document if ($fileTypeEval -eq $false) { throw ('The specified file URL: {0} does not contain a supported extension.' -f $FileURL) } #if_documentExtension else { Write-Verbose -Message 'Extension supported.' } #else_documentExtension Write-Verbose -Message 'Verifying URL presence and file size...' $fileSizeEval = Test-URLFileSize -URL $FileURL if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_documentSize else { Write-Verbose -Message 'File size verified.' } #else_documentSize $payload = @{ chat_id = $ChatID document = $FileURL caption = $Caption parse_mode = $ParseMode disable_content_type_detection = $DisableContentTypeDetection.IsPresent disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload $uri = 'https://api.telegram.org/bot{0}/sendDocument' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending document...' $invokeRestMethodSplat = @{ Uri = $uri Body = (ConvertTo-Json -Compress -InputObject $payload) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramURLDocument <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramURLPhoto { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'URL path to photo')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$PhotoURL, [Parameter(Mandatory = $false, HelpMessage = 'Photo caption')] [string]$Caption, [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying URL leads to supported photo extension...' $fileTypeEval = Test-URLExtension -URL $PhotoURL -Type Photo if ($fileTypeEval -eq $false) { throw ('The specified photo URL: {0} does not contain a supported extension.' -f $PhotoURL) } #if_photoExtension else { Write-Verbose -Message 'Extension supported.' } #else_photoExtension Write-Verbose -Message 'Verifying URL presence and file size...' $fileSizeEval = Test-URLFileSize -URL $PhotoURL if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_photoSize else { Write-Verbose -Message 'File size verified.' } #else_photoSize $payload = @{ chat_id = $ChatID photo = $PhotoURL caption = $Caption parse_mode = $ParseMode disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload $uri = 'https://api.telegram.org/bot{0}/sendphoto' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending photo...' $invokeRestMethodSplat = @{ Uri = ('https://api.telegram.org/bot{0}/sendphoto' -f $BotToken) Body = (ConvertTo-Json -Compress -InputObject $payload) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramURLPhoto <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramURLSticker { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'URL path to sticker')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$StickerURL, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying URL leads to supported sticker extension...' $fileTypeEval = Test-URLExtension -URL $StickerURL -Type Sticker if ($fileTypeEval -eq $false) { throw ('The specified sticker URL: {0} does not contain a supported extension.' -f $StickerURL) } #if_stickerExtension else { Write-Verbose -Message 'Extension supported.' } #else_stickerExtension Write-Verbose -Message 'Verifying URL presence and file size...' $fileSizeEval = Test-URLFileSize -URL $StickerURL if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_stickerSize else { Write-Verbose -Message 'File size verified.' } #else_stickerSize $payload = @{ chat_id = $ChatID sticker = $StickerURL disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload $uri = 'https://api.telegram.org/bot{0}/sendSticker' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending sticker...' $invokeRestMethodSplat = @{ Uri = $uri Body = (ConvertTo-Json -Compress -InputObject $payload) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramURLSticker <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramURLVideo { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'URL to file you wish to send')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$VideoURL, [Parameter(Mandatory = $false, HelpMessage = 'Duration of video in seconds')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [Int32]$Duration, [Parameter(Mandatory = $false, HelpMessage = 'Video width')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [Int32]$Width, [Parameter(Mandatory = $false, HelpMessage = 'Video height')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [Int32]$Height, [Parameter(Mandatory = $false, HelpMessage = 'Original File Name')] [string]$FileName, [Parameter(Mandatory = $false, HelpMessage = 'Caption for file')] [string]$Caption = '', #set to false by default [Parameter(Mandatory = $false, HelpMessage = 'HTML vs Markdown for message formatting')] [ValidateSet('Markdown', 'MarkdownV2', 'HTML')] [string]$ParseMode = 'HTML', #set to HTML by default [Parameter(Mandatory = $false, HelpMessage = 'Use if the uploaded video is suitable for streaming')] [switch]$Streaming, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) Write-Verbose -Message 'Verifying URL leads to supported document extension...' $fileTypeEval = Test-URLExtension -URL $VideoURL -Type Video if ($fileTypeEval -eq $false) { throw ('The specified Video URL: {0} does not contain a supported extension.' -f $VideoURL) } #if_videoExtension else { Write-Verbose -Message 'Extension supported.' } #else_videoExtension Write-Verbose -Message 'Verifying URL presence and file size...' $fileSizeEval = Test-URLFileSize -URL $VideoURL if ($fileSizeEval -eq $false) { throw 'File size does not meet Telegram requirements' } #if_videoSize else { Write-Verbose -Message 'File size verified.' } #else_videoSize $payload = @{ chat_id = $ChatID video = $VideoURL duration = $Duration width = $Width height = $Height file_name = $FileName caption = $Caption parse_mode = $ParseMode supports_streaming = $Streaming disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #payload $uri = 'https://api.telegram.org/bot{0}/sendVideo' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending video...' $invokeRestMethodSplat = @{ Uri = $uri Body = (ConvertTo-Json -Compress -InputObject $payload) ErrorAction = 'Stop' ContentType = 'application/json' Method = 'Post' } try { Write-Verbose -Message 'Sending message...' $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram message:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramURLVideo <# .EXTERNALHELP PoshGram-help.xml #> function Send-TelegramVenue { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken, #you could set a token right here if you wanted [Parameter(Mandatory = $true, HelpMessage = '-#########')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$ChatID, #you could set a Chat ID right here if you wanted [Parameter(Mandatory = $true, HelpMessage = 'Latitude of the venue')] [ValidateRange(-90, 90)] [single]$Latitude, [Parameter(Mandatory = $true, HelpMessage = 'Longitude of the venue')] [ValidateRange(-180, 180)] [single]$Longitude, [Parameter(Mandatory = $true, HelpMessage = 'Name of the venue')] [ValidateNotNullOrEmpty()] [string]$Title, [Parameter(Mandatory = $true, HelpMessage = 'Address of the venue')] [ValidateNotNullOrEmpty()] [string]$Address, [Parameter(Mandatory = $false, HelpMessage = 'Send the message silently')] [switch]$DisableNotification, [Parameter(Mandatory = $false, HelpMessage = 'Protects the contents of the sent message from forwarding and saving')] [switch]$ProtectContent ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $form = @{ chat_id = $ChatID latitude = $Latitude longitude = $Longitude title = $Title address = $Address disable_notification = $DisableNotification.IsPresent protect_content = $ProtectContent.IsPresent } #form $uri = 'https://api.telegram.org/bot{0}/sendVenue' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Sending venue...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Form = $form Method = 'Post' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered sending the Telegram venue:' Write-Error $_ if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Send-TelegramVenue <# .EXTERNALHELP PoshGram-help.xml #> function Test-BotToken { [CmdletBinding()] param ( [Parameter(Mandatory = $true, HelpMessage = '#########:xxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxx')] [ValidateNotNull()] [ValidateNotNullOrEmpty()] [string]$BotToken ) Write-Verbose -Message ('Starting: {0}' -f $MyInvocation.Mycommand) $uri = 'https://api.telegram.org/bot{0}/getMe' -f $BotToken Write-Debug -Message ('Base URI: {0}' -f $uri) Write-Verbose -Message 'Testing Bot Token...' $invokeRestMethodSplat = @{ Uri = $uri ErrorAction = 'Stop' Method = 'Get' } try { $results = Invoke-RestMethod @invokeRestMethodSplat } #try_messageSend catch { Write-Warning -Message 'An error was encountered testing the BOT token:' if ($_.ErrorDetails) { $results = $_.ErrorDetails | ConvertFrom-Json -ErrorAction SilentlyContinue } else { throw $_ } } #catch_messageSend return $results } #function_Test-BotToken |