diff --git a/client/src/components/forms/PostFormCard.tsx b/client/src/components/forms/PostFormCard.tsx index 75207fb..2059dd3 100644 --- a/client/src/components/forms/PostFormCard.tsx +++ b/client/src/components/forms/PostFormCard.tsx @@ -1,13 +1,12 @@ import { - CpuChipIcon, - PlusCircleIcon + CpuChipIcon } from "@heroicons/react/24/outline"; -import { XCircleIcon } from "@heroicons/react/24/solid"; -import { useState, useEffect, useRef } from "react"; +import { useState, useEffect } from "react"; import { UnsignedEvent, Event as NostrEvent, nip19 } from "nostr-tools"; -import { renderMedia } from "../../utils/FileUpload"; import { useSubmitForm } from "./handleSubmit"; import "../../styles/Form.css"; +import EmotePicker from "../modals/EmotePicker/EmotePicker"; +import emotes from "../modals/EmotePicker/custom_emojis.json" interface FormProps { refEvent?: NostrEvent; @@ -20,9 +19,7 @@ const NewNoteCard = ({ tagType, hashtag, }: FormProps) => { - const ref = useRef(null); const [comment, setComment] = useState(""); - const [file, setFile] = useState(""); const [unsigned, setUnsigned] = useState({ kind: 1, tags: [ @@ -38,8 +35,6 @@ const NewNoteCard = ({ const [difficulty, setDifficulty] = useState( localStorage.getItem("difficulty") || "21" ); - const [fileSizeError, setFileSizeError] = useState(false); - const [uploadingFile, setUploadingFile] = useState(false); useEffect(() => { if (hashtag) { @@ -78,17 +73,16 @@ const NewNoteCard = ({ useEffect(() => { setUnsigned(prevUnsigned => ({ ...prevUnsigned, - content: `${comment} ${file}`, + content: `${comment}`, created_at: Math.floor(Date.now() / 1000), })); - }, [comment, file]); + }, [comment]); const { handleSubmit: originalHandleSubmit, doingWorkProp, doingWorkProgress } = useSubmitForm(unsigned, difficulty); const handleSubmit = async (event: React.FormEvent) => { await originalHandleSubmit(event); setComment(""); - setFile(""); setUnsigned(prevUnsigned => ({ ...prevUnsigned, content: '', @@ -96,6 +90,24 @@ const NewNoteCard = ({ })); }; + //Emoji stuff + const [showEmojiPicker, setShowEmojiPicker] = useState(false); + + interface Emoji { + category: string; + shortcode: string; + static_url: string; + tags: string[]; + url: string; + visible_in_picker: boolean; + } + + async function onEmojiSelect(emoji: Emoji) { + setShowEmojiPicker(false); + setComment(comment + " :" + emoji.shortcode + ":"); + unsigned.tags.push(['emoji', emoji.shortcode, emoji.url]); + } + return (
setComment(e.target.value)} rows={comment.split('\n').length || 1} /> -
- {file !== "" && ( - - )} - {renderMedia([file])} -
@@ -133,10 +137,11 @@ const NewNoteCard = ({
+ onEmojiSelect(emoji)} /> @@ -144,9 +149,6 @@ const NewNoteCard = ({
- {fileSizeError ? ( - File size should not exceed 2.5MB - ) : null} {doingWorkProp ? (
diff --git a/client/src/components/modals/EmotePicker/EmotePicker.tsx b/client/src/components/modals/EmotePicker/EmotePicker.tsx new file mode 100644 index 0000000..bac45cf --- /dev/null +++ b/client/src/components/modals/EmotePicker/EmotePicker.tsx @@ -0,0 +1,116 @@ +import React, { useState, useRef, useEffect } from 'react'; +import emotes from './custom_emojis.json'; +import { PlusCircleIcon } from '@heroicons/react/24/outline'; + +interface Emoji { + category: string; + shortcode: string; + static_url: string; + tags: string[]; + url: string; + visible_in_picker: boolean; +} + +interface EmotePickerProps { + onEmojiSelect?: (emoji: Emoji) => void; +} + +const EmotePicker: React.FC = ({ onEmojiSelect }) => { + const [showEmotes, setShowEmotes] = useState(false); + const [searchQuery, setSearchQuery] = useState(''); + const [hoveredEmote, setHoveredEmote] = useState(null); + const [activeTab, setActiveTab] = useState(0); + const modalRef = useRef(null); + + const toggleEmotes = () => { + setShowEmotes(!showEmotes); + }; + + const handleSearch = (e: React.ChangeEvent) => { + setSearchQuery(e.target.value); + }; + + const categories = [ + { label: '0-4', range: /^[0-4]/ }, + { label: '5-9', range: /^[5-9]/ }, + { label: 'A-E', range: /^[A-E]/i }, + { label: 'F-J', range: /^[F-J]/i }, + { label: 'K-N', range: /^[K-N]/i }, + { label: 'O-R', range: /^[O-R]/i }, + { label: 'S-V', range: /^[S-V]/i }, + { label: 'W-Z', range: /^[W-Z]/i }, + ]; + + const filteredEmotes = emotes.filter((emote) => { + const matchesSearch = emote.shortcode.toLowerCase().includes(searchQuery.toLowerCase()); + if (searchQuery) { + return matchesSearch; + } else { + const category = categories[activeTab]; + return matchesSearch && category.range.test(emote.shortcode); + } + }); + + useEffect(() => { + // Explicitly type the event parameter + function handleClickOutside(event: MouseEvent) { + // Use a type assertion to tell TypeScript the target is an HTMLElement + const target = event.target as HTMLElement; + if (modalRef.current && !modalRef.current.contains(target)) { + setShowEmotes(false); + } + } + document.addEventListener("mousedown", handleClickOutside); + return () => { + document.removeEventListener("mousedown", handleClickOutside); + }; + }, []); // Removed modalRef from dependency array as it doesn't change + + return ( +
+ + {showEmotes && ( +
+ +
+ {categories.map((category, index) => ( + + ))} +
+ {filteredEmotes.map((emote: Emoji, index) => ( +
setHoveredEmote(emote.shortcode)} + onMouseLeave={() => setHoveredEmote(null)} + onClick={() => onEmojiSelect && onEmojiSelect(emote)} // Add this line + > + + {hoveredEmote === emote.shortcode && ( +
+ {emote.shortcode} +
+ )} +
+ ))} +
+ )} +
+ ); +}; + +export default EmotePicker; \ No newline at end of file diff --git a/client/src/components/forms/custom_emojis.json b/client/src/components/modals/EmotePicker/custom_emojis.json similarity index 64% rename from client/src/components/forms/custom_emojis.json rename to client/src/components/modals/EmotePicker/custom_emojis.json index 801351c..a9b672a 100644 --- a/client/src/components/forms/custom_emojis.json +++ b/client/src/components/modals/EmotePicker/custom_emojis.json @@ -1,8 +1,3 @@ -[ - { - "id": "poast", - "name": "poast", - "emojis": [ { "category": "", @@ -64,56 +59,6 @@ "url": "https://poa.st/emoji/stolen/0020.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "002_blush", - "static_url": "https://poa.st/emoji/custom/002_blush.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/002_blush.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "002_hug", - "static_url": "https://poa.st/emoji/custom/002_hug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/002_hug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "002_lurk", - "static_url": "https://poa.st/emoji/custom/002_lurk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/002_lurk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "002_sad", - "static_url": "https://poa.st/emoji/custom/002_sad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/002_sad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "002_teehee", - "static_url": "https://poa.st/emoji/custom/002_teehee.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/002_teehee.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "0030", @@ -904,176 +849,6 @@ "url": "https://poa.st/emoji/custom/02feet.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "02fish", - "static_url": "https://poa.st/emoji/stolen/02fish.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02fish.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02heart", - "static_url": "https://poa.st/emoji/stolen/02heart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02heart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02hug", - "static_url": "https://poa.st/emoji/stolen/02hug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02hug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02jump", - "static_url": "https://poa.st/emoji/custom/02jump.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/custom/02jump.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02laugh", - "static_url": "https://poa.st/emoji/stolen/02laugh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02laugh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02learn", - "static_url": "https://poa.st/emoji/stolen/02learn.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02learn.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02lul", - "static_url": "https://poa.st/emoji/stolen/02lul.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02lul.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02lurk", - "static_url": "https://poa.st/emoji/stolen/02lurk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02lurk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02mad", - "static_url": "https://poa.st/emoji/custom/02mad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/02mad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02nod", - "static_url": "https://poa.st/emoji/stolen/02nod.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/stolen/02nod.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02peek", - "static_url": "https://poa.st/emoji/custom/02peek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/02peek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02sad", - "static_url": "https://poa.st/emoji/stolen/02sad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02sad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02shrug", - "static_url": "https://poa.st/emoji/stolen/02shrug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02shrug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02smile", - "static_url": "https://poa.st/emoji/stolen/02smile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02smile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02smug", - "static_url": "https://poa.st/emoji/stolen/02smug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02smug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02superblush", - "static_url": "https://poa.st/emoji/stolen/02superblush.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02superblush.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "02yell", - "static_url": "https://poa.st/emoji/stolen/02yell.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/02yell.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "0300", @@ -1614,33376 +1389,6 @@ "url": "https://poa.st/emoji/custom/1911.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "1f004", - "static_url": "https://poa.st/emoji/custom/1f004.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f004.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f0cf", - "static_url": "https://poa.st/emoji/custom/1f0cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f0cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f170", - "static_url": "https://poa.st/emoji/custom/1f170.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f170.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f171", - "static_url": "https://poa.st/emoji/custom/1f171.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f171.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f17e", - "static_url": "https://poa.st/emoji/custom/1f17e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f17e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f17f", - "static_url": "https://poa.st/emoji/custom/1f17f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f17f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f18e", - "static_url": "https://poa.st/emoji/custom/1f18e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f18e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f191", - "static_url": "https://poa.st/emoji/custom/1f191.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f191.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f192", - "static_url": "https://poa.st/emoji/custom/1f192.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f192.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f193", - "static_url": "https://poa.st/emoji/custom/1f193.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f193.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f194", - "static_url": "https://poa.st/emoji/custom/1f194.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f194.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f195", - "static_url": "https://poa.st/emoji/custom/1f195.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f195.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f196", - "static_url": "https://poa.st/emoji/custom/1f196.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f196.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f197", - "static_url": "https://poa.st/emoji/custom/1f197.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f197.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f198", - "static_url": "https://poa.st/emoji/custom/1f198.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f198.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f199", - "static_url": "https://poa.st/emoji/custom/1f199.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f199.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f19a", - "static_url": "https://poa.st/emoji/custom/1f19a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f19a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f6", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1fd", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e6-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1e6-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e6-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7", - "static_url": "https://poa.st/emoji/custom/1f1e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1e7", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1ef", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f6", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e7-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1e7-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e7-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1fd", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e8-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1e8-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e8-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1ef", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1e9-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1e9-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1e9-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ea-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1ea-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ea-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1eb-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb-1f1ef", - "static_url": "https://poa.st/emoji/custom/1f1eb-1f1ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb-1f1ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1eb-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1eb-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1eb-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1eb-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1eb-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1eb-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1e7", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f6", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ec-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1ec-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ec-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1ed-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1ed-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1ed-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1ed-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1ed-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ed-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1ed-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ed-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f6", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ee-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1ee-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ee-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ef", - "static_url": "https://poa.st/emoji/custom/1f1ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ef-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1ef-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ef-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ef-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1ef-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ef-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ef-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1ef-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ef-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ef-1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1ef-1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ef-1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f0-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1f0-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f0-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1e7", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f1-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1f1-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f1-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f6", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1fd", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f2-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1f2-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f2-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f3-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1f3-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f3-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f4-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f4-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f4-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5", - "static_url": "https://poa.st/emoji/custom/1f1f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f5-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1f5-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f5-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f6", - "static_url": "https://poa.st/emoji/custom/1f1f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f6-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f6-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f6-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f7-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1f7-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f7-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f7-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1f7-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f7-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f7-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1f7-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f7-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f7-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1f7-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f7-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f7-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1f7-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f7-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1e7", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1ef", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1fd", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f8-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1f8-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f8-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1e9", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1ed", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1ef", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f1", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f4", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f7", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1f9-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1f9-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1f9-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fa-1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1fa-1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fa-1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb", - "static_url": "https://poa.st/emoji/custom/1f1fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1e8", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1ec", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1ee", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1f3", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fb-1f1fa", - "static_url": "https://poa.st/emoji/custom/1f1fb-1f1fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fb-1f1fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fc-1f1eb", - "static_url": "https://poa.st/emoji/custom/1f1fc-1f1eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fc-1f1eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fc-1f1f8", - "static_url": "https://poa.st/emoji/custom/1f1fc-1f1f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fc-1f1f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fd", - "static_url": "https://poa.st/emoji/custom/1f1fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fd-1f1f0", - "static_url": "https://poa.st/emoji/custom/1f1fd-1f1f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fd-1f1f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fe", - "static_url": "https://poa.st/emoji/custom/1f1fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fe-1f1ea", - "static_url": "https://poa.st/emoji/custom/1f1fe-1f1ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fe-1f1ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1fe-1f1f9", - "static_url": "https://poa.st/emoji/custom/1f1fe-1f1f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1fe-1f1f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ff", - "static_url": "https://poa.st/emoji/custom/1f1ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ff-1f1e6", - "static_url": "https://poa.st/emoji/custom/1f1ff-1f1e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ff-1f1e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ff-1f1f2", - "static_url": "https://poa.st/emoji/custom/1f1ff-1f1f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ff-1f1f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f1ff-1f1fc", - "static_url": "https://poa.st/emoji/custom/1f1ff-1f1fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f1ff-1f1fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f201", - "static_url": "https://poa.st/emoji/custom/1f201.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f201.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f202", - "static_url": "https://poa.st/emoji/custom/1f202.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f202.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f21a", - "static_url": "https://poa.st/emoji/custom/1f21a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f21a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f22f", - "static_url": "https://poa.st/emoji/custom/1f22f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f22f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f232", - "static_url": "https://poa.st/emoji/custom/1f232.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f232.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f233", - "static_url": "https://poa.st/emoji/custom/1f233.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f233.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f234", - "static_url": "https://poa.st/emoji/custom/1f234.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f234.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f235", - "static_url": "https://poa.st/emoji/custom/1f235.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f235.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f236", - "static_url": "https://poa.st/emoji/custom/1f236.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f236.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f237", - "static_url": "https://poa.st/emoji/custom/1f237.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f237.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f238", - "static_url": "https://poa.st/emoji/custom/1f238.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f238.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f239", - "static_url": "https://poa.st/emoji/custom/1f239.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f239.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f23a", - "static_url": "https://poa.st/emoji/custom/1f23a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f23a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f250", - "static_url": "https://poa.st/emoji/custom/1f250.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f250.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f251", - "static_url": "https://poa.st/emoji/custom/1f251.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f251.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f300", - "static_url": "https://poa.st/emoji/custom/1f300.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f300.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f301", - "static_url": "https://poa.st/emoji/custom/1f301.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f301.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f302", - "static_url": "https://poa.st/emoji/custom/1f302.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f302.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f303", - "static_url": "https://poa.st/emoji/custom/1f303.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f303.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f304", - "static_url": "https://poa.st/emoji/custom/1f304.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f304.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f305", - "static_url": "https://poa.st/emoji/custom/1f305.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f305.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f306", - "static_url": "https://poa.st/emoji/custom/1f306.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f306.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f307", - "static_url": "https://poa.st/emoji/custom/1f307.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f307.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f308", - "static_url": "https://poa.st/emoji/custom/1f308.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f308.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f309", - "static_url": "https://poa.st/emoji/custom/1f309.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f309.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f30a", - "static_url": "https://poa.st/emoji/custom/1f30a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f30a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f30b", - "static_url": "https://poa.st/emoji/custom/1f30b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f30b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f30c", - "static_url": "https://poa.st/emoji/custom/1f30c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f30c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f30d", - "static_url": "https://poa.st/emoji/custom/1f30d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f30d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f30e", - "static_url": "https://poa.st/emoji/custom/1f30e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f30e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f30f", - "static_url": "https://poa.st/emoji/custom/1f30f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f30f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f310", - "static_url": "https://poa.st/emoji/custom/1f310.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f310.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f311", - "static_url": "https://poa.st/emoji/custom/1f311.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f311.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f312", - "static_url": "https://poa.st/emoji/custom/1f312.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f312.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f313", - "static_url": "https://poa.st/emoji/custom/1f313.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f313.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f314", - "static_url": "https://poa.st/emoji/custom/1f314.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f314.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f315", - "static_url": "https://poa.st/emoji/custom/1f315.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f315.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f316", - "static_url": "https://poa.st/emoji/custom/1f316.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f316.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f317", - "static_url": "https://poa.st/emoji/custom/1f317.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f317.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f318", - "static_url": "https://poa.st/emoji/custom/1f318.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f318.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f319", - "static_url": "https://poa.st/emoji/custom/1f319.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f319.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f31a", - "static_url": "https://poa.st/emoji/custom/1f31a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f31a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f31b", - "static_url": "https://poa.st/emoji/custom/1f31b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f31b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f31c", - "static_url": "https://poa.st/emoji/custom/1f31c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f31c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f31d", - "static_url": "https://poa.st/emoji/custom/1f31d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f31d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f31e", - "static_url": "https://poa.st/emoji/custom/1f31e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f31e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f31f", - "static_url": "https://poa.st/emoji/custom/1f31f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f31f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f320", - "static_url": "https://poa.st/emoji/custom/1f320.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f320.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f321", - "static_url": "https://poa.st/emoji/custom/1f321.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f321.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f324", - "static_url": "https://poa.st/emoji/custom/1f324.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f324.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f325", - "static_url": "https://poa.st/emoji/custom/1f325.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f325.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f326", - "static_url": "https://poa.st/emoji/custom/1f326.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f326.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f327", - "static_url": "https://poa.st/emoji/custom/1f327.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f327.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f328", - "static_url": "https://poa.st/emoji/custom/1f328.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f328.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f329", - "static_url": "https://poa.st/emoji/custom/1f329.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f329.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f32a", - "static_url": "https://poa.st/emoji/custom/1f32a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f32a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f32b", - "static_url": "https://poa.st/emoji/custom/1f32b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f32b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f32c", - "static_url": "https://poa.st/emoji/custom/1f32c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f32c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f32d", - "static_url": "https://poa.st/emoji/custom/1f32d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f32d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f32e", - "static_url": "https://poa.st/emoji/custom/1f32e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f32e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f32f", - "static_url": "https://poa.st/emoji/custom/1f32f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f32f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f330", - "static_url": "https://poa.st/emoji/custom/1f330.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f330.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f331", - "static_url": "https://poa.st/emoji/custom/1f331.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f331.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f332", - "static_url": "https://poa.st/emoji/custom/1f332.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f332.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f333", - "static_url": "https://poa.st/emoji/custom/1f333.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f333.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f334", - "static_url": "https://poa.st/emoji/custom/1f334.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f334.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f335", - "static_url": "https://poa.st/emoji/custom/1f335.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f335.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f336", - "static_url": "https://poa.st/emoji/custom/1f336.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f336.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f337", - "static_url": "https://poa.st/emoji/custom/1f337.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f337.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f338", - "static_url": "https://poa.st/emoji/custom/1f338.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f338.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f339", - "static_url": "https://poa.st/emoji/custom/1f339.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f339.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f33a", - "static_url": "https://poa.st/emoji/custom/1f33a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f33a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f33b", - "static_url": "https://poa.st/emoji/custom/1f33b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f33b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f33c", - "static_url": "https://poa.st/emoji/custom/1f33c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f33c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f33d", - "static_url": "https://poa.st/emoji/custom/1f33d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f33d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f33e", - "static_url": "https://poa.st/emoji/custom/1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f33f", - "static_url": "https://poa.st/emoji/custom/1f33f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f33f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f340", - "static_url": "https://poa.st/emoji/custom/1f340.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f340.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f341", - "static_url": "https://poa.st/emoji/custom/1f341.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f341.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f342", - "static_url": "https://poa.st/emoji/custom/1f342.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f342.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f343", - "static_url": "https://poa.st/emoji/custom/1f343.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f343.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f344", - "static_url": "https://poa.st/emoji/custom/1f344.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f344.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f345", - "static_url": "https://poa.st/emoji/custom/1f345.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f345.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f346", - "static_url": "https://poa.st/emoji/custom/1f346.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f346.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f347", - "static_url": "https://poa.st/emoji/custom/1f347.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f347.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f348", - "static_url": "https://poa.st/emoji/custom/1f348.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f348.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f349", - "static_url": "https://poa.st/emoji/custom/1f349.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f349.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f34a", - "static_url": "https://poa.st/emoji/custom/1f34a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f34a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f34b", - "static_url": "https://poa.st/emoji/custom/1f34b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f34b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f34c", - "static_url": "https://poa.st/emoji/custom/1f34c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f34c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f34d", - "static_url": "https://poa.st/emoji/custom/1f34d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f34d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f34e", - "static_url": "https://poa.st/emoji/custom/1f34e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f34e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f34f", - "static_url": "https://poa.st/emoji/custom/1f34f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f34f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f350", - "static_url": "https://poa.st/emoji/custom/1f350.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f350.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f351", - "static_url": "https://poa.st/emoji/custom/1f351.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f351.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f352", - "static_url": "https://poa.st/emoji/custom/1f352.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f352.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f353", - "static_url": "https://poa.st/emoji/custom/1f353.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f353.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f354", - "static_url": "https://poa.st/emoji/custom/1f354.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f354.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f355", - "static_url": "https://poa.st/emoji/custom/1f355.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f355.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f356", - "static_url": "https://poa.st/emoji/custom/1f356.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f356.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f357", - "static_url": "https://poa.st/emoji/custom/1f357.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f357.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f358", - "static_url": "https://poa.st/emoji/custom/1f358.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f358.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f359", - "static_url": "https://poa.st/emoji/custom/1f359.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f359.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f35a", - "static_url": "https://poa.st/emoji/custom/1f35a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f35a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f35b", - "static_url": "https://poa.st/emoji/custom/1f35b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f35b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f35c", - "static_url": "https://poa.st/emoji/custom/1f35c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f35c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f35d", - "static_url": "https://poa.st/emoji/custom/1f35d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f35d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f35e", - "static_url": "https://poa.st/emoji/custom/1f35e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f35e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f35f", - "static_url": "https://poa.st/emoji/custom/1f35f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f35f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f360", - "static_url": "https://poa.st/emoji/custom/1f360.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f360.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f361", - "static_url": "https://poa.st/emoji/custom/1f361.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f361.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f362", - "static_url": "https://poa.st/emoji/custom/1f362.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f362.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f363", - "static_url": "https://poa.st/emoji/custom/1f363.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f363.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f364", - "static_url": "https://poa.st/emoji/custom/1f364.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f364.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f365", - "static_url": "https://poa.st/emoji/custom/1f365.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f365.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f366", - "static_url": "https://poa.st/emoji/custom/1f366.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f366.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f367", - "static_url": "https://poa.st/emoji/custom/1f367.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f367.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f368", - "static_url": "https://poa.st/emoji/custom/1f368.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f368.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f369", - "static_url": "https://poa.st/emoji/custom/1f369.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f369.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f36a", - "static_url": "https://poa.st/emoji/custom/1f36a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f36a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f36b", - "static_url": "https://poa.st/emoji/custom/1f36b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f36b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f36c", - "static_url": "https://poa.st/emoji/custom/1f36c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f36c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f36d", - "static_url": "https://poa.st/emoji/custom/1f36d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f36d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f36e", - "static_url": "https://poa.st/emoji/custom/1f36e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f36e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f36f", - "static_url": "https://poa.st/emoji/custom/1f36f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f36f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f370", - "static_url": "https://poa.st/emoji/custom/1f370.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f370.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f371", - "static_url": "https://poa.st/emoji/custom/1f371.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f371.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f372", - "static_url": "https://poa.st/emoji/custom/1f372.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f372.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f373", - "static_url": "https://poa.st/emoji/custom/1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f374", - "static_url": "https://poa.st/emoji/custom/1f374.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f374.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f375", - "static_url": "https://poa.st/emoji/custom/1f375.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f375.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f376", - "static_url": "https://poa.st/emoji/custom/1f376.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f376.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f377", - "static_url": "https://poa.st/emoji/custom/1f377.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f377.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f378", - "static_url": "https://poa.st/emoji/custom/1f378.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f378.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f379", - "static_url": "https://poa.st/emoji/custom/1f379.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f379.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f37a", - "static_url": "https://poa.st/emoji/custom/1f37a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f37a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f37b", - "static_url": "https://poa.st/emoji/custom/1f37b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f37b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f37c", - "static_url": "https://poa.st/emoji/custom/1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f37d", - "static_url": "https://poa.st/emoji/custom/1f37d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f37d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f37e", - "static_url": "https://poa.st/emoji/custom/1f37e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f37e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f37f", - "static_url": "https://poa.st/emoji/custom/1f37f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f37f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f380", - "static_url": "https://poa.st/emoji/custom/1f380.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f380.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f381", - "static_url": "https://poa.st/emoji/custom/1f381.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f381.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f382", - "static_url": "https://poa.st/emoji/custom/1f382.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f382.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f383", - "static_url": "https://poa.st/emoji/custom/1f383.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f383.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f384", - "static_url": "https://poa.st/emoji/custom/1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f385", - "static_url": "https://poa.st/emoji/custom/1f385.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f385.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f385-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f385-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f385-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f385-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f385-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f385-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f385-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f385-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f385-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f385-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f385-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f385-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f385-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f385-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f385-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f386", - "static_url": "https://poa.st/emoji/custom/1f386.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f386.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f387", - "static_url": "https://poa.st/emoji/custom/1f387.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f387.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f388", - "static_url": "https://poa.st/emoji/custom/1f388.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f388.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f389", - "static_url": "https://poa.st/emoji/custom/1f389.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f389.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f38a", - "static_url": "https://poa.st/emoji/custom/1f38a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f38a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f38b", - "static_url": "https://poa.st/emoji/custom/1f38b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f38b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f38c", - "static_url": "https://poa.st/emoji/custom/1f38c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f38c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f38d", - "static_url": "https://poa.st/emoji/custom/1f38d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f38d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f38e", - "static_url": "https://poa.st/emoji/custom/1f38e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f38e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f38f", - "static_url": "https://poa.st/emoji/custom/1f38f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f38f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f390", - "static_url": "https://poa.st/emoji/custom/1f390.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f390.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f391", - "static_url": "https://poa.st/emoji/custom/1f391.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f391.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f392", - "static_url": "https://poa.st/emoji/custom/1f392.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f392.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f393", - "static_url": "https://poa.st/emoji/custom/1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f396", - "static_url": "https://poa.st/emoji/custom/1f396.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f396.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f397", - "static_url": "https://poa.st/emoji/custom/1f397.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f397.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f399", - "static_url": "https://poa.st/emoji/custom/1f399.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f399.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f39a", - "static_url": "https://poa.st/emoji/custom/1f39a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f39a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f39b", - "static_url": "https://poa.st/emoji/custom/1f39b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f39b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f39e", - "static_url": "https://poa.st/emoji/custom/1f39e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f39e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f39f", - "static_url": "https://poa.st/emoji/custom/1f39f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f39f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a0", - "static_url": "https://poa.st/emoji/custom/1f3a0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a1", - "static_url": "https://poa.st/emoji/custom/1f3a1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a2", - "static_url": "https://poa.st/emoji/custom/1f3a2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a3", - "static_url": "https://poa.st/emoji/custom/1f3a3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a4", - "static_url": "https://poa.st/emoji/custom/1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a5", - "static_url": "https://poa.st/emoji/custom/1f3a5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a6", - "static_url": "https://poa.st/emoji/custom/1f3a6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a7", - "static_url": "https://poa.st/emoji/custom/1f3a7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a8", - "static_url": "https://poa.st/emoji/custom/1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3a9", - "static_url": "https://poa.st/emoji/custom/1f3a9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3a9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3aa", - "static_url": "https://poa.st/emoji/custom/1f3aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ab", - "static_url": "https://poa.st/emoji/custom/1f3ab.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ab.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ac", - "static_url": "https://poa.st/emoji/custom/1f3ac.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ac.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ad", - "static_url": "https://poa.st/emoji/custom/1f3ad.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ad.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ae", - "static_url": "https://poa.st/emoji/custom/1f3ae.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ae.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3af", - "static_url": "https://poa.st/emoji/custom/1f3af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b0", - "static_url": "https://poa.st/emoji/custom/1f3b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b1", - "static_url": "https://poa.st/emoji/custom/1f3b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b2", - "static_url": "https://poa.st/emoji/custom/1f3b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b3", - "static_url": "https://poa.st/emoji/custom/1f3b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b4", - "static_url": "https://poa.st/emoji/custom/1f3b4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b5", - "static_url": "https://poa.st/emoji/custom/1f3b5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b6", - "static_url": "https://poa.st/emoji/custom/1f3b6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b7", - "static_url": "https://poa.st/emoji/custom/1f3b7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b8", - "static_url": "https://poa.st/emoji/custom/1f3b8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3b9", - "static_url": "https://poa.st/emoji/custom/1f3b9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3b9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ba", - "static_url": "https://poa.st/emoji/custom/1f3ba.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ba.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3bb", - "static_url": "https://poa.st/emoji/custom/1f3bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3bc", - "static_url": "https://poa.st/emoji/custom/1f3bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3bd", - "static_url": "https://poa.st/emoji/custom/1f3bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3be", - "static_url": "https://poa.st/emoji/custom/1f3be.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3be.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3bf", - "static_url": "https://poa.st/emoji/custom/1f3bf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3bf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c0", - "static_url": "https://poa.st/emoji/custom/1f3c0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c1", - "static_url": "https://poa.st/emoji/custom/1f3c1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c2", - "static_url": "https://poa.st/emoji/custom/1f3c2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c2-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3c2-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c2-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c2-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3c2-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c2-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c2-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3c2-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c2-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c2-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3c2-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c2-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c2-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3c2-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c2-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3", - "static_url": "https://poa.st/emoji/custom/1f3c3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c3-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c3-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c3-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4", - "static_url": "https://poa.st/emoji/custom/1f3c4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c4-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3c4-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c4-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c5", - "static_url": "https://poa.st/emoji/custom/1f3c5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c6", - "static_url": "https://poa.st/emoji/custom/1f3c6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c7", - "static_url": "https://poa.st/emoji/custom/1f3c7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c7-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3c7-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c7-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c7-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3c7-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c7-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c7-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3c7-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c7-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c7-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3c7-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c7-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c7-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3c7-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c7-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c8", - "static_url": "https://poa.st/emoji/custom/1f3c8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3c9", - "static_url": "https://poa.st/emoji/custom/1f3c9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3c9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca", - "static_url": "https://poa.st/emoji/custom/1f3ca.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ca-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3ca-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ca-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb", - "static_url": "https://poa.st/emoji/custom/1f3cb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-fe0f-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-fe0f-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-fe0f-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cb-fe0f-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cb-fe0f-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cb-fe0f-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc", - "static_url": "https://poa.st/emoji/custom/1f3cc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-fe0f-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-fe0f-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-fe0f-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cc-fe0f-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3cc-fe0f-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cc-fe0f-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cd", - "static_url": "https://poa.st/emoji/custom/1f3cd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ce", - "static_url": "https://poa.st/emoji/custom/1f3ce.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ce.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3cf", - "static_url": "https://poa.st/emoji/custom/1f3cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d0", - "static_url": "https://poa.st/emoji/custom/1f3d0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d1", - "static_url": "https://poa.st/emoji/custom/1f3d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d2", - "static_url": "https://poa.st/emoji/custom/1f3d2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d3", - "static_url": "https://poa.st/emoji/custom/1f3d3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d4", - "static_url": "https://poa.st/emoji/custom/1f3d4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d5", - "static_url": "https://poa.st/emoji/custom/1f3d5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d6", - "static_url": "https://poa.st/emoji/custom/1f3d6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d7", - "static_url": "https://poa.st/emoji/custom/1f3d7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d8", - "static_url": "https://poa.st/emoji/custom/1f3d8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3d9", - "static_url": "https://poa.st/emoji/custom/1f3d9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3d9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3da", - "static_url": "https://poa.st/emoji/custom/1f3da.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3da.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3db", - "static_url": "https://poa.st/emoji/custom/1f3db.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3db.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3dc", - "static_url": "https://poa.st/emoji/custom/1f3dc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3dc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3dd", - "static_url": "https://poa.st/emoji/custom/1f3dd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3dd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3de", - "static_url": "https://poa.st/emoji/custom/1f3de.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3de.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3df", - "static_url": "https://poa.st/emoji/custom/1f3df.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3df.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e0", - "static_url": "https://poa.st/emoji/custom/1f3e0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e1", - "static_url": "https://poa.st/emoji/custom/1f3e1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e2", - "static_url": "https://poa.st/emoji/custom/1f3e2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e3", - "static_url": "https://poa.st/emoji/custom/1f3e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e4", - "static_url": "https://poa.st/emoji/custom/1f3e4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e5", - "static_url": "https://poa.st/emoji/custom/1f3e5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e6", - "static_url": "https://poa.st/emoji/custom/1f3e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e7", - "static_url": "https://poa.st/emoji/custom/1f3e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e8", - "static_url": "https://poa.st/emoji/custom/1f3e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3e9", - "static_url": "https://poa.st/emoji/custom/1f3e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ea", - "static_url": "https://poa.st/emoji/custom/1f3ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3eb", - "static_url": "https://poa.st/emoji/custom/1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ec", - "static_url": "https://poa.st/emoji/custom/1f3ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ed", - "static_url": "https://poa.st/emoji/custom/1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ee", - "static_url": "https://poa.st/emoji/custom/1f3ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ef", - "static_url": "https://poa.st/emoji/custom/1f3ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f0", - "static_url": "https://poa.st/emoji/custom/1f3f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f3", - "static_url": "https://poa.st/emoji/custom/1f3f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f3-fe0f-200d-1f308", - "static_url": "https://poa.st/emoji/custom/1f3f3-fe0f-200d-1f308.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f3-fe0f-200d-1f308.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f3-fe0f-200d-26a7-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3f3-fe0f-200d-26a7-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f3-fe0f-200d-26a7-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f4", - "static_url": "https://poa.st/emoji/custom/1f3f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f4-200d-2620-fe0f", - "static_url": "https://poa.st/emoji/custom/1f3f4-200d-2620-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f4-200d-2620-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f", - "static_url": "https://poa.st/emoji/custom/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f", - "static_url": "https://poa.st/emoji/custom/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f", - "static_url": "https://poa.st/emoji/custom/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f5", - "static_url": "https://poa.st/emoji/custom/1f3f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f7", - "static_url": "https://poa.st/emoji/custom/1f3f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f8", - "static_url": "https://poa.st/emoji/custom/1f3f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3f9", - "static_url": "https://poa.st/emoji/custom/1f3f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3fa", - "static_url": "https://poa.st/emoji/custom/1f3fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3fb", - "static_url": "https://poa.st/emoji/custom/1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3fc", - "static_url": "https://poa.st/emoji/custom/1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3fd", - "static_url": "https://poa.st/emoji/custom/1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3fe", - "static_url": "https://poa.st/emoji/custom/1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f3ff", - "static_url": "https://poa.st/emoji/custom/1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f400", - "static_url": "https://poa.st/emoji/custom/1f400.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f400.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f401", - "static_url": "https://poa.st/emoji/custom/1f401.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f401.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f402", - "static_url": "https://poa.st/emoji/custom/1f402.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f402.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f403", - "static_url": "https://poa.st/emoji/custom/1f403.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f403.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f404", - "static_url": "https://poa.st/emoji/custom/1f404.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f404.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f405", - "static_url": "https://poa.st/emoji/custom/1f405.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f405.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f406", - "static_url": "https://poa.st/emoji/custom/1f406.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f406.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f407", - "static_url": "https://poa.st/emoji/custom/1f407.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f407.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f408", - "static_url": "https://poa.st/emoji/custom/1f408.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f408.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f408-200d-2b1b", - "static_url": "https://poa.st/emoji/custom/1f408-200d-2b1b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f408-200d-2b1b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f409", - "static_url": "https://poa.st/emoji/custom/1f409.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f409.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f40a", - "static_url": "https://poa.st/emoji/custom/1f40a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f40a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f40b", - "static_url": "https://poa.st/emoji/custom/1f40b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f40b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f40c", - "static_url": "https://poa.st/emoji/custom/1f40c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f40c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f40d", - "static_url": "https://poa.st/emoji/custom/1f40d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f40d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f40e", - "static_url": "https://poa.st/emoji/custom/1f40e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f40e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f40f", - "static_url": "https://poa.st/emoji/custom/1f40f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f40f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f410", - "static_url": "https://poa.st/emoji/custom/1f410.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f410.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f411", - "static_url": "https://poa.st/emoji/custom/1f411.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f411.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f412", - "static_url": "https://poa.st/emoji/custom/1f412.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f412.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f413", - "static_url": "https://poa.st/emoji/custom/1f413.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f413.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f414", - "static_url": "https://poa.st/emoji/custom/1f414.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f414.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f415", - "static_url": "https://poa.st/emoji/custom/1f415.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f415.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f415-200d-1f9ba", - "static_url": "https://poa.st/emoji/custom/1f415-200d-1f9ba.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f415-200d-1f9ba.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f416", - "static_url": "https://poa.st/emoji/custom/1f416.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f416.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f417", - "static_url": "https://poa.st/emoji/custom/1f417.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f417.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f418", - "static_url": "https://poa.st/emoji/custom/1f418.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f418.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f419", - "static_url": "https://poa.st/emoji/custom/1f419.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f419.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f41a", - "static_url": "https://poa.st/emoji/custom/1f41a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f41a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f41b", - "static_url": "https://poa.st/emoji/custom/1f41b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f41b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f41c", - "static_url": "https://poa.st/emoji/custom/1f41c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f41c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f41d", - "static_url": "https://poa.st/emoji/custom/1f41d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f41d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f41e", - "static_url": "https://poa.st/emoji/custom/1f41e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f41e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f41f", - "static_url": "https://poa.st/emoji/custom/1f41f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f41f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f420", - "static_url": "https://poa.st/emoji/custom/1f420.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f420.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f421", - "static_url": "https://poa.st/emoji/custom/1f421.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f421.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f422", - "static_url": "https://poa.st/emoji/custom/1f422.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f422.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f423", - "static_url": "https://poa.st/emoji/custom/1f423.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f423.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f424", - "static_url": "https://poa.st/emoji/custom/1f424.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f424.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f425", - "static_url": "https://poa.st/emoji/custom/1f425.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f425.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f426", - "static_url": "https://poa.st/emoji/custom/1f426.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f426.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f427", - "static_url": "https://poa.st/emoji/custom/1f427.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f427.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f428", - "static_url": "https://poa.st/emoji/custom/1f428.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f428.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f429", - "static_url": "https://poa.st/emoji/custom/1f429.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f429.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f42a", - "static_url": "https://poa.st/emoji/custom/1f42a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f42a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f42b", - "static_url": "https://poa.st/emoji/custom/1f42b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f42b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f42c", - "static_url": "https://poa.st/emoji/custom/1f42c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f42c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f42d", - "static_url": "https://poa.st/emoji/custom/1f42d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f42d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f42e", - "static_url": "https://poa.st/emoji/custom/1f42e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f42e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f42f", - "static_url": "https://poa.st/emoji/custom/1f42f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f42f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f430", - "static_url": "https://poa.st/emoji/custom/1f430.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f430.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f431", - "static_url": "https://poa.st/emoji/custom/1f431.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f431.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f432", - "static_url": "https://poa.st/emoji/custom/1f432.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f432.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f433", - "static_url": "https://poa.st/emoji/custom/1f433.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f433.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f434", - "static_url": "https://poa.st/emoji/custom/1f434.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f434.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f435", - "static_url": "https://poa.st/emoji/custom/1f435.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f435.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f436", - "static_url": "https://poa.st/emoji/custom/1f436.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f436.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f437", - "static_url": "https://poa.st/emoji/custom/1f437.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f437.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f438", - "static_url": "https://poa.st/emoji/custom/1f438.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f438.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f439", - "static_url": "https://poa.st/emoji/custom/1f439.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f439.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43a", - "static_url": "https://poa.st/emoji/custom/1f43a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43b", - "static_url": "https://poa.st/emoji/custom/1f43b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43b-200d-2744-fe0f", - "static_url": "https://poa.st/emoji/custom/1f43b-200d-2744-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43b-200d-2744-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43c", - "static_url": "https://poa.st/emoji/custom/1f43c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43d", - "static_url": "https://poa.st/emoji/custom/1f43d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43e", - "static_url": "https://poa.st/emoji/custom/1f43e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f43f", - "static_url": "https://poa.st/emoji/custom/1f43f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f43f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f440", - "static_url": "https://poa.st/emoji/custom/1f440.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f440.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f441", - "static_url": "https://poa.st/emoji/custom/1f441.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f441.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f441-200d-1f5e8", - "static_url": "https://poa.st/emoji/custom/1f441-200d-1f5e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f441-200d-1f5e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f442", - "static_url": "https://poa.st/emoji/custom/1f442.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f442.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f442-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f442-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f442-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f442-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f442-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f442-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f442-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f442-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f442-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f442-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f442-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f442-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f442-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f442-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f442-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f443", - "static_url": "https://poa.st/emoji/custom/1f443.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f443.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f443-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f443-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f443-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f443-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f443-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f443-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f443-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f443-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f443-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f443-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f443-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f443-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f443-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f443-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f443-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f444", - "static_url": "https://poa.st/emoji/custom/1f444.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f444.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f445", - "static_url": "https://poa.st/emoji/custom/1f445.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f445.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f446", - "static_url": "https://poa.st/emoji/custom/1f446.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f446.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f446-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f446-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f446-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f446-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f446-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f446-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f446-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f446-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f446-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f446-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f446-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f446-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f446-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f446-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f446-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f447", - "static_url": "https://poa.st/emoji/custom/1f447.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f447.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f447-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f447-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f447-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f447-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f447-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f447-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f447-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f447-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f447-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f447-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f447-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f447-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f447-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f447-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f447-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f448", - "static_url": "https://poa.st/emoji/custom/1f448.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f448.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f448-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f448-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f448-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f448-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f448-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f448-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f448-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f448-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f448-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f448-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f448-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f448-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f448-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f448-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f448-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f449", - "static_url": "https://poa.st/emoji/custom/1f449.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f449.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f449-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f449-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f449-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f449-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f449-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f449-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f449-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f449-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f449-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f449-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f449-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f449-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f449-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f449-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f449-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44a", - "static_url": "https://poa.st/emoji/custom/1f44a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44a-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f44a-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44a-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44a-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f44a-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44a-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44a-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f44a-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44a-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44a-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f44a-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44a-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44a-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f44a-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44a-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44b", - "static_url": "https://poa.st/emoji/custom/1f44b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44b-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f44b-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44b-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44b-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f44b-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44b-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44b-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f44b-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44b-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44b-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f44b-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44b-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44b-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f44b-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44b-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44c", - "static_url": "https://poa.st/emoji/custom/1f44c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44c-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f44c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44c-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f44c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44c-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f44c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44c-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f44c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44c-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f44c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44d", - "static_url": "https://poa.st/emoji/custom/1f44d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44d-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f44d-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44d-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44d-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f44d-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44d-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44d-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f44d-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44d-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44d-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f44d-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44d-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44d-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f44d-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44d-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44e", - "static_url": "https://poa.st/emoji/custom/1f44e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44e-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f44e-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44e-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44e-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f44e-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44e-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44e-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f44e-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44e-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44e-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f44e-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44e-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44e-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f44e-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44e-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44f", - "static_url": "https://poa.st/emoji/custom/1f44f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44f-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f44f-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44f-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44f-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f44f-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44f-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44f-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f44f-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44f-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44f-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f44f-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44f-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f44f-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f44f-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f44f-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f450", - "static_url": "https://poa.st/emoji/custom/1f450.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f450.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f450-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f450-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f450-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f450-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f450-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f450-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f450-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f450-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f450-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f450-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f450-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f450-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f450-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f450-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f450-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f451", - "static_url": "https://poa.st/emoji/custom/1f451.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f451.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f452", - "static_url": "https://poa.st/emoji/custom/1f452.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f452.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f453", - "static_url": "https://poa.st/emoji/custom/1f453.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f453.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f454", - "static_url": "https://poa.st/emoji/custom/1f454.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f454.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f455", - "static_url": "https://poa.st/emoji/custom/1f455.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f455.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f456", - "static_url": "https://poa.st/emoji/custom/1f456.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f456.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f457", - "static_url": "https://poa.st/emoji/custom/1f457.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f457.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f458", - "static_url": "https://poa.st/emoji/custom/1f458.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f458.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f459", - "static_url": "https://poa.st/emoji/custom/1f459.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f459.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f45a", - "static_url": "https://poa.st/emoji/custom/1f45a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f45a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f45b", - "static_url": "https://poa.st/emoji/custom/1f45b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f45b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f45c", - "static_url": "https://poa.st/emoji/custom/1f45c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f45c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f45d", - "static_url": "https://poa.st/emoji/custom/1f45d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f45d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f45e", - "static_url": "https://poa.st/emoji/custom/1f45e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f45e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f45f", - "static_url": "https://poa.st/emoji/custom/1f45f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f45f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f460", - "static_url": "https://poa.st/emoji/custom/1f460.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f460.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f461", - "static_url": "https://poa.st/emoji/custom/1f461.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f461.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f462", - "static_url": "https://poa.st/emoji/custom/1f462.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f462.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f463", - "static_url": "https://poa.st/emoji/custom/1f463.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f463.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f464", - "static_url": "https://poa.st/emoji/custom/1f464.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f464.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f465", - "static_url": "https://poa.st/emoji/custom/1f465.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f465.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f466", - "static_url": "https://poa.st/emoji/custom/1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f466-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f466-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f466-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f466-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f466-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f466-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f466-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f466-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f466-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f466-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f466-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f466-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f466-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f466-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f466-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f467", - "static_url": "https://poa.st/emoji/custom/1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f467-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f467-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f467-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f467-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f467-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f467-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f467-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f467-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f467-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f467-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f467-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f467-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f467-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f467-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f467-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468", - "static_url": "https://poa.st/emoji/custom/1f468.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fb-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fb-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fc-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fc-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fd-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fd-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3fe-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3fe-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-1f3ff-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-1f3ff-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f466-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f466-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f466-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f467-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f467-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f467-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f467-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f467-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f467-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f468-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f468-200d-1f466-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f466-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f466-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f468-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f468-200d-1f467-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f467-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f467-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f468-200d-1f467-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f467-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f468-200d-1f467-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f469-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f469-200d-1f466-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f466-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f466-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f469-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f469-200d-1f467-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f467-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f467-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f469-200d-1f467-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f467-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f469-200d-1f467-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f468-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f468-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-2764-fe0f-200d-1f468", - "static_url": "https://poa.st/emoji/custom/1f468-200d-2764-fe0f-200d-1f468.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-2764-fe0f-200d-1f468.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468", - "static_url": "https://poa.st/emoji/custom/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469", - "static_url": "https://poa.st/emoji/custom/1f469.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f91d-200d-1f469-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fb-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fb-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f91d-200d-1f469-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fc-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fc-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f91d-200d-1f469-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fd-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fd-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f91d-200d-1f469-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3fe-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3fe-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-1f3ff-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-1f3ff-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f466-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f466-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f466-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f467-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f467-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f467-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f467-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f467-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f467-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f469-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f469-200d-1f466-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f466-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f466-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f469-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f469-200d-1f467-200d-1f466", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f467-200d-1f466.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f467-200d-1f466.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f469-200d-1f467-200d-1f467", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f467-200d-1f467.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f469-200d-1f467-200d-1f467.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f469-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2764-fe0f-200d-1f468", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f468.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f468.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2764-fe0f-200d-1f469", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f469.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f469.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469", - "static_url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46a", - "static_url": "https://poa.st/emoji/custom/1f46a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46b", - "static_url": "https://poa.st/emoji/custom/1f46b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46b-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f46b-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46b-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46b-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f46b-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46b-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46b-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f46b-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46b-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46b-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f46b-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46b-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46b-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f46b-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46b-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46c", - "static_url": "https://poa.st/emoji/custom/1f46c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46c-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f46c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46c-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f46c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46c-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f46c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46c-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f46c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46c-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f46c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46d", - "static_url": "https://poa.st/emoji/custom/1f46d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46d-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f46d-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46d-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46d-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f46d-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46d-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46d-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f46d-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46d-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46d-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f46d-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46d-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46d-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f46d-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46d-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e", - "static_url": "https://poa.st/emoji/custom/1f46e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46e-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46e-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46e-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46f", - "static_url": "https://poa.st/emoji/custom/1f46f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46f-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46f-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46f-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f46f-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f46f-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f46f-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470", - "static_url": "https://poa.st/emoji/custom/1f470.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f470-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f470-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f470-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f470-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471", - "static_url": "https://poa.st/emoji/custom/1f471.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f471-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f471-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f471-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f471-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f472", - "static_url": "https://poa.st/emoji/custom/1f472.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f472.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f472-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f472-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f472-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f472-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f472-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f472-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f472-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f472-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f472-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f472-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f472-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f472-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f472-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f472-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f472-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473", - "static_url": "https://poa.st/emoji/custom/1f473.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f473-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f473-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f473-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f473-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f474", - "static_url": "https://poa.st/emoji/custom/1f474.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f474.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f474-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f474-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f474-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f474-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f474-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f474-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f474-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f474-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f474-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f474-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f474-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f474-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f474-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f474-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f474-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f475", - "static_url": "https://poa.st/emoji/custom/1f475.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f475.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f475-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f475-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f475-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f475-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f475-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f475-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f475-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f475-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f475-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f475-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f475-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f475-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f475-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f475-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f475-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f476", - "static_url": "https://poa.st/emoji/custom/1f476.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f476.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f476-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f476-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f476-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f476-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f476-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f476-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f476-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f476-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f476-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f476-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f476-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f476-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f476-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f476-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f476-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477", - "static_url": "https://poa.st/emoji/custom/1f477.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f477-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f477-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f477-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f477-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f478", - "static_url": "https://poa.st/emoji/custom/1f478.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f478.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f478-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f478-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f478-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f478-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f478-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f478-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f478-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f478-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f478-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f478-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f478-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f478-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f478-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f478-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f478-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f479", - "static_url": "https://poa.st/emoji/custom/1f479.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f479.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47a", - "static_url": "https://poa.st/emoji/custom/1f47a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47b", - "static_url": "https://poa.st/emoji/custom/1f47b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47c", - "static_url": "https://poa.st/emoji/custom/1f47c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47c-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f47c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47c-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f47c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47c-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f47c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47c-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f47c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47c-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f47c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47d", - "static_url": "https://poa.st/emoji/custom/1f47d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47e", - "static_url": "https://poa.st/emoji/custom/1f47e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f47f", - "static_url": "https://poa.st/emoji/custom/1f47f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f47f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f480", - "static_url": "https://poa.st/emoji/custom/1f480.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f480.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481", - "static_url": "https://poa.st/emoji/custom/1f481.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f481-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f481-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f481-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f481-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482", - "static_url": "https://poa.st/emoji/custom/1f482.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f482-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f482-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f482-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f482-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f483", - "static_url": "https://poa.st/emoji/custom/1f483.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f483.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f483-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f483-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f483-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f483-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f483-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f483-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f483-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f483-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f483-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f483-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f483-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f483-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f483-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f483-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f483-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f484", - "static_url": "https://poa.st/emoji/custom/1f484.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f484.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f485", - "static_url": "https://poa.st/emoji/custom/1f485.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f485.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f485-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f485-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f485-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f485-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f485-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f485-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f485-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f485-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f485-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f485-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f485-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f485-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f485-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f485-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f485-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486", - "static_url": "https://poa.st/emoji/custom/1f486.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f486-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f486-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f486-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f486-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487", - "static_url": "https://poa.st/emoji/custom/1f487.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f487-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f487-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f487-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f487-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f488", - "static_url": "https://poa.st/emoji/custom/1f488.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f488.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f489", - "static_url": "https://poa.st/emoji/custom/1f489.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f489.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f48a", - "static_url": "https://poa.st/emoji/custom/1f48a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f48a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f48b", - "static_url": "https://poa.st/emoji/custom/1f48b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f48b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f48c", - "static_url": "https://poa.st/emoji/custom/1f48c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f48c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f48d", - "static_url": "https://poa.st/emoji/custom/1f48d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f48d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f48e", - "static_url": "https://poa.st/emoji/custom/1f48e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f48e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f48f", - "static_url": "https://poa.st/emoji/custom/1f48f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f48f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f490", - "static_url": "https://poa.st/emoji/custom/1f490.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f490.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f491", - "static_url": "https://poa.st/emoji/custom/1f491.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f491.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f492", - "static_url": "https://poa.st/emoji/custom/1f492.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f492.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f493", - "static_url": "https://poa.st/emoji/custom/1f493.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f493.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f494", - "static_url": "https://poa.st/emoji/custom/1f494.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f494.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f495", - "static_url": "https://poa.st/emoji/custom/1f495.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f495.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f496", - "static_url": "https://poa.st/emoji/custom/1f496.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f496.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f497", - "static_url": "https://poa.st/emoji/custom/1f497.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f497.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f498", - "static_url": "https://poa.st/emoji/custom/1f498.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f498.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f499", - "static_url": "https://poa.st/emoji/custom/1f499.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f499.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f49a", - "static_url": "https://poa.st/emoji/custom/1f49a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f49a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f49b", - "static_url": "https://poa.st/emoji/custom/1f49b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f49b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f49c", - "static_url": "https://poa.st/emoji/custom/1f49c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f49c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f49d", - "static_url": "https://poa.st/emoji/custom/1f49d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f49d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f49e", - "static_url": "https://poa.st/emoji/custom/1f49e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f49e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f49f", - "static_url": "https://poa.st/emoji/custom/1f49f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f49f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a0", - "static_url": "https://poa.st/emoji/custom/1f4a0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a1", - "static_url": "https://poa.st/emoji/custom/1f4a1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a2", - "static_url": "https://poa.st/emoji/custom/1f4a2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a3", - "static_url": "https://poa.st/emoji/custom/1f4a3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a4", - "static_url": "https://poa.st/emoji/custom/1f4a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a5", - "static_url": "https://poa.st/emoji/custom/1f4a5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a6", - "static_url": "https://poa.st/emoji/custom/1f4a6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a7", - "static_url": "https://poa.st/emoji/custom/1f4a7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a8", - "static_url": "https://poa.st/emoji/custom/1f4a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4a9", - "static_url": "https://poa.st/emoji/custom/1f4a9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4a9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4aa", - "static_url": "https://poa.st/emoji/custom/1f4aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4aa-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f4aa-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4aa-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4aa-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f4aa-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4aa-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4aa-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f4aa-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4aa-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4aa-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f4aa-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4aa-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4aa-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f4aa-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4aa-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ab", - "static_url": "https://poa.st/emoji/custom/1f4ab.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ab.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ac", - "static_url": "https://poa.st/emoji/custom/1f4ac.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ac.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ad", - "static_url": "https://poa.st/emoji/custom/1f4ad.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ad.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ae", - "static_url": "https://poa.st/emoji/custom/1f4ae.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ae.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4af", - "static_url": "https://poa.st/emoji/custom/1f4af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b0", - "static_url": "https://poa.st/emoji/custom/1f4b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b1", - "static_url": "https://poa.st/emoji/custom/1f4b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b2", - "static_url": "https://poa.st/emoji/custom/1f4b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b3", - "static_url": "https://poa.st/emoji/custom/1f4b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b4", - "static_url": "https://poa.st/emoji/custom/1f4b4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b5", - "static_url": "https://poa.st/emoji/custom/1f4b5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b6", - "static_url": "https://poa.st/emoji/custom/1f4b6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b7", - "static_url": "https://poa.st/emoji/custom/1f4b7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b8", - "static_url": "https://poa.st/emoji/custom/1f4b8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4b9", - "static_url": "https://poa.st/emoji/custom/1f4b9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4b9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ba", - "static_url": "https://poa.st/emoji/custom/1f4ba.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ba.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4bb", - "static_url": "https://poa.st/emoji/custom/1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4bc", - "static_url": "https://poa.st/emoji/custom/1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4bd", - "static_url": "https://poa.st/emoji/custom/1f4bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4be", - "static_url": "https://poa.st/emoji/custom/1f4be.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4be.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4bf", - "static_url": "https://poa.st/emoji/custom/1f4bf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4bf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c0", - "static_url": "https://poa.st/emoji/custom/1f4c0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c1", - "static_url": "https://poa.st/emoji/custom/1f4c1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c2", - "static_url": "https://poa.st/emoji/custom/1f4c2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c3", - "static_url": "https://poa.st/emoji/custom/1f4c3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c4", - "static_url": "https://poa.st/emoji/custom/1f4c4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c5", - "static_url": "https://poa.st/emoji/custom/1f4c5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c6", - "static_url": "https://poa.st/emoji/custom/1f4c6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c7", - "static_url": "https://poa.st/emoji/custom/1f4c7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c8", - "static_url": "https://poa.st/emoji/custom/1f4c8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4c9", - "static_url": "https://poa.st/emoji/custom/1f4c9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4c9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ca", - "static_url": "https://poa.st/emoji/custom/1f4ca.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ca.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4cb", - "static_url": "https://poa.st/emoji/custom/1f4cb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4cb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4cc", - "static_url": "https://poa.st/emoji/custom/1f4cc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4cc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4cd", - "static_url": "https://poa.st/emoji/custom/1f4cd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4cd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ce", - "static_url": "https://poa.st/emoji/custom/1f4ce.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ce.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4cf", - "static_url": "https://poa.st/emoji/custom/1f4cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d0", - "static_url": "https://poa.st/emoji/custom/1f4d0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d1", - "static_url": "https://poa.st/emoji/custom/1f4d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d2", - "static_url": "https://poa.st/emoji/custom/1f4d2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d3", - "static_url": "https://poa.st/emoji/custom/1f4d3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d4", - "static_url": "https://poa.st/emoji/custom/1f4d4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d5", - "static_url": "https://poa.st/emoji/custom/1f4d5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d6", - "static_url": "https://poa.st/emoji/custom/1f4d6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d7", - "static_url": "https://poa.st/emoji/custom/1f4d7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d8", - "static_url": "https://poa.st/emoji/custom/1f4d8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4d9", - "static_url": "https://poa.st/emoji/custom/1f4d9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4d9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4da", - "static_url": "https://poa.st/emoji/custom/1f4da.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4da.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4db", - "static_url": "https://poa.st/emoji/custom/1f4db.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4db.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4dc", - "static_url": "https://poa.st/emoji/custom/1f4dc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4dc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4dd", - "static_url": "https://poa.st/emoji/custom/1f4dd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4dd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4de", - "static_url": "https://poa.st/emoji/custom/1f4de.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4de.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4df", - "static_url": "https://poa.st/emoji/custom/1f4df.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4df.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e0", - "static_url": "https://poa.st/emoji/custom/1f4e0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e1", - "static_url": "https://poa.st/emoji/custom/1f4e1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e2", - "static_url": "https://poa.st/emoji/custom/1f4e2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e3", - "static_url": "https://poa.st/emoji/custom/1f4e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e4", - "static_url": "https://poa.st/emoji/custom/1f4e4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e5", - "static_url": "https://poa.st/emoji/custom/1f4e5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e6", - "static_url": "https://poa.st/emoji/custom/1f4e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e7", - "static_url": "https://poa.st/emoji/custom/1f4e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e8", - "static_url": "https://poa.st/emoji/custom/1f4e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4e9", - "static_url": "https://poa.st/emoji/custom/1f4e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ea", - "static_url": "https://poa.st/emoji/custom/1f4ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4eb", - "static_url": "https://poa.st/emoji/custom/1f4eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ec", - "static_url": "https://poa.st/emoji/custom/1f4ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ed", - "static_url": "https://poa.st/emoji/custom/1f4ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ee", - "static_url": "https://poa.st/emoji/custom/1f4ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ef", - "static_url": "https://poa.st/emoji/custom/1f4ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f0", - "static_url": "https://poa.st/emoji/custom/1f4f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f1", - "static_url": "https://poa.st/emoji/custom/1f4f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f2", - "static_url": "https://poa.st/emoji/custom/1f4f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f3", - "static_url": "https://poa.st/emoji/custom/1f4f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f4", - "static_url": "https://poa.st/emoji/custom/1f4f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f5", - "static_url": "https://poa.st/emoji/custom/1f4f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f6", - "static_url": "https://poa.st/emoji/custom/1f4f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f7", - "static_url": "https://poa.st/emoji/custom/1f4f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f8", - "static_url": "https://poa.st/emoji/custom/1f4f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4f9", - "static_url": "https://poa.st/emoji/custom/1f4f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4fa", - "static_url": "https://poa.st/emoji/custom/1f4fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4fb", - "static_url": "https://poa.st/emoji/custom/1f4fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4fc", - "static_url": "https://poa.st/emoji/custom/1f4fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4fd", - "static_url": "https://poa.st/emoji/custom/1f4fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f4ff", - "static_url": "https://poa.st/emoji/custom/1f4ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f4ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f500", - "static_url": "https://poa.st/emoji/custom/1f500.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f500.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f501", - "static_url": "https://poa.st/emoji/custom/1f501.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f501.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f502", - "static_url": "https://poa.st/emoji/custom/1f502.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f502.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f503", - "static_url": "https://poa.st/emoji/custom/1f503.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f503.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f504", - "static_url": "https://poa.st/emoji/custom/1f504.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f504.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f505", - "static_url": "https://poa.st/emoji/custom/1f505.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f505.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f506", - "static_url": "https://poa.st/emoji/custom/1f506.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f506.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f507", - "static_url": "https://poa.st/emoji/custom/1f507.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f507.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f508", - "static_url": "https://poa.st/emoji/custom/1f508.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f508.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f509", - "static_url": "https://poa.st/emoji/custom/1f509.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f509.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f50a", - "static_url": "https://poa.st/emoji/custom/1f50a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f50a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f50b", - "static_url": "https://poa.st/emoji/custom/1f50b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f50b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f50c", - "static_url": "https://poa.st/emoji/custom/1f50c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f50c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f50d", - "static_url": "https://poa.st/emoji/custom/1f50d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f50d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f50e", - "static_url": "https://poa.st/emoji/custom/1f50e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f50e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f50f", - "static_url": "https://poa.st/emoji/custom/1f50f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f50f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f510", - "static_url": "https://poa.st/emoji/custom/1f510.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f510.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f511", - "static_url": "https://poa.st/emoji/custom/1f511.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f511.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f512", - "static_url": "https://poa.st/emoji/custom/1f512.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f512.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f513", - "static_url": "https://poa.st/emoji/custom/1f513.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f513.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f514", - "static_url": "https://poa.st/emoji/custom/1f514.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f514.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f515", - "static_url": "https://poa.st/emoji/custom/1f515.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f515.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f516", - "static_url": "https://poa.st/emoji/custom/1f516.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f516.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f517", - "static_url": "https://poa.st/emoji/custom/1f517.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f517.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f518", - "static_url": "https://poa.st/emoji/custom/1f518.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f518.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f519", - "static_url": "https://poa.st/emoji/custom/1f519.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f519.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f51a", - "static_url": "https://poa.st/emoji/custom/1f51a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f51a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f51b", - "static_url": "https://poa.st/emoji/custom/1f51b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f51b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f51c", - "static_url": "https://poa.st/emoji/custom/1f51c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f51c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f51d", - "static_url": "https://poa.st/emoji/custom/1f51d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f51d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f51e", - "static_url": "https://poa.st/emoji/custom/1f51e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f51e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f51f", - "static_url": "https://poa.st/emoji/custom/1f51f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f51f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f520", - "static_url": "https://poa.st/emoji/custom/1f520.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f520.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f521", - "static_url": "https://poa.st/emoji/custom/1f521.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f521.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f522", - "static_url": "https://poa.st/emoji/custom/1f522.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f522.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f523", - "static_url": "https://poa.st/emoji/custom/1f523.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f523.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f524", - "static_url": "https://poa.st/emoji/custom/1f524.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f524.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f525", - "static_url": "https://poa.st/emoji/custom/1f525.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f525.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f526", - "static_url": "https://poa.st/emoji/custom/1f526.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f526.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f527", - "static_url": "https://poa.st/emoji/custom/1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f528", - "static_url": "https://poa.st/emoji/custom/1f528.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f528.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f529", - "static_url": "https://poa.st/emoji/custom/1f529.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f529.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f52a", - "static_url": "https://poa.st/emoji/custom/1f52a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f52a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f52b", - "static_url": "https://poa.st/emoji/custom/1f52b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f52b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f52c", - "static_url": "https://poa.st/emoji/custom/1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f52d", - "static_url": "https://poa.st/emoji/custom/1f52d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f52d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f52e", - "static_url": "https://poa.st/emoji/custom/1f52e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f52e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f52f", - "static_url": "https://poa.st/emoji/custom/1f52f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f52f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f530", - "static_url": "https://poa.st/emoji/custom/1f530.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f530.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f531", - "static_url": "https://poa.st/emoji/custom/1f531.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f531.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f532", - "static_url": "https://poa.st/emoji/custom/1f532.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f532.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f533", - "static_url": "https://poa.st/emoji/custom/1f533.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f533.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f534", - "static_url": "https://poa.st/emoji/custom/1f534.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f534.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f535", - "static_url": "https://poa.st/emoji/custom/1f535.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f535.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f536", - "static_url": "https://poa.st/emoji/custom/1f536.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f536.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f537", - "static_url": "https://poa.st/emoji/custom/1f537.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f537.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f538", - "static_url": "https://poa.st/emoji/custom/1f538.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f538.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f539", - "static_url": "https://poa.st/emoji/custom/1f539.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f539.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f53a", - "static_url": "https://poa.st/emoji/custom/1f53a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f53a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f53b", - "static_url": "https://poa.st/emoji/custom/1f53b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f53b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f53c", - "static_url": "https://poa.st/emoji/custom/1f53c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f53c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f53d", - "static_url": "https://poa.st/emoji/custom/1f53d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f53d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f549", - "static_url": "https://poa.st/emoji/custom/1f549.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f549.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f54a", - "static_url": "https://poa.st/emoji/custom/1f54a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f54a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f54b", - "static_url": "https://poa.st/emoji/custom/1f54b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f54b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f54c", - "static_url": "https://poa.st/emoji/custom/1f54c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f54c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f54d", - "static_url": "https://poa.st/emoji/custom/1f54d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f54d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f54e", - "static_url": "https://poa.st/emoji/custom/1f54e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f54e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f550", - "static_url": "https://poa.st/emoji/custom/1f550.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f550.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f551", - "static_url": "https://poa.st/emoji/custom/1f551.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f551.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f552", - "static_url": "https://poa.st/emoji/custom/1f552.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f552.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f553", - "static_url": "https://poa.st/emoji/custom/1f553.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f553.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f554", - "static_url": "https://poa.st/emoji/custom/1f554.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f554.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f555", - "static_url": "https://poa.st/emoji/custom/1f555.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f555.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f556", - "static_url": "https://poa.st/emoji/custom/1f556.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f556.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f557", - "static_url": "https://poa.st/emoji/custom/1f557.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f557.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f558", - "static_url": "https://poa.st/emoji/custom/1f558.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f558.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f559", - "static_url": "https://poa.st/emoji/custom/1f559.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f559.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f55a", - "static_url": "https://poa.st/emoji/custom/1f55a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f55a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f55b", - "static_url": "https://poa.st/emoji/custom/1f55b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f55b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f55c", - "static_url": "https://poa.st/emoji/custom/1f55c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f55c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f55d", - "static_url": "https://poa.st/emoji/custom/1f55d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f55d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f55e", - "static_url": "https://poa.st/emoji/custom/1f55e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f55e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f55f", - "static_url": "https://poa.st/emoji/custom/1f55f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f55f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f560", - "static_url": "https://poa.st/emoji/custom/1f560.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f560.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f561", - "static_url": "https://poa.st/emoji/custom/1f561.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f561.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f562", - "static_url": "https://poa.st/emoji/custom/1f562.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f562.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f563", - "static_url": "https://poa.st/emoji/custom/1f563.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f563.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f564", - "static_url": "https://poa.st/emoji/custom/1f564.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f564.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f565", - "static_url": "https://poa.st/emoji/custom/1f565.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f565.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f566", - "static_url": "https://poa.st/emoji/custom/1f566.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f566.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f567", - "static_url": "https://poa.st/emoji/custom/1f567.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f567.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f56f", - "static_url": "https://poa.st/emoji/custom/1f56f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f56f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f570", - "static_url": "https://poa.st/emoji/custom/1f570.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f570.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f573", - "static_url": "https://poa.st/emoji/custom/1f573.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f573.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574", - "static_url": "https://poa.st/emoji/custom/1f574.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f574-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-fe0f-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-fe0f-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-fe0f-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f574-fe0f-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f574-fe0f-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f574-fe0f-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575", - "static_url": "https://poa.st/emoji/custom/1f575.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f575-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-fe0f-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-fe0f-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-fe0f-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f575-fe0f-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f575-fe0f-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f575-fe0f-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f576", - "static_url": "https://poa.st/emoji/custom/1f576.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f576.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f577", - "static_url": "https://poa.st/emoji/custom/1f577.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f577.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f578", - "static_url": "https://poa.st/emoji/custom/1f578.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f578.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f579", - "static_url": "https://poa.st/emoji/custom/1f579.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f579.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f57a", - "static_url": "https://poa.st/emoji/custom/1f57a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f57a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f57a-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f57a-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f57a-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f57a-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f57a-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f57a-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f57a-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f57a-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f57a-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f57a-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f57a-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f57a-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f57a-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f57a-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f57a-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f587", - "static_url": "https://poa.st/emoji/custom/1f587.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f587.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f58a", - "static_url": "https://poa.st/emoji/custom/1f58a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f58a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f58b", - "static_url": "https://poa.st/emoji/custom/1f58b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f58b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f58c", - "static_url": "https://poa.st/emoji/custom/1f58c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f58c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f58d", - "static_url": "https://poa.st/emoji/custom/1f58d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f58d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f590", - "static_url": "https://poa.st/emoji/custom/1f590.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f590.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f590-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f590-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f590-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f590-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f590-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f590-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f590-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f590-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f590-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f590-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f590-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f590-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f590-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f590-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f590-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f595", - "static_url": "https://poa.st/emoji/custom/1f595.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f595.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f595-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f595-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f595-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f595-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f595-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f595-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f595-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f595-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f595-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f595-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f595-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f595-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f595-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f595-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f595-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f596", - "static_url": "https://poa.st/emoji/custom/1f596.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f596.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f596-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f596-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f596-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f596-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f596-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f596-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f596-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f596-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f596-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f596-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f596-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f596-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f596-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f596-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f596-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5a4", - "static_url": "https://poa.st/emoji/custom/1f5a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5a5", - "static_url": "https://poa.st/emoji/custom/1f5a5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5a5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5a8", - "static_url": "https://poa.st/emoji/custom/1f5a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5b1", - "static_url": "https://poa.st/emoji/custom/1f5b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5b2", - "static_url": "https://poa.st/emoji/custom/1f5b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5bc", - "static_url": "https://poa.st/emoji/custom/1f5bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5c2", - "static_url": "https://poa.st/emoji/custom/1f5c2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5c2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5c3", - "static_url": "https://poa.st/emoji/custom/1f5c3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5c3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5c4", - "static_url": "https://poa.st/emoji/custom/1f5c4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5c4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5d1", - "static_url": "https://poa.st/emoji/custom/1f5d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5d2", - "static_url": "https://poa.st/emoji/custom/1f5d2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5d2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5d3", - "static_url": "https://poa.st/emoji/custom/1f5d3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5d3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5dc", - "static_url": "https://poa.st/emoji/custom/1f5dc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5dc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5dd", - "static_url": "https://poa.st/emoji/custom/1f5dd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5dd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5de", - "static_url": "https://poa.st/emoji/custom/1f5de.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5de.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5e1", - "static_url": "https://poa.st/emoji/custom/1f5e1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5e1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5e3", - "static_url": "https://poa.st/emoji/custom/1f5e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5e8", - "static_url": "https://poa.st/emoji/custom/1f5e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5ef", - "static_url": "https://poa.st/emoji/custom/1f5ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5f3", - "static_url": "https://poa.st/emoji/custom/1f5f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5fa", - "static_url": "https://poa.st/emoji/custom/1f5fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5fb", - "static_url": "https://poa.st/emoji/custom/1f5fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5fc", - "static_url": "https://poa.st/emoji/custom/1f5fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5fd", - "static_url": "https://poa.st/emoji/custom/1f5fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5fe", - "static_url": "https://poa.st/emoji/custom/1f5fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f5ff", - "static_url": "https://poa.st/emoji/custom/1f5ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f5ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f600", - "static_url": "https://poa.st/emoji/custom/1f600.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f600.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f601", - "static_url": "https://poa.st/emoji/custom/1f601.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f601.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f602", - "static_url": "https://poa.st/emoji/custom/1f602.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f602.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f603", - "static_url": "https://poa.st/emoji/custom/1f603.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f603.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f604", - "static_url": "https://poa.st/emoji/custom/1f604.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f604.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f605", - "static_url": "https://poa.st/emoji/custom/1f605.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f605.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f606", - "static_url": "https://poa.st/emoji/custom/1f606.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f606.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f607", - "static_url": "https://poa.st/emoji/custom/1f607.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f607.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f608", - "static_url": "https://poa.st/emoji/custom/1f608.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f608.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f609", - "static_url": "https://poa.st/emoji/custom/1f609.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f609.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f60a", - "static_url": "https://poa.st/emoji/custom/1f60a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f60a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f60b", - "static_url": "https://poa.st/emoji/custom/1f60b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f60b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f60c", - "static_url": "https://poa.st/emoji/custom/1f60c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f60c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f60d", - "static_url": "https://poa.st/emoji/custom/1f60d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f60d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f60e", - "static_url": "https://poa.st/emoji/custom/1f60e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f60e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f60f", - "static_url": "https://poa.st/emoji/custom/1f60f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f60f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f610", - "static_url": "https://poa.st/emoji/custom/1f610.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f610.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f611", - "static_url": "https://poa.st/emoji/custom/1f611.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f611.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f612", - "static_url": "https://poa.st/emoji/custom/1f612.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f612.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f613", - "static_url": "https://poa.st/emoji/custom/1f613.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f613.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f614", - "static_url": "https://poa.st/emoji/custom/1f614.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f614.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f615", - "static_url": "https://poa.st/emoji/custom/1f615.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f615.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f616", - "static_url": "https://poa.st/emoji/custom/1f616.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f616.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f617", - "static_url": "https://poa.st/emoji/custom/1f617.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f617.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f618", - "static_url": "https://poa.st/emoji/custom/1f618.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f618.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f619", - "static_url": "https://poa.st/emoji/custom/1f619.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f619.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f61a", - "static_url": "https://poa.st/emoji/custom/1f61a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f61a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f61b", - "static_url": "https://poa.st/emoji/custom/1f61b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f61b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f61c", - "static_url": "https://poa.st/emoji/custom/1f61c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f61c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f61d", - "static_url": "https://poa.st/emoji/custom/1f61d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f61d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f61e", - "static_url": "https://poa.st/emoji/custom/1f61e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f61e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f61f", - "static_url": "https://poa.st/emoji/custom/1f61f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f61f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f620", - "static_url": "https://poa.st/emoji/custom/1f620.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f620.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f621", - "static_url": "https://poa.st/emoji/custom/1f621.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f621.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f622", - "static_url": "https://poa.st/emoji/custom/1f622.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f622.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f623", - "static_url": "https://poa.st/emoji/custom/1f623.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f623.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f624", - "static_url": "https://poa.st/emoji/custom/1f624.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f624.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f625", - "static_url": "https://poa.st/emoji/custom/1f625.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f625.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f626", - "static_url": "https://poa.st/emoji/custom/1f626.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f626.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f627", - "static_url": "https://poa.st/emoji/custom/1f627.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f627.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f628", - "static_url": "https://poa.st/emoji/custom/1f628.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f628.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f629", - "static_url": "https://poa.st/emoji/custom/1f629.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f629.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f62a", - "static_url": "https://poa.st/emoji/custom/1f62a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f62a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f62b", - "static_url": "https://poa.st/emoji/custom/1f62b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f62b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f62c", - "static_url": "https://poa.st/emoji/custom/1f62c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f62c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f62d", - "static_url": "https://poa.st/emoji/custom/1f62d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f62d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f62e", - "static_url": "https://poa.st/emoji/custom/1f62e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f62e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f62f", - "static_url": "https://poa.st/emoji/custom/1f62f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f62f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f630", - "static_url": "https://poa.st/emoji/custom/1f630.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f630.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f631", - "static_url": "https://poa.st/emoji/custom/1f631.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f631.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f632", - "static_url": "https://poa.st/emoji/custom/1f632.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f632.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f633", - "static_url": "https://poa.st/emoji/custom/1f633.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f633.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f634", - "static_url": "https://poa.st/emoji/custom/1f634.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f634.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f635", - "static_url": "https://poa.st/emoji/custom/1f635.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f635.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f636", - "static_url": "https://poa.st/emoji/custom/1f636.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f636.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f637", - "static_url": "https://poa.st/emoji/custom/1f637.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f637.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f638", - "static_url": "https://poa.st/emoji/custom/1f638.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f638.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f639", - "static_url": "https://poa.st/emoji/custom/1f639.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f639.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f63a", - "static_url": "https://poa.st/emoji/custom/1f63a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f63a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f63b", - "static_url": "https://poa.st/emoji/custom/1f63b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f63b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f63c", - "static_url": "https://poa.st/emoji/custom/1f63c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f63c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f63d", - "static_url": "https://poa.st/emoji/custom/1f63d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f63d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f63e", - "static_url": "https://poa.st/emoji/custom/1f63e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f63e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f63f", - "static_url": "https://poa.st/emoji/custom/1f63f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f63f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f640", - "static_url": "https://poa.st/emoji/custom/1f640.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f640.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f641", - "static_url": "https://poa.st/emoji/custom/1f641.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f641.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f642", - "static_url": "https://poa.st/emoji/custom/1f642.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f642.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f643", - "static_url": "https://poa.st/emoji/custom/1f643.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f643.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f644", - "static_url": "https://poa.st/emoji/custom/1f644.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f644.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645", - "static_url": "https://poa.st/emoji/custom/1f645.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f645-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f645-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f645-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f645-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646", - "static_url": "https://poa.st/emoji/custom/1f646.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f646-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f646-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f646-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f646-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647", - "static_url": "https://poa.st/emoji/custom/1f647.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f647-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f647-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f647-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f647-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f648", - "static_url": "https://poa.st/emoji/custom/1f648.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f648.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f649", - "static_url": "https://poa.st/emoji/custom/1f649.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f649.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64a", - "static_url": "https://poa.st/emoji/custom/1f64a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b", - "static_url": "https://poa.st/emoji/custom/1f64b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64b-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64b-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64b-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64c", - "static_url": "https://poa.st/emoji/custom/1f64c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64c-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f64c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64c-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f64c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64c-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f64c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64c-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f64c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64c-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f64c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d", - "static_url": "https://poa.st/emoji/custom/1f64d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64d-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64d-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64d-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e", - "static_url": "https://poa.st/emoji/custom/1f64e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64e-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f64e-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64e-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64f", - "static_url": "https://poa.st/emoji/custom/1f64f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64f-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f64f-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64f-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64f-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f64f-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64f-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64f-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f64f-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64f-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64f-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f64f-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64f-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f64f-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f64f-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f64f-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f680", - "static_url": "https://poa.st/emoji/custom/1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f681", - "static_url": "https://poa.st/emoji/custom/1f681.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f681.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f682", - "static_url": "https://poa.st/emoji/custom/1f682.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f682.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f683", - "static_url": "https://poa.st/emoji/custom/1f683.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f683.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f684", - "static_url": "https://poa.st/emoji/custom/1f684.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f684.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f685", - "static_url": "https://poa.st/emoji/custom/1f685.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f685.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f686", - "static_url": "https://poa.st/emoji/custom/1f686.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f686.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f687", - "static_url": "https://poa.st/emoji/custom/1f687.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f687.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f688", - "static_url": "https://poa.st/emoji/custom/1f688.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f688.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f689", - "static_url": "https://poa.st/emoji/custom/1f689.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f689.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f68a", - "static_url": "https://poa.st/emoji/custom/1f68a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f68a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f68b", - "static_url": "https://poa.st/emoji/custom/1f68b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f68b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f68c", - "static_url": "https://poa.st/emoji/custom/1f68c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f68c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f68d", - "static_url": "https://poa.st/emoji/custom/1f68d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f68d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f68e", - "static_url": "https://poa.st/emoji/custom/1f68e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f68e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f68f", - "static_url": "https://poa.st/emoji/custom/1f68f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f68f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f690", - "static_url": "https://poa.st/emoji/custom/1f690.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f690.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f691", - "static_url": "https://poa.st/emoji/custom/1f691.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f691.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f692", - "static_url": "https://poa.st/emoji/custom/1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f693", - "static_url": "https://poa.st/emoji/custom/1f693.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f693.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f694", - "static_url": "https://poa.st/emoji/custom/1f694.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f694.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f695", - "static_url": "https://poa.st/emoji/custom/1f695.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f695.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f696", - "static_url": "https://poa.st/emoji/custom/1f696.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f696.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f697", - "static_url": "https://poa.st/emoji/custom/1f697.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f697.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f698", - "static_url": "https://poa.st/emoji/custom/1f698.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f698.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f699", - "static_url": "https://poa.st/emoji/custom/1f699.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f699.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f69a", - "static_url": "https://poa.st/emoji/custom/1f69a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f69a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f69b", - "static_url": "https://poa.st/emoji/custom/1f69b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f69b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f69c", - "static_url": "https://poa.st/emoji/custom/1f69c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f69c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f69d", - "static_url": "https://poa.st/emoji/custom/1f69d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f69d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f69e", - "static_url": "https://poa.st/emoji/custom/1f69e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f69e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f69f", - "static_url": "https://poa.st/emoji/custom/1f69f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f69f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a0", - "static_url": "https://poa.st/emoji/custom/1f6a0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a1", - "static_url": "https://poa.st/emoji/custom/1f6a1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a2", - "static_url": "https://poa.st/emoji/custom/1f6a2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3", - "static_url": "https://poa.st/emoji/custom/1f6a3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a3-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6a3-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a3-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a4", - "static_url": "https://poa.st/emoji/custom/1f6a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a5", - "static_url": "https://poa.st/emoji/custom/1f6a5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a6", - "static_url": "https://poa.st/emoji/custom/1f6a6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a7", - "static_url": "https://poa.st/emoji/custom/1f6a7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a8", - "static_url": "https://poa.st/emoji/custom/1f6a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6a9", - "static_url": "https://poa.st/emoji/custom/1f6a9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6a9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6aa", - "static_url": "https://poa.st/emoji/custom/1f6aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ab", - "static_url": "https://poa.st/emoji/custom/1f6ab.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ab.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ac", - "static_url": "https://poa.st/emoji/custom/1f6ac.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ac.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ad", - "static_url": "https://poa.st/emoji/custom/1f6ad.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ad.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ae", - "static_url": "https://poa.st/emoji/custom/1f6ae.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ae.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6af", - "static_url": "https://poa.st/emoji/custom/1f6af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b0", - "static_url": "https://poa.st/emoji/custom/1f6b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b1", - "static_url": "https://poa.st/emoji/custom/1f6b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b2", - "static_url": "https://poa.st/emoji/custom/1f6b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b3", - "static_url": "https://poa.st/emoji/custom/1f6b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4", - "static_url": "https://poa.st/emoji/custom/1f6b4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b4-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b4-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b4-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5", - "static_url": "https://poa.st/emoji/custom/1f6b5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b5-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b5-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b5-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6", - "static_url": "https://poa.st/emoji/custom/1f6b6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b6-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f6b6-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b6-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b7", - "static_url": "https://poa.st/emoji/custom/1f6b7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b8", - "static_url": "https://poa.st/emoji/custom/1f6b8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6b9", - "static_url": "https://poa.st/emoji/custom/1f6b9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6b9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ba", - "static_url": "https://poa.st/emoji/custom/1f6ba.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ba.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6bb", - "static_url": "https://poa.st/emoji/custom/1f6bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6bc", - "static_url": "https://poa.st/emoji/custom/1f6bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6bd", - "static_url": "https://poa.st/emoji/custom/1f6bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6be", - "static_url": "https://poa.st/emoji/custom/1f6be.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6be.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6bf", - "static_url": "https://poa.st/emoji/custom/1f6bf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6bf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c0", - "static_url": "https://poa.st/emoji/custom/1f6c0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c0-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f6c0-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c0-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c0-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f6c0-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c0-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c0-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f6c0-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c0-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c0-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f6c0-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c0-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c0-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f6c0-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c0-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c1", - "static_url": "https://poa.st/emoji/custom/1f6c1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c2", - "static_url": "https://poa.st/emoji/custom/1f6c2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c3", - "static_url": "https://poa.st/emoji/custom/1f6c3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c4", - "static_url": "https://poa.st/emoji/custom/1f6c4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6c5", - "static_url": "https://poa.st/emoji/custom/1f6c5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6c5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cb", - "static_url": "https://poa.st/emoji/custom/1f6cb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cc", - "static_url": "https://poa.st/emoji/custom/1f6cc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cc-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f6cc-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cc-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cc-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f6cc-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cc-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cc-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f6cc-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cc-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cc-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f6cc-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cc-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cc-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f6cc-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cc-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cd", - "static_url": "https://poa.st/emoji/custom/1f6cd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ce", - "static_url": "https://poa.st/emoji/custom/1f6ce.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ce.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6cf", - "static_url": "https://poa.st/emoji/custom/1f6cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6d0", - "static_url": "https://poa.st/emoji/custom/1f6d0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6d0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6d1", - "static_url": "https://poa.st/emoji/custom/1f6d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6d2", - "static_url": "https://poa.st/emoji/custom/1f6d2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6d2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6d5", - "static_url": "https://poa.st/emoji/custom/1f6d5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6d5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6d6", - "static_url": "https://poa.st/emoji/custom/1f6d6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6d6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6d7", - "static_url": "https://poa.st/emoji/custom/1f6d7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6d7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e0", - "static_url": "https://poa.st/emoji/custom/1f6e0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e1", - "static_url": "https://poa.st/emoji/custom/1f6e1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e2", - "static_url": "https://poa.st/emoji/custom/1f6e2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e3", - "static_url": "https://poa.st/emoji/custom/1f6e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e4", - "static_url": "https://poa.st/emoji/custom/1f6e4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e5", - "static_url": "https://poa.st/emoji/custom/1f6e5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6e9", - "static_url": "https://poa.st/emoji/custom/1f6e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6eb", - "static_url": "https://poa.st/emoji/custom/1f6eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6ec", - "static_url": "https://poa.st/emoji/custom/1f6ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f0", - "static_url": "https://poa.st/emoji/custom/1f6f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f3", - "static_url": "https://poa.st/emoji/custom/1f6f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f4", - "static_url": "https://poa.st/emoji/custom/1f6f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f5", - "static_url": "https://poa.st/emoji/custom/1f6f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f6", - "static_url": "https://poa.st/emoji/custom/1f6f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f7", - "static_url": "https://poa.st/emoji/custom/1f6f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f8", - "static_url": "https://poa.st/emoji/custom/1f6f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6f9", - "static_url": "https://poa.st/emoji/custom/1f6f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6fa", - "static_url": "https://poa.st/emoji/custom/1f6fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6fb", - "static_url": "https://poa.st/emoji/custom/1f6fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f6fc", - "static_url": "https://poa.st/emoji/custom/1f6fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f6fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e0", - "static_url": "https://poa.st/emoji/custom/1f7e0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e1", - "static_url": "https://poa.st/emoji/custom/1f7e1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e2", - "static_url": "https://poa.st/emoji/custom/1f7e2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e3", - "static_url": "https://poa.st/emoji/custom/1f7e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e4", - "static_url": "https://poa.st/emoji/custom/1f7e4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e5", - "static_url": "https://poa.st/emoji/custom/1f7e5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e6", - "static_url": "https://poa.st/emoji/custom/1f7e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e7", - "static_url": "https://poa.st/emoji/custom/1f7e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e8", - "static_url": "https://poa.st/emoji/custom/1f7e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7e9", - "static_url": "https://poa.st/emoji/custom/1f7e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7ea", - "static_url": "https://poa.st/emoji/custom/1f7ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f7eb", - "static_url": "https://poa.st/emoji/custom/1f7eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f7eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90c", - "static_url": "https://poa.st/emoji/custom/1f90c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90c-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f90c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90c-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f90c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90c-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f90c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90c-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f90c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90c-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f90c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90d", - "static_url": "https://poa.st/emoji/custom/1f90d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90e", - "static_url": "https://poa.st/emoji/custom/1f90e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90f", - "static_url": "https://poa.st/emoji/custom/1f90f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90f-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f90f-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90f-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90f-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f90f-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90f-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90f-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f90f-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90f-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90f-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f90f-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90f-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f90f-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f90f-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f90f-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f910", - "static_url": "https://poa.st/emoji/custom/1f910.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f910.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f911", - "static_url": "https://poa.st/emoji/custom/1f911.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f911.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f912", - "static_url": "https://poa.st/emoji/custom/1f912.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f912.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f913", - "static_url": "https://poa.st/emoji/custom/1f913.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f913.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f914", - "static_url": "https://poa.st/emoji/custom/1f914.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f914.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f915", - "static_url": "https://poa.st/emoji/custom/1f915.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f915.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f916", - "static_url": "https://poa.st/emoji/custom/1f916.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f916.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f917", - "static_url": "https://poa.st/emoji/custom/1f917.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f917.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f918", - "static_url": "https://poa.st/emoji/custom/1f918.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f918.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f918-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f918-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f918-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f918-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f918-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f918-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f918-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f918-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f918-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f918-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f918-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f918-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f918-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f918-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f918-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f919", - "static_url": "https://poa.st/emoji/custom/1f919.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f919.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f919-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f919-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f919-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f919-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f919-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f919-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f919-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f919-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f919-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f919-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f919-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f919-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f919-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f919-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f919-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91a", - "static_url": "https://poa.st/emoji/custom/1f91a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91a-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f91a-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91a-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91a-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f91a-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91a-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91a-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f91a-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91a-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91a-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f91a-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91a-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91a-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f91a-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91a-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91b", - "static_url": "https://poa.st/emoji/custom/1f91b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91b-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f91b-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91b-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91b-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f91b-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91b-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91b-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f91b-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91b-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91b-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f91b-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91b-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91b-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f91b-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91b-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91c", - "static_url": "https://poa.st/emoji/custom/1f91c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91c-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f91c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91c-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f91c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91c-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f91c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91c-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f91c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91c-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f91c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91d", - "static_url": "https://poa.st/emoji/custom/1f91d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91e", - "static_url": "https://poa.st/emoji/custom/1f91e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91e-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f91e-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91e-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91e-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f91e-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91e-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91e-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f91e-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91e-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91e-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f91e-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91e-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91e-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f91e-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91e-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91f", - "static_url": "https://poa.st/emoji/custom/1f91f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91f-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f91f-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91f-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91f-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f91f-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91f-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91f-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f91f-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91f-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91f-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f91f-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91f-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f91f-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f91f-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f91f-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f920", - "static_url": "https://poa.st/emoji/custom/1f920.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f920.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f921", - "static_url": "https://poa.st/emoji/custom/1f921.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f921.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f922", - "static_url": "https://poa.st/emoji/custom/1f922.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f922.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f923", - "static_url": "https://poa.st/emoji/custom/1f923.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f923.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f924", - "static_url": "https://poa.st/emoji/custom/1f924.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f924.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f925", - "static_url": "https://poa.st/emoji/custom/1f925.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f925.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926", - "static_url": "https://poa.st/emoji/custom/1f926.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f926-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f926-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f926-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f926-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f927", - "static_url": "https://poa.st/emoji/custom/1f927.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f927.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f928", - "static_url": "https://poa.st/emoji/custom/1f928.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f928.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f929", - "static_url": "https://poa.st/emoji/custom/1f929.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f929.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f92a", - "static_url": "https://poa.st/emoji/custom/1f92a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f92a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f92b", - "static_url": "https://poa.st/emoji/custom/1f92b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f92b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f92c", - "static_url": "https://poa.st/emoji/custom/1f92c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f92c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f92d", - "static_url": "https://poa.st/emoji/custom/1f92d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f92d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f92e", - "static_url": "https://poa.st/emoji/custom/1f92e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f92e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f92f", - "static_url": "https://poa.st/emoji/custom/1f92f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f92f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f930", - "static_url": "https://poa.st/emoji/custom/1f930.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f930.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f930-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f930-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f930-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f930-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f930-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f930-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f930-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f930-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f930-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f930-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f930-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f930-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f930-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f930-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f930-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f931", - "static_url": "https://poa.st/emoji/custom/1f931.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f931.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f931-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f931-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f931-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f931-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f931-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f931-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f931-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f931-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f931-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f931-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f931-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f931-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f931-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f931-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f931-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f932", - "static_url": "https://poa.st/emoji/custom/1f932.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f932.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f932-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f932-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f932-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f932-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f932-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f932-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f932-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f932-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f932-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f932-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f932-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f932-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f932-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f932-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f932-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f933", - "static_url": "https://poa.st/emoji/custom/1f933.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f933.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f933-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f933-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f933-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f933-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f933-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f933-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f933-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f933-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f933-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f933-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f933-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f933-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f933-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f933-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f933-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f934", - "static_url": "https://poa.st/emoji/custom/1f934.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f934.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f934-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f934-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f934-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f934-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f934-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f934-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f934-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f934-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f934-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f934-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f934-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f934-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f934-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f934-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f934-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935", - "static_url": "https://poa.st/emoji/custom/1f935.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f935-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f935-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f935-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f935-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f936", - "static_url": "https://poa.st/emoji/custom/1f936.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f936.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f936-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f936-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f936-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f936-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f936-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f936-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f936-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f936-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f936-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f936-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f936-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f936-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f936-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f936-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f936-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937", - "static_url": "https://poa.st/emoji/custom/1f937.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f937-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f937-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f937-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f937-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938", - "static_url": "https://poa.st/emoji/custom/1f938.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f938-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f938-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f938-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f938-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939", - "static_url": "https://poa.st/emoji/custom/1f939.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f939-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f939-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f939-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f939-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93a", - "static_url": "https://poa.st/emoji/custom/1f93a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93c", - "static_url": "https://poa.st/emoji/custom/1f93c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93c-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93c-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93c-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93c-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93c-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93c-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d", - "static_url": "https://poa.st/emoji/custom/1f93d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93d-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93d-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93d-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e", - "static_url": "https://poa.st/emoji/custom/1f93e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93e-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f93e-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93e-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f93f", - "static_url": "https://poa.st/emoji/custom/1f93f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f93f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f940", - "static_url": "https://poa.st/emoji/custom/1f940.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f940.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f941", - "static_url": "https://poa.st/emoji/custom/1f941.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f941.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f942", - "static_url": "https://poa.st/emoji/custom/1f942.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f942.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f943", - "static_url": "https://poa.st/emoji/custom/1f943.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f943.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f944", - "static_url": "https://poa.st/emoji/custom/1f944.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f944.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f945", - "static_url": "https://poa.st/emoji/custom/1f945.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f945.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f947", - "static_url": "https://poa.st/emoji/custom/1f947.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f947.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f948", - "static_url": "https://poa.st/emoji/custom/1f948.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f948.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f949", - "static_url": "https://poa.st/emoji/custom/1f949.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f949.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f94a", - "static_url": "https://poa.st/emoji/custom/1f94a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f94a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f94b", - "static_url": "https://poa.st/emoji/custom/1f94b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f94b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f94c", - "static_url": "https://poa.st/emoji/custom/1f94c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f94c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f94d", - "static_url": "https://poa.st/emoji/custom/1f94d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f94d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f94e", - "static_url": "https://poa.st/emoji/custom/1f94e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f94e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f94f", - "static_url": "https://poa.st/emoji/custom/1f94f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f94f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f950", - "static_url": "https://poa.st/emoji/custom/1f950.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f950.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f951", - "static_url": "https://poa.st/emoji/custom/1f951.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f951.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f952", - "static_url": "https://poa.st/emoji/custom/1f952.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f952.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f953", - "static_url": "https://poa.st/emoji/custom/1f953.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f953.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f954", - "static_url": "https://poa.st/emoji/custom/1f954.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f954.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f955", - "static_url": "https://poa.st/emoji/custom/1f955.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f955.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f956", - "static_url": "https://poa.st/emoji/custom/1f956.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f956.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f957", - "static_url": "https://poa.st/emoji/custom/1f957.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f957.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f958", - "static_url": "https://poa.st/emoji/custom/1f958.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f958.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f959", - "static_url": "https://poa.st/emoji/custom/1f959.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f959.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f95a", - "static_url": "https://poa.st/emoji/custom/1f95a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f95a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f95b", - "static_url": "https://poa.st/emoji/custom/1f95b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f95b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f95c", - "static_url": "https://poa.st/emoji/custom/1f95c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f95c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f95d", - "static_url": "https://poa.st/emoji/custom/1f95d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f95d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f95e", - "static_url": "https://poa.st/emoji/custom/1f95e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f95e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f95f", - "static_url": "https://poa.st/emoji/custom/1f95f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f95f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f960", - "static_url": "https://poa.st/emoji/custom/1f960.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f960.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f961", - "static_url": "https://poa.st/emoji/custom/1f961.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f961.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f962", - "static_url": "https://poa.st/emoji/custom/1f962.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f962.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f963", - "static_url": "https://poa.st/emoji/custom/1f963.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f963.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f964", - "static_url": "https://poa.st/emoji/custom/1f964.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f964.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f965", - "static_url": "https://poa.st/emoji/custom/1f965.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f965.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f966", - "static_url": "https://poa.st/emoji/custom/1f966.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f966.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f967", - "static_url": "https://poa.st/emoji/custom/1f967.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f967.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f968", - "static_url": "https://poa.st/emoji/custom/1f968.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f968.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f969", - "static_url": "https://poa.st/emoji/custom/1f969.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f969.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f96a", - "static_url": "https://poa.st/emoji/custom/1f96a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f96a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f96b", - "static_url": "https://poa.st/emoji/custom/1f96b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f96b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f96c", - "static_url": "https://poa.st/emoji/custom/1f96c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f96c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f96d", - "static_url": "https://poa.st/emoji/custom/1f96d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f96d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f96e", - "static_url": "https://poa.st/emoji/custom/1f96e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f96e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f96f", - "static_url": "https://poa.st/emoji/custom/1f96f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f96f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f970", - "static_url": "https://poa.st/emoji/custom/1f970.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f970.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f971", - "static_url": "https://poa.st/emoji/custom/1f971.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f971.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f972", - "static_url": "https://poa.st/emoji/custom/1f972.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f972.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f973", - "static_url": "https://poa.st/emoji/custom/1f973.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f973.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f974", - "static_url": "https://poa.st/emoji/custom/1f974.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f974.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f975", - "static_url": "https://poa.st/emoji/custom/1f975.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f975.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f976", - "static_url": "https://poa.st/emoji/custom/1f976.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f976.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f977", - "static_url": "https://poa.st/emoji/custom/1f977.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f977.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f977-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f977-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f977-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f977-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f977-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f977-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f977-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f977-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f977-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f977-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f977-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f977-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f977-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f977-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f977-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f978", - "static_url": "https://poa.st/emoji/custom/1f978.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f978.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f97a", - "static_url": "https://poa.st/emoji/custom/1f97a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f97a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f97b", - "static_url": "https://poa.st/emoji/custom/1f97b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f97b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f97c", - "static_url": "https://poa.st/emoji/custom/1f97c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f97c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f97d", - "static_url": "https://poa.st/emoji/custom/1f97d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f97d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f97e", - "static_url": "https://poa.st/emoji/custom/1f97e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f97e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f97f", - "static_url": "https://poa.st/emoji/custom/1f97f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f97f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f980", - "static_url": "https://poa.st/emoji/custom/1f980.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f980.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f981", - "static_url": "https://poa.st/emoji/custom/1f981.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f981.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f982", - "static_url": "https://poa.st/emoji/custom/1f982.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f982.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f983", - "static_url": "https://poa.st/emoji/custom/1f983.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f983.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f984", - "static_url": "https://poa.st/emoji/custom/1f984.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f984.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f985", - "static_url": "https://poa.st/emoji/custom/1f985.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f985.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f986", - "static_url": "https://poa.st/emoji/custom/1f986.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f986.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f987", - "static_url": "https://poa.st/emoji/custom/1f987.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f987.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f988", - "static_url": "https://poa.st/emoji/custom/1f988.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f988.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f989", - "static_url": "https://poa.st/emoji/custom/1f989.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f989.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f98a", - "static_url": "https://poa.st/emoji/custom/1f98a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f98a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f98b", - "static_url": "https://poa.st/emoji/custom/1f98b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f98b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f98c", - "static_url": "https://poa.st/emoji/custom/1f98c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f98c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f98d", - "static_url": "https://poa.st/emoji/custom/1f98d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f98d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f98e", - "static_url": "https://poa.st/emoji/custom/1f98e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f98e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f98f", - "static_url": "https://poa.st/emoji/custom/1f98f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f98f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f990", - "static_url": "https://poa.st/emoji/custom/1f990.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f990.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f991", - "static_url": "https://poa.st/emoji/custom/1f991.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f991.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f992", - "static_url": "https://poa.st/emoji/custom/1f992.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f992.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f993", - "static_url": "https://poa.st/emoji/custom/1f993.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f993.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f994", - "static_url": "https://poa.st/emoji/custom/1f994.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f994.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f995", - "static_url": "https://poa.st/emoji/custom/1f995.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f995.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f996", - "static_url": "https://poa.st/emoji/custom/1f996.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f996.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f997", - "static_url": "https://poa.st/emoji/custom/1f997.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f997.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f998", - "static_url": "https://poa.st/emoji/custom/1f998.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f998.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f999", - "static_url": "https://poa.st/emoji/custom/1f999.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f999.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f99a", - "static_url": "https://poa.st/emoji/custom/1f99a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f99a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f99b", - "static_url": "https://poa.st/emoji/custom/1f99b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f99b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f99c", - "static_url": "https://poa.st/emoji/custom/1f99c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f99c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f99d", - "static_url": "https://poa.st/emoji/custom/1f99d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f99d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f99e", - "static_url": "https://poa.st/emoji/custom/1f99e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f99e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f99f", - "static_url": "https://poa.st/emoji/custom/1f99f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f99f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a0", - "static_url": "https://poa.st/emoji/custom/1f9a0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a1", - "static_url": "https://poa.st/emoji/custom/1f9a1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a2", - "static_url": "https://poa.st/emoji/custom/1f9a2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a3", - "static_url": "https://poa.st/emoji/custom/1f9a3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a4", - "static_url": "https://poa.st/emoji/custom/1f9a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a5", - "static_url": "https://poa.st/emoji/custom/1f9a5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a6", - "static_url": "https://poa.st/emoji/custom/1f9a6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a7", - "static_url": "https://poa.st/emoji/custom/1f9a7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a8", - "static_url": "https://poa.st/emoji/custom/1f9a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9a9", - "static_url": "https://poa.st/emoji/custom/1f9a9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9a9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9aa", - "static_url": "https://poa.st/emoji/custom/1f9aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ab", - "static_url": "https://poa.st/emoji/custom/1f9ab.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ab.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ac", - "static_url": "https://poa.st/emoji/custom/1f9ac.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ac.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ad", - "static_url": "https://poa.st/emoji/custom/1f9ad.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ad.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ae", - "static_url": "https://poa.st/emoji/custom/1f9ae.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ae.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9af", - "static_url": "https://poa.st/emoji/custom/1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b4", - "static_url": "https://poa.st/emoji/custom/1f9b4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b5", - "static_url": "https://poa.st/emoji/custom/1f9b5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b5-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9b5-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b5-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b5-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9b5-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b5-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b5-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9b5-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b5-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b5-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9b5-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b5-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b5-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9b5-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b5-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b6", - "static_url": "https://poa.st/emoji/custom/1f9b6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b6-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9b6-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b6-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b6-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9b6-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b6-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b6-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9b6-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b6-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b6-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9b6-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b6-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b6-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9b6-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b6-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b7", - "static_url": "https://poa.st/emoji/custom/1f9b7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8", - "static_url": "https://poa.st/emoji/custom/1f9b8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b8-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b8-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b8-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9", - "static_url": "https://poa.st/emoji/custom/1f9b9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9b9-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9b9-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9b9-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ba", - "static_url": "https://poa.st/emoji/custom/1f9ba.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ba.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bb", - "static_url": "https://poa.st/emoji/custom/1f9bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bb-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9bb-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bb-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bb-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9bb-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bb-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bb-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9bb-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bb-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bb-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9bb-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bb-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bb-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9bb-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bb-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9be", - "static_url": "https://poa.st/emoji/custom/1f9be.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9be.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9bf", - "static_url": "https://poa.st/emoji/custom/1f9bf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9bf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c0", - "static_url": "https://poa.st/emoji/custom/1f9c0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c1", - "static_url": "https://poa.st/emoji/custom/1f9c1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c2", - "static_url": "https://poa.st/emoji/custom/1f9c2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c3", - "static_url": "https://poa.st/emoji/custom/1f9c3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c4", - "static_url": "https://poa.st/emoji/custom/1f9c4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c5", - "static_url": "https://poa.st/emoji/custom/1f9c5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c6", - "static_url": "https://poa.st/emoji/custom/1f9c6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c7", - "static_url": "https://poa.st/emoji/custom/1f9c7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c8", - "static_url": "https://poa.st/emoji/custom/1f9c8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9c9", - "static_url": "https://poa.st/emoji/custom/1f9c9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9c9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ca", - "static_url": "https://poa.st/emoji/custom/1f9ca.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ca.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cb", - "static_url": "https://poa.st/emoji/custom/1f9cb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd", - "static_url": "https://poa.st/emoji/custom/1f9cd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce", - "static_url": "https://poa.st/emoji/custom/1f9ce.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ce-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9ce-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ce-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf", - "static_url": "https://poa.st/emoji/custom/1f9cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9cf-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9cf-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9cf-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d0", - "static_url": "https://poa.st/emoji/custom/1f9d0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1", - "static_url": "https://poa.st/emoji/custom/1f9d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fb-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fb-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fc-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fc-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fd-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fd-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3fe-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3fe-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-1f3ff-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-1f3ff-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f33e", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f33e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f33e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f373", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f373.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f373.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f37c", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f37c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f37c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f384", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f384.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f384.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f393", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f393.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f393.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f3a4", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f3a4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f3a4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f3a8", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f3a8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f3a8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f3eb", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f3eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f3eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f3ed", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f3ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f3ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f4bb", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f4bb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f4bb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f4bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f4bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f4bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f527", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f527.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f527.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f52c", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f52c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f52c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f680", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f680.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f680.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f692", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f91d-200d-1f9d1", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f91d-200d-1f9d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f91d-200d-1f9d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9af", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9af.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9af.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9b0", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9b1", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9b2", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9b3", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9b3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9bc", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9bc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9bc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-1f9bd", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-1f9bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-1f9bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-2695-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-2695-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-2695-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-2696-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-2696-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-2696-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d1-200d-2708-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d1-200d-2708-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d1-200d-2708-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d2", - "static_url": "https://poa.st/emoji/custom/1f9d2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d2-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d2-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d2-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d2-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d2-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d2-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d2-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d2-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d2-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d2-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d2-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d2-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d2-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d2-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d2-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d3", - "static_url": "https://poa.st/emoji/custom/1f9d3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d3-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d3-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d3-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d3-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d3-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d3-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d3-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d3-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d3-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d3-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d3-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d3-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d3-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d3-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d3-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d4", - "static_url": "https://poa.st/emoji/custom/1f9d4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d4-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d4-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d4-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d4-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d4-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d4-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d4-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d4-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d4-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d4-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d4-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d4-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d4-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d4-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d4-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d5", - "static_url": "https://poa.st/emoji/custom/1f9d5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d5-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d5-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d5-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d5-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d5-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d5-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d5-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d5-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d5-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d5-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d5-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d5-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d5-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d5-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d5-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6", - "static_url": "https://poa.st/emoji/custom/1f9d6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d6-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d6-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d6-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7", - "static_url": "https://poa.st/emoji/custom/1f9d7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d7-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d7-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d7-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8", - "static_url": "https://poa.st/emoji/custom/1f9d8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d8-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d8-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d8-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9", - "static_url": "https://poa.st/emoji/custom/1f9d9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9d9-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9d9-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9d9-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da", - "static_url": "https://poa.st/emoji/custom/1f9da.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9da-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9da-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9da-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db", - "static_url": "https://poa.st/emoji/custom/1f9db.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9db-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9db-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9db-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc", - "static_url": "https://poa.st/emoji/custom/1f9dc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd", - "static_url": "https://poa.st/emoji/custom/1f9dd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fb", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fc", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fd", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fe", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3ff", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9dd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9dd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9dd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9de", - "static_url": "https://poa.st/emoji/custom/1f9de.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9de.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9de-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9de-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9de-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9de-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9de-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9de-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9df", - "static_url": "https://poa.st/emoji/custom/1f9df.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9df.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9df-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9df-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9df-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9df-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/1f9df-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9df-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e0", - "static_url": "https://poa.st/emoji/custom/1f9e0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e1", - "static_url": "https://poa.st/emoji/custom/1f9e1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e2", - "static_url": "https://poa.st/emoji/custom/1f9e2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e3", - "static_url": "https://poa.st/emoji/custom/1f9e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e4", - "static_url": "https://poa.st/emoji/custom/1f9e4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e5", - "static_url": "https://poa.st/emoji/custom/1f9e5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e6", - "static_url": "https://poa.st/emoji/custom/1f9e6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e7", - "static_url": "https://poa.st/emoji/custom/1f9e7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e8", - "static_url": "https://poa.st/emoji/custom/1f9e8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9e9", - "static_url": "https://poa.st/emoji/custom/1f9e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ea", - "static_url": "https://poa.st/emoji/custom/1f9ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9eb", - "static_url": "https://poa.st/emoji/custom/1f9eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ec", - "static_url": "https://poa.st/emoji/custom/1f9ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ed", - "static_url": "https://poa.st/emoji/custom/1f9ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ee", - "static_url": "https://poa.st/emoji/custom/1f9ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ef", - "static_url": "https://poa.st/emoji/custom/1f9ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f0", - "static_url": "https://poa.st/emoji/custom/1f9f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f1", - "static_url": "https://poa.st/emoji/custom/1f9f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f2", - "static_url": "https://poa.st/emoji/custom/1f9f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f3", - "static_url": "https://poa.st/emoji/custom/1f9f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f4", - "static_url": "https://poa.st/emoji/custom/1f9f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f5", - "static_url": "https://poa.st/emoji/custom/1f9f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f6", - "static_url": "https://poa.st/emoji/custom/1f9f6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f7", - "static_url": "https://poa.st/emoji/custom/1f9f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f8", - "static_url": "https://poa.st/emoji/custom/1f9f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9f9", - "static_url": "https://poa.st/emoji/custom/1f9f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9fa", - "static_url": "https://poa.st/emoji/custom/1f9fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9fb", - "static_url": "https://poa.st/emoji/custom/1f9fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9fc", - "static_url": "https://poa.st/emoji/custom/1f9fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9fd", - "static_url": "https://poa.st/emoji/custom/1f9fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9fe", - "static_url": "https://poa.st/emoji/custom/1f9fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1f9ff", - "static_url": "https://poa.st/emoji/custom/1f9ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1f9ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa70", - "static_url": "https://poa.st/emoji/custom/1fa70.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa70.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa71", - "static_url": "https://poa.st/emoji/custom/1fa71.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa71.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa72", - "static_url": "https://poa.st/emoji/custom/1fa72.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa72.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa73", - "static_url": "https://poa.st/emoji/custom/1fa73.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa73.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa74", - "static_url": "https://poa.st/emoji/custom/1fa74.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa74.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa78", - "static_url": "https://poa.st/emoji/custom/1fa78.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa78.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa79", - "static_url": "https://poa.st/emoji/custom/1fa79.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa79.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa7a", - "static_url": "https://poa.st/emoji/custom/1fa7a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa7a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa80", - "static_url": "https://poa.st/emoji/custom/1fa80.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa80.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa81", - "static_url": "https://poa.st/emoji/custom/1fa81.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa81.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa82", - "static_url": "https://poa.st/emoji/custom/1fa82.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa82.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa83", - "static_url": "https://poa.st/emoji/custom/1fa83.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa83.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa84", - "static_url": "https://poa.st/emoji/custom/1fa84.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa84.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa85", - "static_url": "https://poa.st/emoji/custom/1fa85.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa85.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa86", - "static_url": "https://poa.st/emoji/custom/1fa86.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa86.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa90", - "static_url": "https://poa.st/emoji/custom/1fa90.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa90.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa91", - "static_url": "https://poa.st/emoji/custom/1fa91.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa91.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa92", - "static_url": "https://poa.st/emoji/custom/1fa92.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa92.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa93", - "static_url": "https://poa.st/emoji/custom/1fa93.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa93.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa94", - "static_url": "https://poa.st/emoji/custom/1fa94.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa94.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa95", - "static_url": "https://poa.st/emoji/custom/1fa95.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa95.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa96", - "static_url": "https://poa.st/emoji/custom/1fa96.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa96.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa97", - "static_url": "https://poa.st/emoji/custom/1fa97.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa97.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa98", - "static_url": "https://poa.st/emoji/custom/1fa98.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa98.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa99", - "static_url": "https://poa.st/emoji/custom/1fa99.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa99.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa9a", - "static_url": "https://poa.st/emoji/custom/1fa9a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa9a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa9b", - "static_url": "https://poa.st/emoji/custom/1fa9b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa9b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa9c", - "static_url": "https://poa.st/emoji/custom/1fa9c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa9c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa9d", - "static_url": "https://poa.st/emoji/custom/1fa9d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa9d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa9e", - "static_url": "https://poa.st/emoji/custom/1fa9e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa9e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fa9f", - "static_url": "https://poa.st/emoji/custom/1fa9f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fa9f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa0", - "static_url": "https://poa.st/emoji/custom/1faa0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa1", - "static_url": "https://poa.st/emoji/custom/1faa1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa2", - "static_url": "https://poa.st/emoji/custom/1faa2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa3", - "static_url": "https://poa.st/emoji/custom/1faa3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa4", - "static_url": "https://poa.st/emoji/custom/1faa4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa5", - "static_url": "https://poa.st/emoji/custom/1faa5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa6", - "static_url": "https://poa.st/emoji/custom/1faa6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa7", - "static_url": "https://poa.st/emoji/custom/1faa7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1faa8", - "static_url": "https://poa.st/emoji/custom/1faa8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1faa8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab0", - "static_url": "https://poa.st/emoji/custom/1fab0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab1", - "static_url": "https://poa.st/emoji/custom/1fab1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab2", - "static_url": "https://poa.st/emoji/custom/1fab2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab3", - "static_url": "https://poa.st/emoji/custom/1fab3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab4", - "static_url": "https://poa.st/emoji/custom/1fab4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab5", - "static_url": "https://poa.st/emoji/custom/1fab5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fab6", - "static_url": "https://poa.st/emoji/custom/1fab6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fab6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fac0", - "static_url": "https://poa.st/emoji/custom/1fac0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fac0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fac1", - "static_url": "https://poa.st/emoji/custom/1fac1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fac1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fac2", - "static_url": "https://poa.st/emoji/custom/1fac2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fac2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad0", - "static_url": "https://poa.st/emoji/custom/1fad0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad1", - "static_url": "https://poa.st/emoji/custom/1fad1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad2", - "static_url": "https://poa.st/emoji/custom/1fad2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad3", - "static_url": "https://poa.st/emoji/custom/1fad3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad4", - "static_url": "https://poa.st/emoji/custom/1fad4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad5", - "static_url": "https://poa.st/emoji/custom/1fad5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "1fad6", - "static_url": "https://poa.st/emoji/custom/1fad6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/1fad6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2001", - "static_url": "https://poa.st/emoji/custom/2001.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2001.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2020", - "static_url": "https://poa.st/emoji/stolen/2020.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/2020.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "203c", - "static_url": "https://poa.st/emoji/custom/203c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/203c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2040", - "static_url": "https://poa.st/emoji/stolen/2040.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/2040.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2049", - "static_url": "https://poa.st/emoji/custom/2049.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2049.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2050", - "static_url": "https://poa.st/emoji/stolen/2050.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/2050.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2101", - "static_url": "https://poa.st/emoji/stolen/2101.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/2101.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2122", - "static_url": "https://poa.st/emoji/custom/2122.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2122.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2139", - "static_url": "https://poa.st/emoji/custom/2139.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2139.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2194", - "static_url": "https://poa.st/emoji/custom/2194.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2194.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2195", - "static_url": "https://poa.st/emoji/custom/2195.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2195.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2196", - "static_url": "https://poa.st/emoji/custom/2196.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2196.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2197", - "static_url": "https://poa.st/emoji/custom/2197.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2197.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2198", - "static_url": "https://poa.st/emoji/custom/2198.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2198.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2199", - "static_url": "https://poa.st/emoji/custom/2199.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2199.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "21a9", - "static_url": "https://poa.st/emoji/custom/21a9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/21a9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "21aa", - "static_url": "https://poa.st/emoji/custom/21aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/21aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23-20e3", - "static_url": "https://poa.st/emoji/custom/23-20e3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23-20e3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "231a", - "static_url": "https://poa.st/emoji/custom/231a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/231a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "231b", - "static_url": "https://poa.st/emoji/custom/231b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/231b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2328", - "static_url": "https://poa.st/emoji/custom/2328.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2328.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23cf", - "static_url": "https://poa.st/emoji/custom/23cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23e9", - "static_url": "https://poa.st/emoji/custom/23e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23ea", - "static_url": "https://poa.st/emoji/custom/23ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23eb", - "static_url": "https://poa.st/emoji/custom/23eb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23eb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23ec", - "static_url": "https://poa.st/emoji/custom/23ec.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23ec.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23ed", - "static_url": "https://poa.st/emoji/custom/23ed.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23ed.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23ee", - "static_url": "https://poa.st/emoji/custom/23ee.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23ee.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23ef", - "static_url": "https://poa.st/emoji/custom/23ef.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23ef.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23f0", - "static_url": "https://poa.st/emoji/custom/23f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23f1", - "static_url": "https://poa.st/emoji/custom/23f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23f2", - "static_url": "https://poa.st/emoji/custom/23f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23f3", - "static_url": "https://poa.st/emoji/custom/23f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23f8", - "static_url": "https://poa.st/emoji/custom/23f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23f9", - "static_url": "https://poa.st/emoji/custom/23f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "23fa", - "static_url": "https://poa.st/emoji/custom/23fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/23fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "246", - "static_url": "https://poa.st/emoji/stolen/246.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/246.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "24c2", - "static_url": "https://poa.st/emoji/custom/24c2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/24c2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25aa", - "static_url": "https://poa.st/emoji/custom/25aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25ab", - "static_url": "https://poa.st/emoji/custom/25ab.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25ab.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25b6", - "static_url": "https://poa.st/emoji/custom/25b6.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25b6.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25c0", - "static_url": "https://poa.st/emoji/custom/25c0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25c0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25fb", - "static_url": "https://poa.st/emoji/custom/25fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25fc", - "static_url": "https://poa.st/emoji/custom/25fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25fd", - "static_url": "https://poa.st/emoji/custom/25fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "25fe", - "static_url": "https://poa.st/emoji/custom/25fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/25fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2600", - "static_url": "https://poa.st/emoji/custom/2600.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2600.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2601", - "static_url": "https://poa.st/emoji/custom/2601.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2601.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2602", - "static_url": "https://poa.st/emoji/custom/2602.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2602.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2603", - "static_url": "https://poa.st/emoji/custom/2603.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2603.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2604", - "static_url": "https://poa.st/emoji/custom/2604.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2604.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "260e", - "static_url": "https://poa.st/emoji/custom/260e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/260e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2611", - "static_url": "https://poa.st/emoji/custom/2611.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2611.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2614", - "static_url": "https://poa.st/emoji/custom/2614.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2614.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2615", - "static_url": "https://poa.st/emoji/custom/2615.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2615.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2618", - "static_url": "https://poa.st/emoji/custom/2618.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2618.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "261d", - "static_url": "https://poa.st/emoji/custom/261d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/261d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "261d-1f3fb", - "static_url": "https://poa.st/emoji/custom/261d-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/261d-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "261d-1f3fc", - "static_url": "https://poa.st/emoji/custom/261d-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/261d-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "261d-1f3fd", - "static_url": "https://poa.st/emoji/custom/261d-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/261d-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "261d-1f3fe", - "static_url": "https://poa.st/emoji/custom/261d-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/261d-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "261d-1f3ff", - "static_url": "https://poa.st/emoji/custom/261d-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/261d-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2620", - "static_url": "https://poa.st/emoji/custom/2620.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2620.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2622", - "static_url": "https://poa.st/emoji/custom/2622.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2622.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2623", - "static_url": "https://poa.st/emoji/custom/2623.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2623.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2626", - "static_url": "https://poa.st/emoji/custom/2626.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2626.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "262a", - "static_url": "https://poa.st/emoji/custom/262a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/262a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "262e", - "static_url": "https://poa.st/emoji/custom/262e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/262e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "262f", - "static_url": "https://poa.st/emoji/custom/262f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/262f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2638", - "static_url": "https://poa.st/emoji/custom/2638.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2638.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2639", - "static_url": "https://poa.st/emoji/custom/2639.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2639.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "263a", - "static_url": "https://poa.st/emoji/custom/263a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/263a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2640", - "static_url": "https://poa.st/emoji/custom/2640.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2640.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2642", - "static_url": "https://poa.st/emoji/custom/2642.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2642.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2643_god_why", - "static_url": "https://poa.st/emoji/custom/2643_god_why.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2643_god_why.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2648", - "static_url": "https://poa.st/emoji/custom/2648.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2648.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2649", - "static_url": "https://poa.st/emoji/custom/2649.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2649.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "264a", - "static_url": "https://poa.st/emoji/custom/264a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/264a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "264b", - "static_url": "https://poa.st/emoji/custom/264b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/264b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "264c", - "static_url": "https://poa.st/emoji/custom/264c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/264c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "264d", - "static_url": "https://poa.st/emoji/custom/264d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/264d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "264e", - "static_url": "https://poa.st/emoji/custom/264e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/264e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "264f", - "static_url": "https://poa.st/emoji/custom/264f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/264f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2650", - "static_url": "https://poa.st/emoji/custom/2650.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2650.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2651", - "static_url": "https://poa.st/emoji/custom/2651.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2651.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2652", - "static_url": "https://poa.st/emoji/custom/2652.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2652.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2653", - "static_url": "https://poa.st/emoji/custom/2653.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2653.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "265f", - "static_url": "https://poa.st/emoji/custom/265f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/265f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2660", - "static_url": "https://poa.st/emoji/custom/2660.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2660.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2663", - "static_url": "https://poa.st/emoji/custom/2663.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2663.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2665", - "static_url": "https://poa.st/emoji/custom/2665.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2665.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2666", - "static_url": "https://poa.st/emoji/custom/2666.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2666.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2668", - "static_url": "https://poa.st/emoji/custom/2668.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2668.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "267b", - "static_url": "https://poa.st/emoji/custom/267b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/267b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "267e", - "static_url": "https://poa.st/emoji/custom/267e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/267e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "267f", - "static_url": "https://poa.st/emoji/custom/267f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/267f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2692", - "static_url": "https://poa.st/emoji/custom/2692.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2692.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2693", - "static_url": "https://poa.st/emoji/custom/2693.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2693.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2694", - "static_url": "https://poa.st/emoji/custom/2694.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2694.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2695", - "static_url": "https://poa.st/emoji/custom/2695.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2695.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2696", - "static_url": "https://poa.st/emoji/custom/2696.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2696.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2697", - "static_url": "https://poa.st/emoji/custom/2697.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2697.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2699", - "static_url": "https://poa.st/emoji/custom/2699.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2699.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "269b", - "static_url": "https://poa.st/emoji/custom/269b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/269b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "269c", - "static_url": "https://poa.st/emoji/custom/269c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/269c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26a0", - "static_url": "https://poa.st/emoji/custom/26a0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26a0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26a1", - "static_url": "https://poa.st/emoji/custom/26a1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26a1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26a7", - "static_url": "https://poa.st/emoji/custom/26a7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26a7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26aa", - "static_url": "https://poa.st/emoji/custom/26aa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26aa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26ab", - "static_url": "https://poa.st/emoji/custom/26ab.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26ab.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26b0", - "static_url": "https://poa.st/emoji/custom/26b0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26b0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26b1", - "static_url": "https://poa.st/emoji/custom/26b1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26b1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26bd", - "static_url": "https://poa.st/emoji/custom/26bd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26bd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26be", - "static_url": "https://poa.st/emoji/custom/26be.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26be.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26c4", - "static_url": "https://poa.st/emoji/custom/26c4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26c4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26c5", - "static_url": "https://poa.st/emoji/custom/26c5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26c5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26c8", - "static_url": "https://poa.st/emoji/custom/26c8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26c8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26ce", - "static_url": "https://poa.st/emoji/custom/26ce.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26ce.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26cf", - "static_url": "https://poa.st/emoji/custom/26cf.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26cf.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26d1", - "static_url": "https://poa.st/emoji/custom/26d1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26d1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26d3", - "static_url": "https://poa.st/emoji/custom/26d3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26d3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26d4", - "static_url": "https://poa.st/emoji/custom/26d4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26d4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26e9", - "static_url": "https://poa.st/emoji/custom/26e9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26e9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26ea", - "static_url": "https://poa.st/emoji/custom/26ea.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26ea.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f0", - "static_url": "https://poa.st/emoji/custom/26f0.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f0.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f1", - "static_url": "https://poa.st/emoji/custom/26f1.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f1.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f2", - "static_url": "https://poa.st/emoji/custom/26f2.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f2.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f3", - "static_url": "https://poa.st/emoji/custom/26f3.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f3.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f4", - "static_url": "https://poa.st/emoji/custom/26f4.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f4.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f5", - "static_url": "https://poa.st/emoji/custom/26f5.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f5.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f7", - "static_url": "https://poa.st/emoji/custom/26f7.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f7.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f7-1f3fb", - "static_url": "https://poa.st/emoji/custom/26f7-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f7-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f7-1f3fc", - "static_url": "https://poa.st/emoji/custom/26f7-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f7-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f7-1f3fd", - "static_url": "https://poa.st/emoji/custom/26f7-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f7-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f7-1f3fe", - "static_url": "https://poa.st/emoji/custom/26f7-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f7-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f7-1f3ff", - "static_url": "https://poa.st/emoji/custom/26f7-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f7-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f8", - "static_url": "https://poa.st/emoji/custom/26f8.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f8.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9", - "static_url": "https://poa.st/emoji/custom/26f9.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fb", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fb-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fb-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fb-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fb-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fb-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fb-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fc", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fc-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fc-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fc-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fc-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fc-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fc-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fd", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fd-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fd-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fd-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fd-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fd-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fd-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fe", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fe-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fe-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fe-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3fe-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3fe-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3fe-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3ff", - "static_url": "https://poa.st/emoji/custom/26f9-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3ff-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3ff-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3ff-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-1f3ff-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-1f3ff-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-1f3ff-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-fe0f-200d-2640-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-fe0f-200d-2640-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-fe0f-200d-2640-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26f9-fe0f-200d-2642-fe0f", - "static_url": "https://poa.st/emoji/custom/26f9-fe0f-200d-2642-fe0f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26f9-fe0f-200d-2642-fe0f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26fa", - "static_url": "https://poa.st/emoji/custom/26fa.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26fa.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "26fd", - "static_url": "https://poa.st/emoji/custom/26fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/26fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2702", - "static_url": "https://poa.st/emoji/custom/2702.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2702.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2705", - "static_url": "https://poa.st/emoji/custom/2705.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2705.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2708", - "static_url": "https://poa.st/emoji/custom/2708.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2708.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2709", - "static_url": "https://poa.st/emoji/custom/2709.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2709.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270a", - "static_url": "https://poa.st/emoji/custom/270a.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270a.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270a-1f3fb", - "static_url": "https://poa.st/emoji/custom/270a-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270a-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270a-1f3fc", - "static_url": "https://poa.st/emoji/custom/270a-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270a-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270a-1f3fd", - "static_url": "https://poa.st/emoji/custom/270a-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270a-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270a-1f3fe", - "static_url": "https://poa.st/emoji/custom/270a-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270a-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270a-1f3ff", - "static_url": "https://poa.st/emoji/custom/270a-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270a-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270b", - "static_url": "https://poa.st/emoji/custom/270b.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270b.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270b-1f3fb", - "static_url": "https://poa.st/emoji/custom/270b-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270b-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270b-1f3fc", - "static_url": "https://poa.st/emoji/custom/270b-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270b-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270b-1f3fd", - "static_url": "https://poa.st/emoji/custom/270b-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270b-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270b-1f3fe", - "static_url": "https://poa.st/emoji/custom/270b-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270b-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270b-1f3ff", - "static_url": "https://poa.st/emoji/custom/270b-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270b-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270c", - "static_url": "https://poa.st/emoji/custom/270c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270c-1f3fb", - "static_url": "https://poa.st/emoji/custom/270c-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270c-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270c-1f3fc", - "static_url": "https://poa.st/emoji/custom/270c-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270c-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270c-1f3fd", - "static_url": "https://poa.st/emoji/custom/270c-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270c-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270c-1f3fe", - "static_url": "https://poa.st/emoji/custom/270c-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270c-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270c-1f3ff", - "static_url": "https://poa.st/emoji/custom/270c-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270c-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270d", - "static_url": "https://poa.st/emoji/custom/270d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270d-1f3fb", - "static_url": "https://poa.st/emoji/custom/270d-1f3fb.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270d-1f3fb.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270d-1f3fc", - "static_url": "https://poa.st/emoji/custom/270d-1f3fc.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270d-1f3fc.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270d-1f3fd", - "static_url": "https://poa.st/emoji/custom/270d-1f3fd.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270d-1f3fd.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270d-1f3fe", - "static_url": "https://poa.st/emoji/custom/270d-1f3fe.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270d-1f3fe.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270d-1f3ff", - "static_url": "https://poa.st/emoji/custom/270d-1f3ff.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270d-1f3ff.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "270f", - "static_url": "https://poa.st/emoji/custom/270f.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/270f.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2712", - "static_url": "https://poa.st/emoji/custom/2712.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2712.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2714", - "static_url": "https://poa.st/emoji/custom/2714.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2714.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2716", - "static_url": "https://poa.st/emoji/custom/2716.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2716.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "271d", - "static_url": "https://poa.st/emoji/custom/271d.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/271d.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2721", - "static_url": "https://poa.st/emoji/custom/2721.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2721.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2728", - "static_url": "https://poa.st/emoji/custom/2728.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2728.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2733", - "static_url": "https://poa.st/emoji/custom/2733.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2733.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2734", - "static_url": "https://poa.st/emoji/custom/2734.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2734.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2744", - "static_url": "https://poa.st/emoji/custom/2744.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2744.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2747", - "static_url": "https://poa.st/emoji/custom/2747.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2747.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "274c", - "static_url": "https://poa.st/emoji/custom/274c.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/274c.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "274e", - "static_url": "https://poa.st/emoji/custom/274e.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/274e.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2753", - "static_url": "https://poa.st/emoji/custom/2753.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2753.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2754", - "static_url": "https://poa.st/emoji/custom/2754.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2754.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2755", - "static_url": "https://poa.st/emoji/custom/2755.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2755.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2757", - "static_url": "https://poa.st/emoji/custom/2757.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2757.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2763", - "static_url": "https://poa.st/emoji/custom/2763.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2763.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2764", - "static_url": "https://poa.st/emoji/custom/2764.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2764.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2795", - "static_url": "https://poa.st/emoji/custom/2795.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2795.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2796", - "static_url": "https://poa.st/emoji/custom/2796.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2796.svg", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "2797", - "static_url": "https://poa.st/emoji/custom/2797.svg", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/2797.svg", - "visible_in_picker": true - }, { "category": "", "shortcode": "27a1", @@ -37004,216 +3409,6 @@ "url": "https://poa.st/emoji/stolen/ItachiFacePalm.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "JahyAyaya", - "static_url": "https://poa.st/emoji/stolen/JahyAyaya.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyAyaya.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyCry", - "static_url": "https://poa.st/emoji/stolen/JahyCry.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/stolen/JahyCry.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyDab", - "static_url": "https://poa.st/emoji/stolen/JahyDab.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyDab.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyDabbinLeft", - "static_url": "https://poa.st/emoji/custom/JahyDabbinLeft.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/custom/JahyDabbinLeft.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyDabbinRight", - "static_url": "https://poa.st/emoji/custom/JahyDabbinRight.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/custom/JahyDabbinRight.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyDance", - "static_url": "https://poa.st/emoji/stolen/JahyDance.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/stolen/JahyDance.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyDead", - "static_url": "https://poa.st/emoji/stolen/JahyDead.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyDead.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyEvil", - "static_url": "https://poa.st/emoji/stolen/JahyEvil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyEvil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyHmm", - "static_url": "https://poa.st/emoji/stolen/JahyHmm.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyHmm.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyHug", - "static_url": "https://poa.st/emoji/stolen/JahyHug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyHug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyHyper", - "static_url": "https://poa.st/emoji/stolen/JahyHyper.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyHyper.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyLoliPolice", - "static_url": "https://poa.st/emoji/stolen/JahyLoliPolice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyLoliPolice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyLurk", - "static_url": "https://poa.st/emoji/stolen/JahyLurk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyLurk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyProud", - "static_url": "https://poa.st/emoji/stolen/JahyProud.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyProud.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyRage", - "static_url": "https://poa.st/emoji/stolen/JahyRage.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/stolen/JahyRage.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahySad", - "static_url": "https://poa.st/emoji/stolen/JahySad.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/stolen/JahySad.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyScared", - "static_url": "https://poa.st/emoji/stolen/JahyScared.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyScared.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahySmug", - "static_url": "https://poa.st/emoji/stolen/JahySmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahySmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahySweat", - "static_url": "https://poa.st/emoji/stolen/JahySweat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahySweat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyUwU", - "static_url": "https://poa.st/emoji/stolen/JahyUwU.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyUwU.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "JahyWEH", - "static_url": "https://poa.st/emoji/stolen/JahyWEH.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/JahyWEH.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "JessSob", @@ -39014,1376 +5209,6 @@ "url": "https://poa.st/emoji/custom/abismug.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "ablobangel", - "static_url": "https://poa.st/emoji/custom/ablobangel.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobangel.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobattention", - "static_url": "https://poa.st/emoji/custom/ablobattention.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobattention.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobattentionreverse", - "static_url": "https://poa.st/emoji/custom/ablobattentionreverse.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobattentionreverse.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobaww", - "static_url": "https://poa.st/emoji/custom/ablobaww.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobaww.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobbass", - "static_url": "https://poa.st/emoji/custom/ablobbass.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobbass.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobblastoff", - "static_url": "https://poa.st/emoji/custom/ablobblastoff.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobblastoff.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobblewobble", - "static_url": "https://poa.st/emoji/custom/ablobblewobble.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobblewobble.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobbounce", - "static_url": "https://poa.st/emoji/custom/ablobbounce.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobbounce.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatangel", - "static_url": "https://poa.st/emoji/custom/ablobcatangel.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatangel.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatattention", - "static_url": "https://poa.st/emoji/custom/ablobcatattention.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatattention.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatattentionreverse", - "static_url": "https://poa.st/emoji/custom/ablobcatattentionreverse.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatattentionreverse.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatbongo", - "static_url": "https://poa.st/emoji/custom/ablobcatbongo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatbongo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatbox", - "static_url": "https://poa.st/emoji/custom/ablobcatbox.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatbox.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatcoffee", - "static_url": "https://poa.st/emoji/custom/ablobcatcoffee.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatcoffee.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatcry", - "static_url": "https://poa.st/emoji/custom/ablobcatcry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatcry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatgoogly", - "static_url": "https://poa.st/emoji/stolen/ablobcatgoogly.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobcatgoogly.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatgrumpy", - "static_url": "https://poa.st/emoji/custom/ablobcatgrumpy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatgrumpy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcathappypaws", - "static_url": "https://poa.st/emoji/stolen/ablobcathappypaws.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobcathappypaws.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatheart", - "static_url": "https://poa.st/emoji/custom/ablobcatheart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatheart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatheartbroken", - "static_url": "https://poa.st/emoji/custom/ablobcatheartbroken.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatheartbroken.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatheartsqueeze", - "static_url": "https://poa.st/emoji/custom/ablobcatheartsqueeze.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatheartsqueeze.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcathyper", - "static_url": "https://poa.st/emoji/stolen/ablobcathyper.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobcathyper.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatknitsweats", - "static_url": "https://poa.st/emoji/custom/ablobcatknitsweats.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatknitsweats.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatmelt", - "static_url": "https://poa.st/emoji/custom/ablobcatmelt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatmelt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatneon", - "static_url": "https://poa.st/emoji/custom/ablobcatneon.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatneon.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatrainbow", - "static_url": "https://poa.st/emoji/custom/ablobcatrainbow.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatrainbow.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatrave", - "static_url": "https://poa.st/emoji/custom/ablobcatrave.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatrave.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatreach", - "static_url": "https://poa.st/emoji/custom/ablobcatreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatreachmelt", - "static_url": "https://poa.st/emoji/custom/ablobcatreachmelt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatreachmelt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatreachrev", - "static_url": "https://poa.st/emoji/custom/ablobcatreachrev.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatreachrev.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatreachreverse", - "static_url": "https://poa.st/emoji/custom/ablobcatreachreverse.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatreachreverse.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatsweatsip", - "static_url": "https://poa.st/emoji/custom/ablobcatsweatsip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatsweatsip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatvore", - "static_url": "https://poa.st/emoji/custom/ablobcatvore.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatvore.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatwave", - "static_url": "https://poa.st/emoji/custom/ablobcatwave.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatwave.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcatwink", - "static_url": "https://poa.st/emoji/custom/ablobcatwink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcatwink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcheer", - "static_url": "https://poa.st/emoji/custom/ablobcheer.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcheer.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcolorshift", - "static_url": "https://poa.st/emoji/custom/ablobcolorshift.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcolorshift.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcongarollbounce", - "static_url": "https://poa.st/emoji/stolen/ablobcongarollbounce.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobcongarollbounce.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcouncil", - "static_url": "https://poa.st/emoji/custom/ablobcouncil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcouncil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcouple", - "static_url": "https://poa.st/emoji/custom/ablobcouple.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcouple.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobcry", - "static_url": "https://poa.st/emoji/custom/ablobcry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobcry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobdancer", - "static_url": "https://poa.st/emoji/custom/ablobdancer.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobdancer.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobderpy", - "static_url": "https://poa.st/emoji/custom/ablobderpy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobderpy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobderpyhappy", - "static_url": "https://poa.st/emoji/custom/ablobderpyhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobderpyhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobdevil", - "static_url": "https://poa.st/emoji/custom/ablobdevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobdevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobdizzy", - "static_url": "https://poa.st/emoji/custom/ablobdizzy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobdizzy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobdj", - "static_url": "https://poa.st/emoji/stolen/ablobdj.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobdj.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobdrool", - "static_url": "https://poa.st/emoji/custom/ablobdrool.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobdrool.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobdrum", - "static_url": "https://poa.st/emoji/custom/ablobdrum.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobdrum.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobeyes", - "static_url": "https://poa.st/emoji/custom/ablobeyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobeyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobflushed", - "static_url": "https://poa.st/emoji/custom/ablobflushed.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobflushed.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobfoxbongohyper", - "static_url": "https://poa.st/emoji/stolen/ablobfoxbongohyper.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobfoxbongohyper.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobfoxhypercofe", - "static_url": "https://poa.st/emoji/stolen/ablobfoxhypercofe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobfoxhypercofe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobfoxloading", - "static_url": "https://poa.st/emoji/stolen/ablobfoxloading.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobfoxloading.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobgift", - "static_url": "https://poa.st/emoji/custom/ablobgift.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobgift.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobglarezoom", - "static_url": "https://poa.st/emoji/custom/ablobglarezoom.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobglarezoom.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobglarezoombutfast", - "static_url": "https://poa.st/emoji/custom/ablobglarezoombutfast.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobglarezoombutfast.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobgoodnight", - "static_url": "https://poa.st/emoji/custom/ablobgoodnight.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobgoodnight.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobgoodnightreverse", - "static_url": "https://poa.st/emoji/custom/ablobgoodnightreverse.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobgoodnightreverse.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobgrimace", - "static_url": "https://poa.st/emoji/custom/ablobgrimace.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobgrimace.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobgrin", - "static_url": "https://poa.st/emoji/custom/ablobgrin.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobgrin.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobguitar", - "static_url": "https://poa.st/emoji/custom/ablobguitar.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobguitar.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhammer", - "static_url": "https://poa.st/emoji/custom/ablobhammer.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhammer.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobheadshake", - "static_url": "https://poa.st/emoji/custom/ablobheadshake.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobheadshake.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhearteyes", - "static_url": "https://poa.st/emoji/custom/ablobhearteyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhearteyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhologram", - "static_url": "https://poa.st/emoji/custom/ablobhologram.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhologram.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhop", - "static_url": "https://poa.st/emoji/custom/ablobhop.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhop.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhungry", - "static_url": "https://poa.st/emoji/custom/ablobhungry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhungry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhydraulicpress", - "static_url": "https://poa.st/emoji/custom/ablobhydraulicpress.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhydraulicpress.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhype", - "static_url": "https://poa.st/emoji/custom/ablobhype.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobhype.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhyper", - "static_url": "https://poa.st/emoji/stolen/ablobhyper.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobhyper.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobhyperwubbel", - "static_url": "https://poa.st/emoji/stolen/ablobhyperwubbel.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobhyperwubbel.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobjoin", - "static_url": "https://poa.st/emoji/custom/ablobjoin.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobjoin.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobjoy", - "static_url": "https://poa.st/emoji/custom/ablobjoy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobjoy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobkeyboard", - "static_url": "https://poa.st/emoji/custom/ablobkeyboard.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobkeyboard.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobkiss", - "static_url": "https://poa.st/emoji/custom/ablobkiss.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobkiss.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "abloblamp", - "static_url": "https://poa.st/emoji/custom/abloblamp.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/abloblamp.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobleave", - "static_url": "https://poa.st/emoji/custom/ablobleave.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobleave.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "abloblurk", - "static_url": "https://poa.st/emoji/custom/abloblurk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/abloblurk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobmaracas", - "static_url": "https://poa.st/emoji/custom/ablobmaracas.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobmaracas.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobmelt", - "static_url": "https://poa.st/emoji/custom/ablobmelt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobmelt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobmeltsoblove", - "static_url": "https://poa.st/emoji/custom/ablobmeltsoblove.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobmeltsoblove.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobmicrophone", - "static_url": "https://poa.st/emoji/custom/ablobmicrophone.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobmicrophone.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobminarchist", - "static_url": "https://poa.st/emoji/stolen/ablobminarchist.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobminarchist.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobnervous", - "static_url": "https://poa.st/emoji/custom/ablobnervous.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobnervous.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobnod", - "static_url": "https://poa.st/emoji/stolen/ablobnod.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobnod.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobnogood", - "static_url": "https://poa.st/emoji/custom/ablobnogood.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobnogood.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobnom", - "static_url": "https://poa.st/emoji/custom/ablobnom.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobnom.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobnwn", - "static_url": "https://poa.st/emoji/custom/ablobnwn.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobnwn.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobonfire", - "static_url": "https://poa.st/emoji/custom/ablobonfire.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobonfire.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobowo", - "static_url": "https://poa.st/emoji/custom/ablobowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobpanic", - "static_url": "https://poa.st/emoji/custom/ablobpanic.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobpanic.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobparty", - "static_url": "https://poa.st/emoji/custom/ablobparty.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobparty.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobpats", - "static_url": "https://poa.st/emoji/custom/ablobpats.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobpats.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobpeek", - "static_url": "https://poa.st/emoji/custom/ablobpeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobpeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobpopcorn", - "static_url": "https://poa.st/emoji/custom/ablobpopcorn.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobpopcorn.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobpride2", - "static_url": "https://poa.st/emoji/stolen/ablobpride2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobpride2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobrage", - "static_url": "https://poa.st/emoji/custom/ablobrage.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobrage.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobraisehand", - "static_url": "https://poa.st/emoji/custom/ablobraisehand.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobraisehand.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobrave", - "static_url": "https://poa.st/emoji/stolen/ablobrave.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobrave.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobreach", - "static_url": "https://poa.st/emoji/custom/ablobreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobreachreverse", - "static_url": "https://poa.st/emoji/custom/ablobreachreverse.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobreachreverse.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobrollbounce", - "static_url": "https://poa.st/emoji/custom/ablobrollbounce.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobrollbounce.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobrollingeyes", - "static_url": "https://poa.st/emoji/custom/ablobrollingeyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobrollingeyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsadpats", - "static_url": "https://poa.st/emoji/custom/ablobsadpats.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsadpats.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsadrain", - "static_url": "https://poa.st/emoji/custom/ablobsadrain.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsadrain.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsalute", - "static_url": "https://poa.st/emoji/custom/ablobsalute.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsalute.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobscream", - "static_url": "https://poa.st/emoji/custom/ablobscream.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobscream.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsigh", - "static_url": "https://poa.st/emoji/custom/ablobsigh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsigh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsleep", - "static_url": "https://poa.st/emoji/custom/ablobsleep.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsleep.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsmile", - "static_url": "https://poa.st/emoji/custom/ablobsmile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsmile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsmilehappy", - "static_url": "https://poa.st/emoji/custom/ablobsmilehappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsmilehappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsplosion", - "static_url": "https://poa.st/emoji/custom/ablobsplosion.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsplosion.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsquish", - "static_url": "https://poa.st/emoji/custom/ablobsquish.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsquish.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsunglasses", - "static_url": "https://poa.st/emoji/custom/ablobsunglasses.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsunglasses.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsweating", - "static_url": "https://poa.st/emoji/custom/ablobsweating.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsweating.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobsweats", - "static_url": "https://poa.st/emoji/custom/ablobsweats.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobsweats.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobthinking", - "static_url": "https://poa.st/emoji/custom/ablobthinking.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobthinking.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobthinkingeyes", - "static_url": "https://poa.st/emoji/custom/ablobthinkingeyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobthinkingeyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobthinkingfast", - "static_url": "https://poa.st/emoji/custom/ablobthinkingfast.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobthinkingfast.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobthinkzerogravity", - "static_url": "https://poa.st/emoji/custom/ablobthinkzerogravity.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobthinkzerogravity.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobtipping", - "static_url": "https://poa.st/emoji/custom/ablobtipping.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobtipping.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobtoiletflush", - "static_url": "https://poa.st/emoji/stolen/ablobtoiletflush.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobtoiletflush.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobtonguewink", - "static_url": "https://poa.st/emoji/custom/ablobtonguewink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobtonguewink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobtrashrainbow", - "static_url": "https://poa.st/emoji/stolen/ablobtrashrainbow.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobtrashrainbow.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobunamused", - "static_url": "https://poa.st/emoji/custom/ablobunamused.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobunamused.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobuwu", - "static_url": "https://poa.st/emoji/custom/ablobuwu.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobuwu.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwave", - "static_url": "https://poa.st/emoji/custom/ablobwave.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwave.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwavereverse", - "static_url": "https://poa.st/emoji/custom/ablobwavereverse.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwavereverse.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobweary", - "static_url": "https://poa.st/emoji/custom/ablobweary.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobweary.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwhee", - "static_url": "https://poa.st/emoji/custom/ablobwhee.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwhee.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwink", - "static_url": "https://poa.st/emoji/custom/ablobwink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwoah", - "static_url": "https://poa.st/emoji/custom/ablobwoah.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwoah.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwoahsnow", - "static_url": "https://poa.st/emoji/custom/ablobwoahsnow.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwoahsnow.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwob", - "static_url": "https://poa.st/emoji/custom/ablobwob.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobwob.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobwobble", - "static_url": "https://poa.st/emoji/stolen/ablobwobble.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/ablobwobble.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "ablobzerogravity", - "static_url": "https://poa.st/emoji/custom/ablobzerogravity.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/ablobzerogravity.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "abomination", @@ -40734,236 +5559,6 @@ "url": "https://poa.st/emoji/custom/ae.svg", "visible_in_picker": true }, - { - "category": "", - "shortcode": "afire", - "static_url": "https://poa.st/emoji/custom/afire.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/afire.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agoogle100", - "static_url": "https://poa.st/emoji/custom/agoogle100.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agoogle100.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglebee", - "static_url": "https://poa.st/emoji/custom/agooglebee.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglebee.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglebell", - "static_url": "https://poa.st/emoji/custom/agooglebell.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglebell.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglebomb", - "static_url": "https://poa.st/emoji/custom/agooglebomb.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglebomb.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglebrokenheart", - "static_url": "https://poa.st/emoji/custom/agooglebrokenheart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglebrokenheart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglecake", - "static_url": "https://poa.st/emoji/custom/agooglecake.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglecake.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglecat", - "static_url": "https://poa.st/emoji/custom/agooglecat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglecat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglecheers", - "static_url": "https://poa.st/emoji/custom/agooglecheers.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglecheers.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agoogleclap", - "static_url": "https://poa.st/emoji/custom/agoogleclap.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agoogleclap.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglehearts", - "static_url": "https://poa.st/emoji/custom/agooglehearts.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglehearts.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglemonkey", - "static_url": "https://poa.st/emoji/custom/agooglemonkey.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglemonkey.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agoogleoctopus", - "static_url": "https://poa.st/emoji/custom/agoogleoctopus.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agoogleoctopus.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglepeach", - "static_url": "https://poa.st/emoji/custom/agooglepeach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglepeach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglepoop", - "static_url": "https://poa.st/emoji/custom/agooglepoop.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglepoop.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglerainbowheart", - "static_url": "https://poa.st/emoji/custom/agooglerainbowheart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglerainbowheart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglesnail", - "static_url": "https://poa.st/emoji/custom/agooglesnail.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglesnail.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglesun", - "static_url": "https://poa.st/emoji/custom/agooglesun.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglesun.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agoogletada", - "static_url": "https://poa.st/emoji/custom/agoogletada.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agoogletada.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglethumbsdown", - "static_url": "https://poa.st/emoji/custom/agooglethumbsdown.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglethumbsdown.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglethumbsup", - "static_url": "https://poa.st/emoji/custom/agooglethumbsup.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglethumbsup.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agoogleturtle", - "static_url": "https://poa.st/emoji/custom/agoogleturtle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agoogleturtle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "agooglewine", - "static_url": "https://poa.st/emoji/custom/agooglewine.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/agooglewine.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "agummyaww", @@ -49884,526 +14479,6 @@ "url": "https://poa.st/emoji/stolen/blobCatHeart.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "blob_anarchist", - "static_url": "https://poa.st/emoji/stolen/blob_anarchist.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_anarchist.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_anguished", - "static_url": "https://poa.st/emoji/stolen/blob_anguished.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_anguished.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_aww", - "static_url": "https://poa.st/emoji/stolen/blob_aww.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_aww.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_blush", - "static_url": "https://poa.st/emoji/stolen/blob_blush.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_blush.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_cat_blep", - "static_url": "https://poa.st/emoji/stolen/blob_cat_blep.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_cat_blep.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_cat_blue_coffee", - "static_url": "https://poa.st/emoji/stolen/blob_cat_blue_coffee.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_cat_blue_coffee.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_cat_melt", - "static_url": "https://poa.st/emoji/stolen/blob_cat_melt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_cat_melt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_cheer", - "static_url": "https://poa.st/emoji/stolen/blob_cheer.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_cheer.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_cheer_bounce", - "static_url": "https://poa.st/emoji/stolen/blob_cheer_bounce.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_cheer_bounce.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_confused", - "static_url": "https://poa.st/emoji/stolen/blob_confused.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_confused.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_dab", - "static_url": "https://poa.st/emoji/stolen/blob_dab.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_dab.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_devil", - "static_url": "https://poa.st/emoji/stolen/blob_devil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_devil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_disapproval", - "static_url": "https://poa.st/emoji/stolen/blob_disapproval.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_disapproval.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_dizzy_face", - "static_url": "https://poa.st/emoji/stolen/blob_dizzy_face.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_dizzy_face.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_doubt", - "static_url": "https://poa.st/emoji/stolen/blob_doubt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_doubt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_eyes", - "static_url": "https://poa.st/emoji/stolen/blob_eyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_eyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_frown", - "static_url": "https://poa.st/emoji/stolen/blob_frown.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_frown.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_gentle", - "static_url": "https://poa.st/emoji/stolen/blob_gentle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_gentle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_heart_eyes", - "static_url": "https://poa.st/emoji/stolen/blob_heart_eyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_heart_eyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_highfive", - "static_url": "https://poa.st/emoji/stolen/blob_highfive.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_highfive.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_laughing", - "static_url": "https://poa.st/emoji/stolen/blob_laughing.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_laughing.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_melt_sob", - "static_url": "https://poa.st/emoji/stolen/blob_melt_sob.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_melt_sob.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_mono_white", - "static_url": "https://poa.st/emoji/stolen/blob_mono_white.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_mono_white.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_okhand", - "static_url": "https://poa.st/emoji/stolen/blob_okhand.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_okhand.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_pensive", - "static_url": "https://poa.st/emoji/stolen/blob_pensive.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_pensive.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_pray", - "static_url": "https://poa.st/emoji/stolen/blob_pray.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_pray.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon", - "static_url": "https://poa.st/emoji/custom/blob_raccoon.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_raccoon.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon_coffee", - "static_url": "https://poa.st/emoji/custom/blob_raccoon_coffee.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_raccoon_coffee.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon_heart", - "static_url": "https://poa.st/emoji/stolen/blob_raccoon_heart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_raccoon_heart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon_melt", - "static_url": "https://poa.st/emoji/custom/blob_raccoon_melt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_raccoon_melt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon_pat", - "static_url": "https://poa.st/emoji/custom/blob_raccoon_pat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_raccoon_pat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon_peek", - "static_url": "https://poa.st/emoji/custom/blob_raccoon_peek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_raccoon_peek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_raccoon_reach", - "static_url": "https://poa.st/emoji/custom/blob_raccoon_reach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_raccoon_reach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_rave", - "static_url": "https://poa.st/emoji/stolen/blob_rave.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_rave.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_reach_drool", - "static_url": "https://poa.st/emoji/stolen/blob_reach_drool.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_reach_drool.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_sad", - "static_url": "https://poa.st/emoji/stolen/blob_sad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_sad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_sadleft", - "static_url": "https://poa.st/emoji/stolen/blob_sadleft.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_sadleft.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_shh", - "static_url": "https://poa.st/emoji/stolen/blob_shh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_shh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_shrug", - "static_url": "https://poa.st/emoji/stolen/blob_shrug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_shrug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_sleeping", - "static_url": "https://poa.st/emoji/stolen/blob_sleeping.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_sleeping.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_smile", - "static_url": "https://poa.st/emoji/stolen/blob_smile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_smile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_smile_happy", - "static_url": "https://poa.st/emoji/stolen/blob_smile_happy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_smile_happy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_smirk", - "static_url": "https://poa.st/emoji/stolen/blob_smirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_smirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_sneezing", - "static_url": "https://poa.st/emoji/stolen/blob_sneezing.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_sneezing.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_snow", - "static_url": "https://poa.st/emoji/stolen/blob_snow.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_snow.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_sob", - "static_url": "https://poa.st/emoji/stolen/blob_sob.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_sob.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_thinking_eyes", - "static_url": "https://poa.st/emoji/stolen/blob_thinking_eyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_thinking_eyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_thump", - "static_url": "https://poa.st/emoji/stolen/blob_thump.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_thump.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_turtle", - "static_url": "https://poa.st/emoji/custom/blob_turtle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blob_turtle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_weary", - "static_url": "https://poa.st/emoji/stolen/blob_weary.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_weary.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_what", - "static_url": "https://poa.st/emoji/stolen/blob_what.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_what.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blob_woah", - "static_url": "https://poa.st/emoji/stolen/blob_woah.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blob_woah.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "blobahegao", @@ -55484,1916 +19559,6 @@ "url": "https://poa.st/emoji/custom/blobflushed.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "blobfox", - "static_url": "https://poa.st/emoji/custom/blobfox.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfox.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox0_0", - "static_url": "https://poa.st/emoji/stolen/blobfox0_0.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox0_0.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox3c", - "static_url": "https://poa.st/emoji/custom/blobfox3c.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfox3c.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox3cevil", - "static_url": "https://poa.st/emoji/custom/blobfox3cevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfox3cevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_3c", - "static_url": "https://poa.st/emoji/stolen/blobfox_3c.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_3c.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_angrylaugh", - "static_url": "https://poa.st/emoji/stolen/blobfox_angrylaugh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_angrylaugh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_blushmore", - "static_url": "https://poa.st/emoji/stolen/blobfox_blushmore.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_blushmore.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_cofeglare", - "static_url": "https://poa.st/emoji/stolen/blobfox_cofeglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_cofeglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_comfysleepy", - "static_url": "https://poa.st/emoji/stolen/blobfox_comfysleepy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_comfysleepy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_computerowonotice", - "static_url": "https://poa.st/emoji/stolen/blobfox_computerowonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_computerowonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_dab", - "static_url": "https://poa.st/emoji/stolen/blobfox_dab.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_dab.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_detective", - "static_url": "https://poa.st/emoji/stolen/blobfox_detective.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_detective.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_disgust", - "static_url": "https://poa.st/emoji/stolen/blobfox_disgust.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_disgust.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_drakedislike", - "static_url": "https://poa.st/emoji/stolen/blobfox_drakedislike.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_drakedislike.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_heartcute", - "static_url": "https://poa.st/emoji/stolen/blobfox_heartcute.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_heartcute.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_upsidedowndizzy", - "static_url": "https://poa.st/emoji/stolen/blobfox_upsidedowndizzy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfox_upsidedowndizzy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfox_w_", - "static_url": "https://poa.st/emoji/custom/blobfox_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfox_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxangry", - "static_url": "https://poa.st/emoji/custom/blobfoxangry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxangry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxannoyed", - "static_url": "https://poa.st/emoji/custom/blobfoxannoyed.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxannoyed.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxartist", - "static_url": "https://poa.st/emoji/custom/blobfoxartist.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxartist.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxaww", - "static_url": "https://poa.st/emoji/custom/blobfoxaww.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxaww.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxblush", - "static_url": "https://poa.st/emoji/custom/blobfoxblush.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxblush.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxblushmore", - "static_url": "https://poa.st/emoji/custom/blobfoxblushmore.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxblushmore.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbongo", - "static_url": "https://poa.st/emoji/custom/blobfoxbongo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbongo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeek", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeek2", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeek2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeek2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeek2glare", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeek2glare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeek2glare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeek2owo", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeek2owo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeek2owo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeek2owonotice", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeek2owonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeek2owonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeekglare", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeekglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeekglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeekowo", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeekowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeekowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbottompeekowonotice", - "static_url": "https://poa.st/emoji/custom/blobfoxbottompeekowonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbottompeekowonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbox", - "static_url": "https://poa.st/emoji/custom/blobfoxbox.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbox.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbreadpeek", - "static_url": "https://poa.st/emoji/custom/blobfoxbreadpeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbreadpeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbreadsnoot", - "static_url": "https://poa.st/emoji/custom/blobfoxbreadsnoot.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbreadsnoot.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbreadsnoot2", - "static_url": "https://poa.st/emoji/custom/blobfoxbreadsnoot2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbreadsnoot2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbreadsnoot2googly", - "static_url": "https://poa.st/emoji/custom/blobfoxbreadsnoot2googly.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbreadsnoot2googly.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxbreadsnootgoogly", - "static_url": "https://poa.st/emoji/custom/blobfoxbreadsnootgoogly.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxbreadsnootgoogly.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcamera", - "static_url": "https://poa.st/emoji/custom/blobfoxcamera.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcamera.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcofe", - "static_url": "https://poa.st/emoji/custom/blobfoxcofe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcofe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcofe_w_", - "static_url": "https://poa.st/emoji/custom/blobfoxcofe_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcofe_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcofeglare", - "static_url": "https://poa.st/emoji/custom/blobfoxcofeglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcofeglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcofemlem", - "static_url": "https://poa.st/emoji/stolen/blobfoxcofemlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxcofemlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcofeowo", - "static_url": "https://poa.st/emoji/custom/blobfoxcofeowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcofeowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfy", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfycofe", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfycofe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfycofe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfyevil", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfyevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfyevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfyglare", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfyglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfyglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfyhappy", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfyhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfyhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfyowo", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfyowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfyowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfysip", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfysip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfysip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfysleepy", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfysleepy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfysleepy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfysmirk", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfysmirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfysmirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfysmug", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfysmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfysmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfytea", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfytea.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfytea.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcomfyterrified", - "static_url": "https://poa.st/emoji/custom/blobfoxcomfyterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcomfyterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxconfused", - "static_url": "https://poa.st/emoji/custom/blobfoxconfused.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxconfused.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcry", - "static_url": "https://poa.st/emoji/custom/blobfoxcry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcry2", - "static_url": "https://poa.st/emoji/custom/blobfoxcry2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcry2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcrylaugh", - "static_url": "https://poa.st/emoji/stolen/blobfoxcrylaugh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxcrylaugh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcryreach", - "static_url": "https://poa.st/emoji/custom/blobfoxcryreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxcryreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxcute", - "static_url": "https://poa.st/emoji/stolen/blobfoxcute.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxcute.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdab", - "static_url": "https://poa.st/emoji/custom/blobfoxdab.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdab.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdead", - "static_url": "https://poa.st/emoji/custom/blobfoxdead.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdead.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdetective", - "static_url": "https://poa.st/emoji/custom/blobfoxdetective.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdetective.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdetermined", - "static_url": "https://poa.st/emoji/custom/blobfoxdetermined.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdetermined.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdevil", - "static_url": "https://poa.st/emoji/custom/blobfoxdevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdisapprove", - "static_url": "https://poa.st/emoji/custom/blobfoxdisapprove.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdisapprove.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdizzy", - "static_url": "https://poa.st/emoji/custom/blobfoxdizzy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdizzy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdoubt", - "static_url": "https://poa.st/emoji/custom/blobfoxdoubt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdoubt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdrakedislike", - "static_url": "https://poa.st/emoji/custom/blobfoxdrakedislike.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdrakedislike.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdrakelike", - "static_url": "https://poa.st/emoji/custom/blobfoxdrakelike.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdrakelike.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxdrool", - "static_url": "https://poa.st/emoji/custom/blobfoxdrool.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxdrool.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxevil", - "static_url": "https://poa.st/emoji/custom/blobfoxevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxfacepalm", - "static_url": "https://poa.st/emoji/custom/blobfoxfacepalm.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxfacepalm.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxfingerguns", - "static_url": "https://poa.st/emoji/custom/blobfoxfingerguns.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxfingerguns.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxfloof", - "static_url": "https://poa.st/emoji/stolen/blobfoxfloof.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxfloof.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxfloof_w_", - "static_url": "https://poa.st/emoji/stolen/blobfoxfloof_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxfloof_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxfloofowo", - "static_url": "https://poa.st/emoji/stolen/blobfoxfloofowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxfloofowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxflowerhair", - "static_url": "https://poa.st/emoji/stolen/blobfoxflowerhair.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxflowerhair.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxghostspooky", - "static_url": "https://poa.st/emoji/stolen/blobfoxghostspooky.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxghostspooky.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxglare", - "static_url": "https://poa.st/emoji/custom/blobfoxglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxgoogly", - "static_url": "https://poa.st/emoji/custom/blobfoxgoogly.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxgoogly.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxhappy", - "static_url": "https://poa.st/emoji/custom/blobfoxhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxheadphones", - "static_url": "https://poa.st/emoji/custom/blobfoxheadphones.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxheadphones.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxheart", - "static_url": "https://poa.st/emoji/custom/blobfoxheart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxheart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxhyper", - "static_url": "https://poa.st/emoji/custom/blobfoxhyper.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxhyper.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxinnocent", - "static_url": "https://poa.st/emoji/custom/blobfoxinnocent.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxinnocent.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxinnocentmlem", - "static_url": "https://poa.st/emoji/custom/blobfoxinnocentmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxinnocentmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxinnocentpuppyeyes", - "static_url": "https://poa.st/emoji/custom/blobfoxinnocentpuppyeyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxinnocentpuppyeyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxkirbyinhale", - "static_url": "https://poa.st/emoji/custom/blobfoxkirbyinhale.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxkirbyinhale.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxknife", - "static_url": "https://poa.st/emoji/custom/blobfoxknife.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxknife.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxlaugh", - "static_url": "https://poa.st/emoji/custom/blobfoxlaugh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxlaugh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxlaughsweat", - "static_url": "https://poa.st/emoji/custom/blobfoxlaughsweat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxlaughsweat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxlul", - "static_url": "https://poa.st/emoji/custom/blobfoxlul.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxlul.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmelt", - "static_url": "https://poa.st/emoji/custom/blobfoxmelt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmelt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmelt2", - "static_url": "https://poa.st/emoji/custom/blobfoxmelt2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmelt2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmelt3", - "static_url": "https://poa.st/emoji/custom/blobfoxmelt3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmelt3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmelthappy", - "static_url": "https://poa.st/emoji/custom/blobfoxmelthappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmelthappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmeltreach", - "static_url": "https://poa.st/emoji/custom/blobfoxmeltreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmeltreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmeltsob", - "static_url": "https://poa.st/emoji/custom/blobfoxmeltsob.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmeltsob.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmeltsoblove", - "static_url": "https://poa.st/emoji/custom/blobfoxmeltsoblove.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmeltsoblove.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmischievous", - "static_url": "https://poa.st/emoji/custom/blobfoxmischievous.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmischievous.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxmlem", - "static_url": "https://poa.st/emoji/custom/blobfoxmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnerd", - "static_url": "https://poa.st/emoji/custom/blobfoxnerd.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnerd.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxninja", - "static_url": "https://poa.st/emoji/custom/blobfoxninja.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxninja.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomball", - "static_url": "https://poa.st/emoji/custom/blobfoxnomball.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnomball.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnombook", - "static_url": "https://poa.st/emoji/custom/blobfoxnombook.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnombook.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnombread", - "static_url": "https://poa.st/emoji/custom/blobfoxnombread.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnombread.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomburger", - "static_url": "https://poa.st/emoji/custom/blobfoxnomburger.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnomburger.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomcookie", - "static_url": "https://poa.st/emoji/custom/blobfoxnomcookie.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnomcookie.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomcorndog", - "static_url": "https://poa.st/emoji/stolen/blobfoxnomcorndog.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxnomcorndog.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomcroutons", - "static_url": "https://poa.st/emoji/custom/blobfoxnomcroutons.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnomcroutons.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomhotdog", - "static_url": "https://poa.st/emoji/custom/blobfoxnomhotdog.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnomhotdog.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnompizza", - "static_url": "https://poa.st/emoji/custom/blobfoxnompizza.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnompizza.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomshoe", - "static_url": "https://poa.st/emoji/custom/blobfoxnomshoe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnomshoe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnomtomato", - "static_url": "https://poa.st/emoji/stolen/blobfoxnomtomato.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxnomtomato.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnotamused", - "static_url": "https://poa.st/emoji/custom/blobfoxnotamused.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnotamused.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxnotlikethis", - "static_url": "https://poa.st/emoji/custom/blobfoxnotlikethis.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxnotlikethis.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxo_o", - "static_url": "https://poa.st/emoji/custom/blobfoxo_o.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxo_o.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxonepunch", - "static_url": "https://poa.st/emoji/custom/blobfoxonepunch.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxonepunch.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxoutage", - "static_url": "https://poa.st/emoji/custom/blobfoxoutage.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxoutage.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxowo", - "static_url": "https://poa.st/emoji/custom/blobfoxowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxowonotice", - "static_url": "https://poa.st/emoji/custom/blobfoxowonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxowonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpat", - "static_url": "https://poa.st/emoji/custom/blobfoxpat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpatdeny", - "static_url": "https://poa.st/emoji/custom/blobfoxpatdeny.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpatdeny.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpatneutral", - "static_url": "https://poa.st/emoji/custom/blobfoxpatneutral.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpatneutral.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpatsad", - "static_url": "https://poa.st/emoji/custom/blobfoxpatsad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpatsad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpeek", - "static_url": "https://poa.st/emoji/custom/blobfoxpeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpeekcomfy", - "static_url": "https://poa.st/emoji/custom/blobfoxpeekcomfy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpeekcomfy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpeekknife", - "static_url": "https://poa.st/emoji/custom/blobfoxpeekknife.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpeekknife.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpeekowo", - "static_url": "https://poa.st/emoji/custom/blobfoxpeekowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpeekowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpeekpolice", - "static_url": "https://poa.st/emoji/custom/blobfoxpeekpolice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpeekpolice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpirate", - "static_url": "https://poa.st/emoji/custom/blobfoxpirate.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpirate.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpleading", - "static_url": "https://poa.st/emoji/custom/blobfoxpleading.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpleading.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxpolice", - "static_url": "https://poa.st/emoji/custom/blobfoxpolice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxpolice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxprelurkdonut", - "static_url": "https://poa.st/emoji/stolen/blobfoxprelurkdonut.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxprelurkdonut.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxreach", - "static_url": "https://poa.st/emoji/custom/blobfoxreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxread", - "static_url": "https://poa.st/emoji/custom/blobfoxread.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxread.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsad", - "static_url": "https://poa.st/emoji/custom/blobfoxsad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxscared", - "static_url": "https://poa.st/emoji/stolen/blobfoxscared.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxscared.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxshocked", - "static_url": "https://poa.st/emoji/custom/blobfoxshocked.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxshocked.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxshy", - "static_url": "https://poa.st/emoji/custom/blobfoxshy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxshy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsignbaka", - "static_url": "https://poa.st/emoji/custom/blobfoxsignbaka.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsignbaka.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsignbigfan", - "static_url": "https://poa.st/emoji/stolen/blobfoxsignbigfan.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxsignbigfan.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsignno", - "static_url": "https://poa.st/emoji/custom/blobfoxsignno.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsignno.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsignthx", - "static_url": "https://poa.st/emoji/custom/blobfoxsignthx.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsignthx.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsignyes", - "static_url": "https://poa.st/emoji/custom/blobfoxsignyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsignyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsignyip", - "static_url": "https://poa.st/emoji/custom/blobfoxsignyip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsignyip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsip", - "static_url": "https://poa.st/emoji/custom/blobfoxsip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsipglare", - "static_url": "https://poa.st/emoji/custom/blobfoxsipglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsipglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsipowo", - "static_url": "https://poa.st/emoji/custom/blobfoxsipowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsipowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsipsmug", - "static_url": "https://poa.st/emoji/custom/blobfoxsipsmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsipsmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsipterrified", - "static_url": "https://poa.st/emoji/custom/blobfoxsipterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsipterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsleep", - "static_url": "https://poa.st/emoji/custom/blobfoxsleep.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsleep.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsmirk", - "static_url": "https://poa.st/emoji/custom/blobfoxsmirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsmirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsmug", - "static_url": "https://poa.st/emoji/custom/blobfoxsmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsnug", - "static_url": "https://poa.st/emoji/custom/blobfoxsnug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsnug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsnugglare", - "static_url": "https://poa.st/emoji/custom/blobfoxsnugglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsnugglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsnuggle", - "static_url": "https://poa.st/emoji/custom/blobfoxsnuggle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsnuggle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsnugowo", - "static_url": "https://poa.st/emoji/custom/blobfoxsnugowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsnugowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsnugterrified", - "static_url": "https://poa.st/emoji/custom/blobfoxsnugterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsnugterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxstabbed", - "static_url": "https://poa.st/emoji/custom/blobfoxstabbed.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxstabbed.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsurprised", - "static_url": "https://poa.st/emoji/custom/blobfoxsurprised.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxsurprised.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxsweating", - "static_url": "https://poa.st/emoji/stolen/blobfoxsweating.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxsweating.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxtableflip", - "static_url": "https://poa.st/emoji/custom/blobfoxtableflip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxtableflip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxtea", - "static_url": "https://poa.st/emoji/custom/blobfoxtea.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxtea.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxtea_w_", - "static_url": "https://poa.st/emoji/custom/blobfoxtea_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxtea_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxteaglare", - "static_url": "https://poa.st/emoji/custom/blobfoxteaglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxteaglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxteaowo", - "static_url": "https://poa.st/emoji/custom/blobfoxteaowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxteaowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxterrified", - "static_url": "https://poa.st/emoji/custom/blobfoxterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthief", - "static_url": "https://poa.st/emoji/custom/blobfoxthief.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthief.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthink", - "static_url": "https://poa.st/emoji/custom/blobfoxthink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthinkanime", - "static_url": "https://poa.st/emoji/custom/blobfoxthinkanime.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthinkanime.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthinking", - "static_url": "https://poa.st/emoji/custom/blobfoxthinking.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthinking.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthinkowo", - "static_url": "https://poa.st/emoji/custom/blobfoxthinkowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthinkowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthinksmart", - "static_url": "https://poa.st/emoji/stolen/blobfoxthinksmart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/blobfoxthinksmart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthinksmirk", - "static_url": "https://poa.st/emoji/custom/blobfoxthinksmirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthinksmirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthisisfine", - "static_url": "https://poa.st/emoji/custom/blobfoxthisisfine.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthisisfine.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxthonking", - "static_url": "https://poa.st/emoji/custom/blobfoxthonking.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxthonking.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxtsundere", - "static_url": "https://poa.st/emoji/custom/blobfoxtsundere.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxtsundere.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxupset", - "static_url": "https://poa.st/emoji/custom/blobfoxupset.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxupset.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxuwu", - "static_url": "https://poa.st/emoji/custom/blobfoxuwu.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxuwu.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxwashingmachine", - "static_url": "https://poa.st/emoji/custom/blobfoxwashingmachine.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxwashingmachine.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxwater", - "static_url": "https://poa.st/emoji/custom/blobfoxwater.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxwater.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxwink", - "static_url": "https://poa.st/emoji/custom/blobfoxwink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxwink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxwinkmlem", - "static_url": "https://poa.st/emoji/custom/blobfoxwinkmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxwinkmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxworried", - "static_url": "https://poa.st/emoji/custom/blobfoxworried.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxworried.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxyandere", - "static_url": "https://poa.st/emoji/custom/blobfoxyandere.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxyandere.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxyoshieat", - "static_url": "https://poa.st/emoji/custom/blobfoxyoshieat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxyoshieat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "blobfoxyoshieatpixel", - "static_url": "https://poa.st/emoji/custom/blobfoxyoshieatpixel.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/blobfoxyoshieatpixel.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "blobfreezing", @@ -71714,4006 +33879,6 @@ "url": "https://poa.st/emoji/stolen/f_.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "f_00b", - "static_url": "https://poa.st/emoji/custom/f_00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b00h", - "static_url": "https://poa.st/emoji/custom/f_00b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b00t", - "static_url": "https://poa.st/emoji/custom/f_00b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b01b", - "static_url": "https://poa.st/emoji/custom/f_00b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b03b", - "static_url": "https://poa.st/emoji/custom/f_00b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b10b", - "static_url": "https://poa.st/emoji/custom/f_00b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b11b", - "static_url": "https://poa.st/emoji/custom/f_00b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b11h", - "static_url": "https://poa.st/emoji/custom/f_00b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b11t", - "static_url": "https://poa.st/emoji/custom/f_00b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b12b", - "static_url": "https://poa.st/emoji/custom/f_00b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b21b", - "static_url": "https://poa.st/emoji/custom/f_00b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b22b", - "static_url": "https://poa.st/emoji/custom/f_00b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b22h", - "static_url": "https://poa.st/emoji/custom/f_00b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b22t", - "static_url": "https://poa.st/emoji/custom/f_00b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b23b", - "static_url": "https://poa.st/emoji/custom/f_00b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b30b", - "static_url": "https://poa.st/emoji/custom/f_00b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b32b", - "static_url": "https://poa.st/emoji/custom/f_00b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b33b", - "static_url": "https://poa.st/emoji/custom/f_00b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b33h", - "static_url": "https://poa.st/emoji/custom/f_00b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00b33t", - "static_url": "https://poa.st/emoji/custom/f_00b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h", - "static_url": "https://poa.st/emoji/custom/f_00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h00b", - "static_url": "https://poa.st/emoji/custom/f_00h00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h00t", - "static_url": "https://poa.st/emoji/custom/f_00h00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h01b", - "static_url": "https://poa.st/emoji/custom/f_00h01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h03b", - "static_url": "https://poa.st/emoji/custom/f_00h03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h10b", - "static_url": "https://poa.st/emoji/custom/f_00h10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h11b", - "static_url": "https://poa.st/emoji/custom/f_00h11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h11h", - "static_url": "https://poa.st/emoji/custom/f_00h11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h11t", - "static_url": "https://poa.st/emoji/custom/f_00h11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h12b", - "static_url": "https://poa.st/emoji/custom/f_00h12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h21b", - "static_url": "https://poa.st/emoji/custom/f_00h21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h22b", - "static_url": "https://poa.st/emoji/custom/f_00h22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h22h", - "static_url": "https://poa.st/emoji/custom/f_00h22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h22t", - "static_url": "https://poa.st/emoji/custom/f_00h22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h23b", - "static_url": "https://poa.st/emoji/custom/f_00h23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h30b", - "static_url": "https://poa.st/emoji/custom/f_00h30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h32b", - "static_url": "https://poa.st/emoji/custom/f_00h32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h33b", - "static_url": "https://poa.st/emoji/custom/f_00h33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h33h", - "static_url": "https://poa.st/emoji/custom/f_00h33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00h33t", - "static_url": "https://poa.st/emoji/custom/f_00h33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00h33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t", - "static_url": "https://poa.st/emoji/custom/f_00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t00b", - "static_url": "https://poa.st/emoji/custom/f_00t00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t00h", - "static_url": "https://poa.st/emoji/custom/f_00t00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t01b", - "static_url": "https://poa.st/emoji/custom/f_00t01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t03b", - "static_url": "https://poa.st/emoji/custom/f_00t03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t10b", - "static_url": "https://poa.st/emoji/custom/f_00t10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t11b", - "static_url": "https://poa.st/emoji/custom/f_00t11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t11h", - "static_url": "https://poa.st/emoji/custom/f_00t11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t11t", - "static_url": "https://poa.st/emoji/custom/f_00t11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t12b", - "static_url": "https://poa.st/emoji/custom/f_00t12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t21b", - "static_url": "https://poa.st/emoji/custom/f_00t21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t22b", - "static_url": "https://poa.st/emoji/custom/f_00t22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t22h", - "static_url": "https://poa.st/emoji/custom/f_00t22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t22t", - "static_url": "https://poa.st/emoji/custom/f_00t22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t23b", - "static_url": "https://poa.st/emoji/custom/f_00t23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t30b", - "static_url": "https://poa.st/emoji/custom/f_00t30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t32b", - "static_url": "https://poa.st/emoji/custom/f_00t32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t33b", - "static_url": "https://poa.st/emoji/custom/f_00t33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t33h", - "static_url": "https://poa.st/emoji/custom/f_00t33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_00t33t", - "static_url": "https://poa.st/emoji/custom/f_00t33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_00t33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b", - "static_url": "https://poa.st/emoji/custom/f_01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b00b", - "static_url": "https://poa.st/emoji/custom/f_01b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b00h", - "static_url": "https://poa.st/emoji/custom/f_01b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b00t", - "static_url": "https://poa.st/emoji/custom/f_01b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b03b", - "static_url": "https://poa.st/emoji/custom/f_01b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b10b", - "static_url": "https://poa.st/emoji/custom/f_01b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b11b", - "static_url": "https://poa.st/emoji/custom/f_01b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b11h", - "static_url": "https://poa.st/emoji/custom/f_01b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b11t", - "static_url": "https://poa.st/emoji/custom/f_01b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b12b", - "static_url": "https://poa.st/emoji/custom/f_01b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b21b", - "static_url": "https://poa.st/emoji/custom/f_01b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b22b", - "static_url": "https://poa.st/emoji/custom/f_01b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b22h", - "static_url": "https://poa.st/emoji/custom/f_01b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b22t", - "static_url": "https://poa.st/emoji/custom/f_01b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b23b", - "static_url": "https://poa.st/emoji/custom/f_01b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b30b", - "static_url": "https://poa.st/emoji/custom/f_01b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b32b", - "static_url": "https://poa.st/emoji/custom/f_01b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b33b", - "static_url": "https://poa.st/emoji/custom/f_01b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b33h", - "static_url": "https://poa.st/emoji/custom/f_01b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_01b33t", - "static_url": "https://poa.st/emoji/custom/f_01b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_01b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b", - "static_url": "https://poa.st/emoji/custom/f_03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b00b", - "static_url": "https://poa.st/emoji/custom/f_03b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b00h", - "static_url": "https://poa.st/emoji/custom/f_03b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b00t", - "static_url": "https://poa.st/emoji/custom/f_03b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b01b", - "static_url": "https://poa.st/emoji/custom/f_03b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b10b", - "static_url": "https://poa.st/emoji/custom/f_03b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b11b", - "static_url": "https://poa.st/emoji/custom/f_03b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b11h", - "static_url": "https://poa.st/emoji/custom/f_03b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b11t", - "static_url": "https://poa.st/emoji/custom/f_03b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b12b", - "static_url": "https://poa.st/emoji/custom/f_03b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b21b", - "static_url": "https://poa.st/emoji/custom/f_03b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b22b", - "static_url": "https://poa.st/emoji/custom/f_03b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b22h", - "static_url": "https://poa.st/emoji/custom/f_03b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b22t", - "static_url": "https://poa.st/emoji/custom/f_03b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b23b", - "static_url": "https://poa.st/emoji/custom/f_03b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b30b", - "static_url": "https://poa.st/emoji/custom/f_03b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b32b", - "static_url": "https://poa.st/emoji/custom/f_03b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b33b", - "static_url": "https://poa.st/emoji/custom/f_03b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b33h", - "static_url": "https://poa.st/emoji/custom/f_03b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_03b33t", - "static_url": "https://poa.st/emoji/custom/f_03b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_03b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b", - "static_url": "https://poa.st/emoji/custom/f_10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b00b", - "static_url": "https://poa.st/emoji/custom/f_10b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b00h", - "static_url": "https://poa.st/emoji/custom/f_10b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b00t", - "static_url": "https://poa.st/emoji/custom/f_10b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b01b", - "static_url": "https://poa.st/emoji/custom/f_10b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b03b", - "static_url": "https://poa.st/emoji/custom/f_10b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b11b", - "static_url": "https://poa.st/emoji/custom/f_10b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b11h", - "static_url": "https://poa.st/emoji/custom/f_10b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b11t", - "static_url": "https://poa.st/emoji/custom/f_10b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b12b", - "static_url": "https://poa.st/emoji/custom/f_10b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b21b", - "static_url": "https://poa.st/emoji/custom/f_10b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b22b", - "static_url": "https://poa.st/emoji/custom/f_10b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b22h", - "static_url": "https://poa.st/emoji/custom/f_10b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b22t", - "static_url": "https://poa.st/emoji/custom/f_10b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b23b", - "static_url": "https://poa.st/emoji/custom/f_10b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b30b", - "static_url": "https://poa.st/emoji/custom/f_10b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b32b", - "static_url": "https://poa.st/emoji/custom/f_10b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b33b", - "static_url": "https://poa.st/emoji/custom/f_10b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b33h", - "static_url": "https://poa.st/emoji/custom/f_10b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_10b33t", - "static_url": "https://poa.st/emoji/custom/f_10b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_10b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b", - "static_url": "https://poa.st/emoji/custom/f_11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b00b", - "static_url": "https://poa.st/emoji/custom/f_11b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b00h", - "static_url": "https://poa.st/emoji/custom/f_11b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b00t", - "static_url": "https://poa.st/emoji/custom/f_11b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b01b", - "static_url": "https://poa.st/emoji/custom/f_11b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b03b", - "static_url": "https://poa.st/emoji/custom/f_11b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b10b", - "static_url": "https://poa.st/emoji/custom/f_11b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b11h", - "static_url": "https://poa.st/emoji/custom/f_11b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b11t", - "static_url": "https://poa.st/emoji/custom/f_11b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b12b", - "static_url": "https://poa.st/emoji/custom/f_11b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b21b", - "static_url": "https://poa.st/emoji/custom/f_11b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b22b", - "static_url": "https://poa.st/emoji/custom/f_11b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b22h", - "static_url": "https://poa.st/emoji/custom/f_11b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b22t", - "static_url": "https://poa.st/emoji/custom/f_11b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b23b", - "static_url": "https://poa.st/emoji/custom/f_11b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b30b", - "static_url": "https://poa.st/emoji/custom/f_11b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b32b", - "static_url": "https://poa.st/emoji/custom/f_11b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b33b", - "static_url": "https://poa.st/emoji/custom/f_11b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b33h", - "static_url": "https://poa.st/emoji/custom/f_11b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11b33t", - "static_url": "https://poa.st/emoji/custom/f_11b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h", - "static_url": "https://poa.st/emoji/custom/f_11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h00b", - "static_url": "https://poa.st/emoji/custom/f_11h00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h00h", - "static_url": "https://poa.st/emoji/custom/f_11h00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h00t", - "static_url": "https://poa.st/emoji/custom/f_11h00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h01b", - "static_url": "https://poa.st/emoji/custom/f_11h01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h03b", - "static_url": "https://poa.st/emoji/custom/f_11h03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h10b", - "static_url": "https://poa.st/emoji/custom/f_11h10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h11b", - "static_url": "https://poa.st/emoji/custom/f_11h11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h11t", - "static_url": "https://poa.st/emoji/custom/f_11h11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h12b", - "static_url": "https://poa.st/emoji/custom/f_11h12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h21b", - "static_url": "https://poa.st/emoji/custom/f_11h21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h22b", - "static_url": "https://poa.st/emoji/custom/f_11h22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h22h", - "static_url": "https://poa.st/emoji/custom/f_11h22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h22t", - "static_url": "https://poa.st/emoji/custom/f_11h22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h23b", - "static_url": "https://poa.st/emoji/custom/f_11h23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h30b", - "static_url": "https://poa.st/emoji/custom/f_11h30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h32b", - "static_url": "https://poa.st/emoji/custom/f_11h32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h33b", - "static_url": "https://poa.st/emoji/custom/f_11h33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h33h", - "static_url": "https://poa.st/emoji/custom/f_11h33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11h33t", - "static_url": "https://poa.st/emoji/custom/f_11h33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11h33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t", - "static_url": "https://poa.st/emoji/custom/f_11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t00b", - "static_url": "https://poa.st/emoji/custom/f_11t00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t00h", - "static_url": "https://poa.st/emoji/custom/f_11t00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t00t", - "static_url": "https://poa.st/emoji/custom/f_11t00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t01b", - "static_url": "https://poa.st/emoji/custom/f_11t01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t03b", - "static_url": "https://poa.st/emoji/custom/f_11t03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t10b", - "static_url": "https://poa.st/emoji/custom/f_11t10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t11b", - "static_url": "https://poa.st/emoji/custom/f_11t11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t11h", - "static_url": "https://poa.st/emoji/custom/f_11t11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t12b", - "static_url": "https://poa.st/emoji/custom/f_11t12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t21b", - "static_url": "https://poa.st/emoji/custom/f_11t21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t22b", - "static_url": "https://poa.st/emoji/custom/f_11t22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t22h", - "static_url": "https://poa.st/emoji/custom/f_11t22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t22t", - "static_url": "https://poa.st/emoji/custom/f_11t22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t23b", - "static_url": "https://poa.st/emoji/custom/f_11t23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t30b", - "static_url": "https://poa.st/emoji/custom/f_11t30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t32b", - "static_url": "https://poa.st/emoji/custom/f_11t32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t33b", - "static_url": "https://poa.st/emoji/custom/f_11t33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t33h", - "static_url": "https://poa.st/emoji/custom/f_11t33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_11t33t", - "static_url": "https://poa.st/emoji/custom/f_11t33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_11t33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b", - "static_url": "https://poa.st/emoji/custom/f_12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b00b", - "static_url": "https://poa.st/emoji/custom/f_12b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b00h", - "static_url": "https://poa.st/emoji/custom/f_12b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b00t", - "static_url": "https://poa.st/emoji/custom/f_12b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b01b", - "static_url": "https://poa.st/emoji/custom/f_12b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b03b", - "static_url": "https://poa.st/emoji/custom/f_12b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b10b", - "static_url": "https://poa.st/emoji/custom/f_12b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b11b", - "static_url": "https://poa.st/emoji/custom/f_12b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b11h", - "static_url": "https://poa.st/emoji/custom/f_12b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b11t", - "static_url": "https://poa.st/emoji/custom/f_12b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b21b", - "static_url": "https://poa.st/emoji/custom/f_12b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b22b", - "static_url": "https://poa.st/emoji/custom/f_12b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b22h", - "static_url": "https://poa.st/emoji/custom/f_12b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b22t", - "static_url": "https://poa.st/emoji/custom/f_12b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b23b", - "static_url": "https://poa.st/emoji/custom/f_12b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b30b", - "static_url": "https://poa.st/emoji/custom/f_12b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b32b", - "static_url": "https://poa.st/emoji/custom/f_12b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b33b", - "static_url": "https://poa.st/emoji/custom/f_12b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b33h", - "static_url": "https://poa.st/emoji/custom/f_12b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_12b33t", - "static_url": "https://poa.st/emoji/custom/f_12b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_12b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b", - "static_url": "https://poa.st/emoji/custom/f_21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b00b", - "static_url": "https://poa.st/emoji/custom/f_21b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b00h", - "static_url": "https://poa.st/emoji/custom/f_21b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b00t", - "static_url": "https://poa.st/emoji/custom/f_21b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b01b", - "static_url": "https://poa.st/emoji/custom/f_21b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b03b", - "static_url": "https://poa.st/emoji/custom/f_21b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b10b", - "static_url": "https://poa.st/emoji/custom/f_21b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b11b", - "static_url": "https://poa.st/emoji/custom/f_21b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b11h", - "static_url": "https://poa.st/emoji/custom/f_21b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b11t", - "static_url": "https://poa.st/emoji/custom/f_21b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b12b", - "static_url": "https://poa.st/emoji/custom/f_21b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b22b", - "static_url": "https://poa.st/emoji/custom/f_21b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b22h", - "static_url": "https://poa.st/emoji/custom/f_21b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b22t", - "static_url": "https://poa.st/emoji/custom/f_21b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b23b", - "static_url": "https://poa.st/emoji/custom/f_21b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b30b", - "static_url": "https://poa.st/emoji/custom/f_21b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b32b", - "static_url": "https://poa.st/emoji/custom/f_21b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b33b", - "static_url": "https://poa.st/emoji/custom/f_21b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b33h", - "static_url": "https://poa.st/emoji/custom/f_21b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_21b33t", - "static_url": "https://poa.st/emoji/custom/f_21b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_21b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b", - "static_url": "https://poa.st/emoji/custom/f_22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b00b", - "static_url": "https://poa.st/emoji/custom/f_22b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b00h", - "static_url": "https://poa.st/emoji/custom/f_22b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b00t", - "static_url": "https://poa.st/emoji/custom/f_22b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b01b", - "static_url": "https://poa.st/emoji/custom/f_22b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b03b", - "static_url": "https://poa.st/emoji/custom/f_22b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b10b", - "static_url": "https://poa.st/emoji/custom/f_22b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b11b", - "static_url": "https://poa.st/emoji/custom/f_22b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b11h", - "static_url": "https://poa.st/emoji/custom/f_22b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b11t", - "static_url": "https://poa.st/emoji/custom/f_22b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b12b", - "static_url": "https://poa.st/emoji/custom/f_22b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b21b", - "static_url": "https://poa.st/emoji/custom/f_22b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b22h", - "static_url": "https://poa.st/emoji/custom/f_22b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b22t", - "static_url": "https://poa.st/emoji/custom/f_22b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b23b", - "static_url": "https://poa.st/emoji/custom/f_22b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b30b", - "static_url": "https://poa.st/emoji/custom/f_22b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b32b", - "static_url": "https://poa.st/emoji/custom/f_22b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b33b", - "static_url": "https://poa.st/emoji/custom/f_22b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b33h", - "static_url": "https://poa.st/emoji/custom/f_22b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22b33t", - "static_url": "https://poa.st/emoji/custom/f_22b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h", - "static_url": "https://poa.st/emoji/custom/f_22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h00b", - "static_url": "https://poa.st/emoji/custom/f_22h00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h00h", - "static_url": "https://poa.st/emoji/custom/f_22h00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h00t", - "static_url": "https://poa.st/emoji/custom/f_22h00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h01b", - "static_url": "https://poa.st/emoji/custom/f_22h01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h03b", - "static_url": "https://poa.st/emoji/custom/f_22h03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h10b", - "static_url": "https://poa.st/emoji/custom/f_22h10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h11b", - "static_url": "https://poa.st/emoji/custom/f_22h11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h11h", - "static_url": "https://poa.st/emoji/custom/f_22h11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h11t", - "static_url": "https://poa.st/emoji/custom/f_22h11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h12b", - "static_url": "https://poa.st/emoji/custom/f_22h12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h21b", - "static_url": "https://poa.st/emoji/custom/f_22h21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h22b", - "static_url": "https://poa.st/emoji/custom/f_22h22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h22t", - "static_url": "https://poa.st/emoji/custom/f_22h22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h23b", - "static_url": "https://poa.st/emoji/custom/f_22h23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h30b", - "static_url": "https://poa.st/emoji/custom/f_22h30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h32b", - "static_url": "https://poa.st/emoji/custom/f_22h32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h33b", - "static_url": "https://poa.st/emoji/custom/f_22h33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h33h", - "static_url": "https://poa.st/emoji/custom/f_22h33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22h33t", - "static_url": "https://poa.st/emoji/custom/f_22h33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22h33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t", - "static_url": "https://poa.st/emoji/custom/f_22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t00b", - "static_url": "https://poa.st/emoji/custom/f_22t00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t00h", - "static_url": "https://poa.st/emoji/custom/f_22t00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t00t", - "static_url": "https://poa.st/emoji/custom/f_22t00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t01b", - "static_url": "https://poa.st/emoji/custom/f_22t01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t03b", - "static_url": "https://poa.st/emoji/custom/f_22t03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t10b", - "static_url": "https://poa.st/emoji/custom/f_22t10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t11b", - "static_url": "https://poa.st/emoji/custom/f_22t11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t11h", - "static_url": "https://poa.st/emoji/custom/f_22t11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t11t", - "static_url": "https://poa.st/emoji/custom/f_22t11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t12b", - "static_url": "https://poa.st/emoji/custom/f_22t12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t21b", - "static_url": "https://poa.st/emoji/custom/f_22t21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t22b", - "static_url": "https://poa.st/emoji/custom/f_22t22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t22h", - "static_url": "https://poa.st/emoji/custom/f_22t22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t23b", - "static_url": "https://poa.st/emoji/custom/f_22t23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t30b", - "static_url": "https://poa.st/emoji/custom/f_22t30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t32b", - "static_url": "https://poa.st/emoji/custom/f_22t32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t33b", - "static_url": "https://poa.st/emoji/custom/f_22t33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t33h", - "static_url": "https://poa.st/emoji/custom/f_22t33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_22t33t", - "static_url": "https://poa.st/emoji/custom/f_22t33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_22t33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b", - "static_url": "https://poa.st/emoji/custom/f_23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b00b", - "static_url": "https://poa.st/emoji/custom/f_23b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b00h", - "static_url": "https://poa.st/emoji/custom/f_23b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b00t", - "static_url": "https://poa.st/emoji/custom/f_23b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b01b", - "static_url": "https://poa.st/emoji/custom/f_23b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b03b", - "static_url": "https://poa.st/emoji/custom/f_23b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b10b", - "static_url": "https://poa.st/emoji/custom/f_23b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b11b", - "static_url": "https://poa.st/emoji/custom/f_23b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b11h", - "static_url": "https://poa.st/emoji/custom/f_23b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b11t", - "static_url": "https://poa.st/emoji/custom/f_23b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b12b", - "static_url": "https://poa.st/emoji/custom/f_23b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b21b", - "static_url": "https://poa.st/emoji/custom/f_23b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b22b", - "static_url": "https://poa.st/emoji/custom/f_23b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b22h", - "static_url": "https://poa.st/emoji/custom/f_23b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b22t", - "static_url": "https://poa.st/emoji/custom/f_23b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b30b", - "static_url": "https://poa.st/emoji/custom/f_23b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b32b", - "static_url": "https://poa.st/emoji/custom/f_23b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b33b", - "static_url": "https://poa.st/emoji/custom/f_23b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b33h", - "static_url": "https://poa.st/emoji/custom/f_23b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_23b33t", - "static_url": "https://poa.st/emoji/custom/f_23b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_23b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b", - "static_url": "https://poa.st/emoji/custom/f_30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b00b", - "static_url": "https://poa.st/emoji/custom/f_30b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b00h", - "static_url": "https://poa.st/emoji/custom/f_30b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b00t", - "static_url": "https://poa.st/emoji/custom/f_30b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b01b", - "static_url": "https://poa.st/emoji/custom/f_30b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b03b", - "static_url": "https://poa.st/emoji/custom/f_30b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b10b", - "static_url": "https://poa.st/emoji/custom/f_30b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b11b", - "static_url": "https://poa.st/emoji/custom/f_30b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b11h", - "static_url": "https://poa.st/emoji/custom/f_30b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b11t", - "static_url": "https://poa.st/emoji/custom/f_30b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b12b", - "static_url": "https://poa.st/emoji/custom/f_30b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b21b", - "static_url": "https://poa.st/emoji/custom/f_30b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b22b", - "static_url": "https://poa.st/emoji/custom/f_30b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b22h", - "static_url": "https://poa.st/emoji/custom/f_30b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b22t", - "static_url": "https://poa.st/emoji/custom/f_30b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b23b", - "static_url": "https://poa.st/emoji/custom/f_30b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b32b", - "static_url": "https://poa.st/emoji/custom/f_30b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b33b", - "static_url": "https://poa.st/emoji/custom/f_30b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b33h", - "static_url": "https://poa.st/emoji/custom/f_30b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_30b33t", - "static_url": "https://poa.st/emoji/custom/f_30b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_30b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b", - "static_url": "https://poa.st/emoji/custom/f_32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b00b", - "static_url": "https://poa.st/emoji/custom/f_32b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b00h", - "static_url": "https://poa.st/emoji/custom/f_32b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b00t", - "static_url": "https://poa.st/emoji/custom/f_32b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b01b", - "static_url": "https://poa.st/emoji/custom/f_32b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b03b", - "static_url": "https://poa.st/emoji/custom/f_32b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b10b", - "static_url": "https://poa.st/emoji/custom/f_32b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b11b", - "static_url": "https://poa.st/emoji/custom/f_32b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b11h", - "static_url": "https://poa.st/emoji/custom/f_32b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b11t", - "static_url": "https://poa.st/emoji/custom/f_32b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b12b", - "static_url": "https://poa.st/emoji/custom/f_32b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b21b", - "static_url": "https://poa.st/emoji/custom/f_32b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b22b", - "static_url": "https://poa.st/emoji/custom/f_32b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b22h", - "static_url": "https://poa.st/emoji/custom/f_32b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b22t", - "static_url": "https://poa.st/emoji/custom/f_32b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b23b", - "static_url": "https://poa.st/emoji/custom/f_32b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b30b", - "static_url": "https://poa.st/emoji/custom/f_32b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b33b", - "static_url": "https://poa.st/emoji/custom/f_32b33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b33h", - "static_url": "https://poa.st/emoji/custom/f_32b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_32b33t", - "static_url": "https://poa.st/emoji/custom/f_32b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_32b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b", - "static_url": "https://poa.st/emoji/custom/f_33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b00b", - "static_url": "https://poa.st/emoji/custom/f_33b00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b00h", - "static_url": "https://poa.st/emoji/custom/f_33b00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b00t", - "static_url": "https://poa.st/emoji/custom/f_33b00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b01b", - "static_url": "https://poa.st/emoji/custom/f_33b01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b03b", - "static_url": "https://poa.st/emoji/custom/f_33b03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b10b", - "static_url": "https://poa.st/emoji/custom/f_33b10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b11b", - "static_url": "https://poa.st/emoji/custom/f_33b11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b11h", - "static_url": "https://poa.st/emoji/custom/f_33b11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b11t", - "static_url": "https://poa.st/emoji/custom/f_33b11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b12b", - "static_url": "https://poa.st/emoji/custom/f_33b12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b21b", - "static_url": "https://poa.st/emoji/custom/f_33b21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b22b", - "static_url": "https://poa.st/emoji/custom/f_33b22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b22h", - "static_url": "https://poa.st/emoji/custom/f_33b22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b22t", - "static_url": "https://poa.st/emoji/custom/f_33b22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b23b", - "static_url": "https://poa.st/emoji/custom/f_33b23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b30b", - "static_url": "https://poa.st/emoji/custom/f_33b30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b32b", - "static_url": "https://poa.st/emoji/custom/f_33b32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b33h", - "static_url": "https://poa.st/emoji/custom/f_33b33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33b33t", - "static_url": "https://poa.st/emoji/custom/f_33b33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33b33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h", - "static_url": "https://poa.st/emoji/custom/f_33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h00b", - "static_url": "https://poa.st/emoji/custom/f_33h00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h00h", - "static_url": "https://poa.st/emoji/custom/f_33h00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h00t", - "static_url": "https://poa.st/emoji/custom/f_33h00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h01b", - "static_url": "https://poa.st/emoji/custom/f_33h01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h03b", - "static_url": "https://poa.st/emoji/custom/f_33h03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h10b", - "static_url": "https://poa.st/emoji/custom/f_33h10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h11b", - "static_url": "https://poa.st/emoji/custom/f_33h11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h11h", - "static_url": "https://poa.st/emoji/custom/f_33h11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h11t", - "static_url": "https://poa.st/emoji/custom/f_33h11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h12b", - "static_url": "https://poa.st/emoji/custom/f_33h12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h21b", - "static_url": "https://poa.st/emoji/custom/f_33h21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h22b", - "static_url": "https://poa.st/emoji/custom/f_33h22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h22h", - "static_url": "https://poa.st/emoji/custom/f_33h22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h22t", - "static_url": "https://poa.st/emoji/custom/f_33h22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h23b", - "static_url": "https://poa.st/emoji/custom/f_33h23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h30b", - "static_url": "https://poa.st/emoji/custom/f_33h30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h32b", - "static_url": "https://poa.st/emoji/custom/f_33h32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h33b", - "static_url": "https://poa.st/emoji/custom/f_33h33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33h33t", - "static_url": "https://poa.st/emoji/custom/f_33h33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33h33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t", - "static_url": "https://poa.st/emoji/custom/f_33t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t00b", - "static_url": "https://poa.st/emoji/custom/f_33t00b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t00b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t00h", - "static_url": "https://poa.st/emoji/custom/f_33t00h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t00h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t00t", - "static_url": "https://poa.st/emoji/custom/f_33t00t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t00t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t01b", - "static_url": "https://poa.st/emoji/custom/f_33t01b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t01b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t03b", - "static_url": "https://poa.st/emoji/custom/f_33t03b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t03b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t10b", - "static_url": "https://poa.st/emoji/custom/f_33t10b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t10b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t11b", - "static_url": "https://poa.st/emoji/custom/f_33t11b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t11b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t11h", - "static_url": "https://poa.st/emoji/custom/f_33t11h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t11h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t11t", - "static_url": "https://poa.st/emoji/custom/f_33t11t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t11t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t12b", - "static_url": "https://poa.st/emoji/custom/f_33t12b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t12b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t21b", - "static_url": "https://poa.st/emoji/custom/f_33t21b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t21b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t22b", - "static_url": "https://poa.st/emoji/custom/f_33t22b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t22b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t22h", - "static_url": "https://poa.st/emoji/custom/f_33t22h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t22h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t22t", - "static_url": "https://poa.st/emoji/custom/f_33t22t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t22t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t23b", - "static_url": "https://poa.st/emoji/custom/f_33t23b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t23b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t30b", - "static_url": "https://poa.st/emoji/custom/f_33t30b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t30b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t32b", - "static_url": "https://poa.st/emoji/custom/f_33t32b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t32b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t33b", - "static_url": "https://poa.st/emoji/custom/f_33t33b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t33b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "f_33t33h", - "static_url": "https://poa.st/emoji/custom/f_33t33h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/f_33t33h.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "facebook", @@ -80185,216 +38350,6 @@ "url": "https://poa.st/emoji/stolen/guobo.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "gura_closed_eyes", - "static_url": "https://poa.st/emoji/stolen/gura_closed_eyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_closed_eyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_comfy", - "static_url": "https://poa.st/emoji/stolen/gura_comfy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_comfy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_happy", - "static_url": "https://poa.st/emoji/stolen/gura_happy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_happy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_headband_smile", - "static_url": "https://poa.st/emoji/stolen/gura_headband_smile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_headband_smile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_headband_teh", - "static_url": "https://poa.st/emoji/stolen/gura_headband_teh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_headband_teh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_heart", - "static_url": "https://poa.st/emoji/stolen/gura_heart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_heart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_love", - "static_url": "https://poa.st/emoji/stolen/gura_love.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_love.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_nom", - "static_url": "https://poa.st/emoji/custom/gura_nom.gif", - "tags": [ - "" - ], - "url": "https://poa.st/emoji/custom/gura_nom.gif", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_pain", - "static_url": "https://poa.st/emoji/stolen/gura_pain.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_pain.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_pat", - "static_url": "https://poa.st/emoji/stolen/gura_pat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_pat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_shark_nieh", - "static_url": "https://poa.st/emoji/stolen/gura_shark_nieh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_shark_nieh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_shark_sad", - "static_url": "https://poa.st/emoji/stolen/gura_shark_sad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_shark_sad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_shark_sad_pat", - "static_url": "https://poa.st/emoji/stolen/gura_shark_sad_pat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_shark_sad_pat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_shark_smile", - "static_url": "https://poa.st/emoji/stolen/gura_shark_smile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_shark_smile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_shark_uguu", - "static_url": "https://poa.st/emoji/stolen/gura_shark_uguu.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_shark_uguu.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_smile", - "static_url": "https://poa.st/emoji/stolen/gura_smile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_smile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_smug", - "static_url": "https://poa.st/emoji/stolen/gura_smug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_smug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_sob", - "static_url": "https://poa.st/emoji/stolen/gura_sob.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_sob.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_uoh", - "static_url": "https://poa.st/emoji/stolen/gura_uoh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_uoh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_what", - "static_url": "https://poa.st/emoji/stolen/gura_what.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_what.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "gura_wink", - "static_url": "https://poa.st/emoji/stolen/gura_wink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/gura_wink.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "gurabrain", @@ -84425,206 +42380,6 @@ "url": "https://poa.st/emoji/custom/imperialjapan.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "imposterparrot-0", - "static_url": "https://poa.st/emoji/custom/imposterparrot-0.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-0.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-1", - "static_url": "https://poa.st/emoji/custom/imposterparrot-1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-10", - "static_url": "https://poa.st/emoji/custom/imposterparrot-10.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-10.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-11", - "static_url": "https://poa.st/emoji/custom/imposterparrot-11.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-11.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-12", - "static_url": "https://poa.st/emoji/custom/imposterparrot-12.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-12.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-13", - "static_url": "https://poa.st/emoji/custom/imposterparrot-13.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-13.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-14", - "static_url": "https://poa.st/emoji/custom/imposterparrot-14.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-14.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-15", - "static_url": "https://poa.st/emoji/custom/imposterparrot-15.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-15.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-16", - "static_url": "https://poa.st/emoji/custom/imposterparrot-16.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-16.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-17", - "static_url": "https://poa.st/emoji/custom/imposterparrot-17.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-17.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-18", - "static_url": "https://poa.st/emoji/custom/imposterparrot-18.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-18.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-19", - "static_url": "https://poa.st/emoji/custom/imposterparrot-19.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-19.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-2", - "static_url": "https://poa.st/emoji/custom/imposterparrot-2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-3", - "static_url": "https://poa.st/emoji/custom/imposterparrot-3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-4", - "static_url": "https://poa.st/emoji/custom/imposterparrot-4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-5", - "static_url": "https://poa.st/emoji/custom/imposterparrot-5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-6", - "static_url": "https://poa.st/emoji/custom/imposterparrot-6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-7", - "static_url": "https://poa.st/emoji/custom/imposterparrot-7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-8", - "static_url": "https://poa.st/emoji/custom/imposterparrot-8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "imposterparrot-9", - "static_url": "https://poa.st/emoji/custom/imposterparrot-9.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/imposterparrot-9.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "ina_blessed", @@ -108915,1796 +66670,6 @@ "url": "https://poa.st/emoji/custom/retro_apple.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "revblobfox", - "static_url": "https://poa.st/emoji/custom/revblobfox.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfox.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfox3c", - "static_url": "https://poa.st/emoji/custom/revblobfox3c.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfox3c.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfox3cevil", - "static_url": "https://poa.st/emoji/custom/revblobfox3cevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfox3cevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfox_w_", - "static_url": "https://poa.st/emoji/custom/revblobfox_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfox_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxangry", - "static_url": "https://poa.st/emoji/custom/revblobfoxangry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxangry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxannoyed", - "static_url": "https://poa.st/emoji/custom/revblobfoxannoyed.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxannoyed.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxartist", - "static_url": "https://poa.st/emoji/custom/revblobfoxartist.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxartist.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxaww", - "static_url": "https://poa.st/emoji/custom/revblobfoxaww.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxaww.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxblush", - "static_url": "https://poa.st/emoji/custom/revblobfoxblush.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxblush.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxblushmore", - "static_url": "https://poa.st/emoji/custom/revblobfoxblushmore.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxblushmore.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbongo", - "static_url": "https://poa.st/emoji/custom/revblobfoxbongo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbongo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeek", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeek2glare", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeek2glare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeek2glare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeek2owo", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeek2owo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeek2owo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeek2owonotice", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeek2owonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeek2owonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeekglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeekglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeekglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeekowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeekowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeekowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbottompeekowonotice", - "static_url": "https://poa.st/emoji/custom/revblobfoxbottompeekowonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbottompeekowonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbox", - "static_url": "https://poa.st/emoji/custom/revblobfoxbox.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbox.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxbreadpeek", - "static_url": "https://poa.st/emoji/custom/revblobfoxbreadpeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxbreadpeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcamera", - "static_url": "https://poa.st/emoji/custom/revblobfoxcamera.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcamera.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcofe", - "static_url": "https://poa.st/emoji/custom/revblobfoxcofe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcofe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcofe_w_", - "static_url": "https://poa.st/emoji/custom/revblobfoxcofe_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcofe_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcofeglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxcofeglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcofeglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcofeowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxcofeowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcofeowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfy", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfycofe", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfycofe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfycofe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfyevil", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfyevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfyevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfyglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfyglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfyglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfyhappy", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfyhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfyhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfyowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfyowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfyowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfysip", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfysip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfysip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfysleepy", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfysleepy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfysleepy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfysmirk", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfysmirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfysmirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfysmug", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfysmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfysmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfytea", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfytea.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfytea.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcomfyterrified", - "static_url": "https://poa.st/emoji/custom/revblobfoxcomfyterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcomfyterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcry", - "static_url": "https://poa.st/emoji/custom/revblobfoxcry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcry2", - "static_url": "https://poa.st/emoji/custom/revblobfoxcry2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcry2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxcryreach", - "static_url": "https://poa.st/emoji/custom/revblobfoxcryreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxcryreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdab", - "static_url": "https://poa.st/emoji/custom/revblobfoxdab.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdab.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdead", - "static_url": "https://poa.st/emoji/custom/revblobfoxdead.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdead.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdetective", - "static_url": "https://poa.st/emoji/custom/revblobfoxdetective.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdetective.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdetermined", - "static_url": "https://poa.st/emoji/custom/revblobfoxdetermined.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdetermined.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdevil", - "static_url": "https://poa.st/emoji/custom/revblobfoxdevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdisapprove", - "static_url": "https://poa.st/emoji/custom/revblobfoxdisapprove.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdisapprove.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdizzy", - "static_url": "https://poa.st/emoji/custom/revblobfoxdizzy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdizzy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdoubt", - "static_url": "https://poa.st/emoji/custom/revblobfoxdoubt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdoubt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdrakedislike", - "static_url": "https://poa.st/emoji/custom/revblobfoxdrakedislike.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdrakedislike.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdrakelike", - "static_url": "https://poa.st/emoji/custom/revblobfoxdrakelike.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdrakelike.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxdrool", - "static_url": "https://poa.st/emoji/custom/revblobfoxdrool.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxdrool.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxevil", - "static_url": "https://poa.st/emoji/custom/revblobfoxevil.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxevil.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxfacepalm", - "static_url": "https://poa.st/emoji/custom/revblobfoxfacepalm.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxfacepalm.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxfingerguns", - "static_url": "https://poa.st/emoji/custom/revblobfoxfingerguns.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxfingerguns.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxgoogly", - "static_url": "https://poa.st/emoji/custom/revblobfoxgoogly.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxgoogly.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxhappy", - "static_url": "https://poa.st/emoji/custom/revblobfoxhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxheadphones", - "static_url": "https://poa.st/emoji/custom/revblobfoxheadphones.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxheadphones.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxheart", - "static_url": "https://poa.st/emoji/custom/revblobfoxheart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxheart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxhyper", - "static_url": "https://poa.st/emoji/custom/revblobfoxhyper.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxhyper.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxinnocent", - "static_url": "https://poa.st/emoji/custom/revblobfoxinnocent.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxinnocent.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxinnocentmlem", - "static_url": "https://poa.st/emoji/custom/revblobfoxinnocentmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxinnocentmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxinnocentpuppyeyes", - "static_url": "https://poa.st/emoji/custom/revblobfoxinnocentpuppyeyes.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxinnocentpuppyeyes.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxkirbyinhale", - "static_url": "https://poa.st/emoji/custom/revblobfoxkirbyinhale.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxkirbyinhale.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxknife", - "static_url": "https://poa.st/emoji/custom/revblobfoxknife.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxknife.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxlaugh", - "static_url": "https://poa.st/emoji/custom/revblobfoxlaugh.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxlaugh.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxlaughsweat", - "static_url": "https://poa.st/emoji/custom/revblobfoxlaughsweat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxlaughsweat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxlul", - "static_url": "https://poa.st/emoji/custom/revblobfoxlul.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxlul.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmelt", - "static_url": "https://poa.st/emoji/custom/revblobfoxmelt.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmelt.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmelt2", - "static_url": "https://poa.st/emoji/custom/revblobfoxmelt2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmelt2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmelt3", - "static_url": "https://poa.st/emoji/custom/revblobfoxmelt3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmelt3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmelthappy", - "static_url": "https://poa.st/emoji/custom/revblobfoxmelthappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmelthappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmeltreach", - "static_url": "https://poa.st/emoji/custom/revblobfoxmeltreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmeltreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmeltsob", - "static_url": "https://poa.st/emoji/custom/revblobfoxmeltsob.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmeltsob.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmeltsoblove", - "static_url": "https://poa.st/emoji/custom/revblobfoxmeltsoblove.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmeltsoblove.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmischievous", - "static_url": "https://poa.st/emoji/custom/revblobfoxmischievous.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmischievous.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxmlem", - "static_url": "https://poa.st/emoji/custom/revblobfoxmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnerd", - "static_url": "https://poa.st/emoji/custom/revblobfoxnerd.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnerd.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxninja", - "static_url": "https://poa.st/emoji/custom/revblobfoxninja.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxninja.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnomball", - "static_url": "https://poa.st/emoji/custom/revblobfoxnomball.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnomball.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnombook", - "static_url": "https://poa.st/emoji/custom/revblobfoxnombook.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnombook.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnombread", - "static_url": "https://poa.st/emoji/custom/revblobfoxnombread.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnombread.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnomburger", - "static_url": "https://poa.st/emoji/custom/revblobfoxnomburger.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnomburger.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnomcookie", - "static_url": "https://poa.st/emoji/custom/revblobfoxnomcookie.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnomcookie.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnomcroutons", - "static_url": "https://poa.st/emoji/custom/revblobfoxnomcroutons.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnomcroutons.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnomhotdog", - "static_url": "https://poa.st/emoji/custom/revblobfoxnomhotdog.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnomhotdog.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnompizza", - "static_url": "https://poa.st/emoji/custom/revblobfoxnompizza.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnompizza.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnomshoe", - "static_url": "https://poa.st/emoji/custom/revblobfoxnomshoe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnomshoe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnotamused", - "static_url": "https://poa.st/emoji/custom/revblobfoxnotamused.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnotamused.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxnotlikethis", - "static_url": "https://poa.st/emoji/custom/revblobfoxnotlikethis.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxnotlikethis.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxo_o", - "static_url": "https://poa.st/emoji/custom/revblobfoxo_o.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxo_o.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxonepunch", - "static_url": "https://poa.st/emoji/custom/revblobfoxonepunch.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxonepunch.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxoutage", - "static_url": "https://poa.st/emoji/custom/revblobfoxoutage.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxoutage.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxowonotice", - "static_url": "https://poa.st/emoji/custom/revblobfoxowonotice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxowonotice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpat", - "static_url": "https://poa.st/emoji/custom/revblobfoxpat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpatdeny", - "static_url": "https://poa.st/emoji/custom/revblobfoxpatdeny.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpatdeny.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpatneutral", - "static_url": "https://poa.st/emoji/custom/revblobfoxpatneutral.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpatneutral.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpatsad", - "static_url": "https://poa.st/emoji/custom/revblobfoxpatsad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpatsad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpeek", - "static_url": "https://poa.st/emoji/custom/revblobfoxpeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpeekcomfy", - "static_url": "https://poa.st/emoji/custom/revblobfoxpeekcomfy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpeekcomfy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpeekknife", - "static_url": "https://poa.st/emoji/custom/revblobfoxpeekknife.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpeekknife.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpeekowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxpeekowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpeekowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpeekpolice", - "static_url": "https://poa.st/emoji/custom/revblobfoxpeekpolice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpeekpolice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpirate", - "static_url": "https://poa.st/emoji/custom/revblobfoxpirate.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpirate.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpleading", - "static_url": "https://poa.st/emoji/custom/revblobfoxpleading.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpleading.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxpolice", - "static_url": "https://poa.st/emoji/custom/revblobfoxpolice.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxpolice.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxreach", - "static_url": "https://poa.st/emoji/custom/revblobfoxreach.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxreach.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxread", - "static_url": "https://poa.st/emoji/custom/revblobfoxread.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxread.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsad", - "static_url": "https://poa.st/emoji/custom/revblobfoxsad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxshocked", - "static_url": "https://poa.st/emoji/custom/revblobfoxshocked.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxshocked.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxshy", - "static_url": "https://poa.st/emoji/custom/revblobfoxshy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxshy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsip", - "static_url": "https://poa.st/emoji/custom/revblobfoxsip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsipglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxsipglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsipglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsipowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxsipowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsipowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsipsmug", - "static_url": "https://poa.st/emoji/custom/revblobfoxsipsmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsipsmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsipterrified", - "static_url": "https://poa.st/emoji/custom/revblobfoxsipterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsipterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsleep", - "static_url": "https://poa.st/emoji/custom/revblobfoxsleep.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsleep.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsmirk", - "static_url": "https://poa.st/emoji/custom/revblobfoxsmirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsmirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsmug", - "static_url": "https://poa.st/emoji/custom/revblobfoxsmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsnug", - "static_url": "https://poa.st/emoji/custom/revblobfoxsnug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsnug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsnugglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxsnugglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsnugglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsnuggle", - "static_url": "https://poa.st/emoji/custom/revblobfoxsnuggle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsnuggle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsnugowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxsnugowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsnugowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsnugterrified", - "static_url": "https://poa.st/emoji/custom/revblobfoxsnugterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsnugterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxstabbed", - "static_url": "https://poa.st/emoji/custom/revblobfoxstabbed.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxstabbed.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxsurprised", - "static_url": "https://poa.st/emoji/custom/revblobfoxsurprised.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxsurprised.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxtableflip", - "static_url": "https://poa.st/emoji/custom/revblobfoxtableflip.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxtableflip.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxtea", - "static_url": "https://poa.st/emoji/custom/revblobfoxtea.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxtea.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxtea_w_", - "static_url": "https://poa.st/emoji/custom/revblobfoxtea_w_.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxtea_w_.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxteaglare", - "static_url": "https://poa.st/emoji/custom/revblobfoxteaglare.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxteaglare.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxteaowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxteaowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxteaowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxterrified", - "static_url": "https://poa.st/emoji/custom/revblobfoxterrified.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxterrified.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthief", - "static_url": "https://poa.st/emoji/custom/revblobfoxthief.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthief.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthink", - "static_url": "https://poa.st/emoji/custom/revblobfoxthink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthinkanime", - "static_url": "https://poa.st/emoji/custom/revblobfoxthinkanime.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthinkanime.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthinking", - "static_url": "https://poa.st/emoji/custom/revblobfoxthinking.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthinking.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthinkowo", - "static_url": "https://poa.st/emoji/custom/revblobfoxthinkowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthinkowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthinksmart", - "static_url": "https://poa.st/emoji/stolen/revblobfoxthinksmart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/revblobfoxthinksmart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthinksmirk", - "static_url": "https://poa.st/emoji/custom/revblobfoxthinksmirk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthinksmirk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthisisfine", - "static_url": "https://poa.st/emoji/custom/revblobfoxthisisfine.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthisisfine.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxthonking", - "static_url": "https://poa.st/emoji/custom/revblobfoxthonking.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxthonking.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxtsundere", - "static_url": "https://poa.st/emoji/custom/revblobfoxtsundere.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxtsundere.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxupset", - "static_url": "https://poa.st/emoji/custom/revblobfoxupset.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxupset.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxuwu", - "static_url": "https://poa.st/emoji/custom/revblobfoxuwu.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxuwu.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxwashingmachine", - "static_url": "https://poa.st/emoji/custom/revblobfoxwashingmachine.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxwashingmachine.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxwater", - "static_url": "https://poa.st/emoji/custom/revblobfoxwater.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxwater.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxwink", - "static_url": "https://poa.st/emoji/custom/revblobfoxwink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxwink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxwinkmlem", - "static_url": "https://poa.st/emoji/custom/revblobfoxwinkmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxwinkmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxworried", - "static_url": "https://poa.st/emoji/custom/revblobfoxworried.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxworried.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxyandere", - "static_url": "https://poa.st/emoji/custom/revblobfoxyandere.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxyandere.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxyoshieat", - "static_url": "https://poa.st/emoji/custom/revblobfoxyoshieat.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxyoshieat.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revblobfoxyoshieatpixel", - "static_url": "https://poa.st/emoji/custom/revblobfoxyoshieatpixel.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revblobfoxyoshieatpixel.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhd", - "static_url": "https://poa.st/emoji/custom/revbunhd.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhd.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdangry", - "static_url": "https://poa.st/emoji/custom/revbunhdangry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdangry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdaww", - "static_url": "https://poa.st/emoji/custom/revbunhdaww.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdaww.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdcomfy", - "static_url": "https://poa.st/emoji/custom/revbunhdcomfy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdcomfy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdcomfyhappy", - "static_url": "https://poa.st/emoji/custom/revbunhdcomfyhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdcomfyhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdcomfyidle", - "static_url": "https://poa.st/emoji/custom/revbunhdcomfyidle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdcomfyidle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdcry", - "static_url": "https://poa.st/emoji/custom/revbunhdcry.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdcry.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdgoogly", - "static_url": "https://poa.st/emoji/custom/revbunhdgoogly.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdgoogly.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdgrumpy", - "static_url": "https://poa.st/emoji/custom/revbunhdgrumpy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdgrumpy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdhappy", - "static_url": "https://poa.st/emoji/custom/revbunhdhappy.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdhappy.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdheart", - "static_url": "https://poa.st/emoji/custom/revbunhdheart.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdheart.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdidle", - "static_url": "https://poa.st/emoji/custom/revbunhdidle.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdidle.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdknife", - "static_url": "https://poa.st/emoji/custom/revbunhdknife.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdknife.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdlurk", - "static_url": "https://poa.st/emoji/custom/revbunhdlurk.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdlurk.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdlurkaww", - "static_url": "https://poa.st/emoji/custom/revbunhdlurkaww.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdlurkaww.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdmlem", - "static_url": "https://poa.st/emoji/custom/revbunhdmlem.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdmlem.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdowo", - "static_url": "https://poa.st/emoji/custom/revbunhdowo.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdowo.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdpeek", - "static_url": "https://poa.st/emoji/custom/revbunhdpeek.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdpeek.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdprelurkcofe", - "static_url": "https://poa.st/emoji/custom/revbunhdprelurkcofe.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdprelurkcofe.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdprelurkcroutons", - "static_url": "https://poa.st/emoji/custom/revbunhdprelurkcroutons.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdprelurkcroutons.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdprelurkdonut", - "static_url": "https://poa.st/emoji/custom/revbunhdprelurkdonut.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdprelurkdonut.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdsad", - "static_url": "https://poa.st/emoji/custom/revbunhdsad.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdsad.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdsmug", - "static_url": "https://poa.st/emoji/custom/revbunhdsmug.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdsmug.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdthink", - "static_url": "https://poa.st/emoji/custom/revbunhdthink.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdthink.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhdthinking", - "static_url": "https://poa.st/emoji/custom/revbunhdthinking.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhdthinking.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "revbunhduwu", - "static_url": "https://poa.st/emoji/custom/revbunhduwu.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/revbunhduwu.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "reverseaburgnom", @@ -112365,1206 +68330,6 @@ "url": "https://poa.st/emoji/custom/roo_santa_yay.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "room_direction_1", - "static_url": "https://poa.st/emoji/custom/room_direction_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_2", - "static_url": "https://poa.st/emoji/custom/room_direction_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_3", - "static_url": "https://poa.st/emoji/custom/room_direction_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_4", - "static_url": "https://poa.st/emoji/custom/room_direction_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_5", - "static_url": "https://poa.st/emoji/custom/room_direction_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_6", - "static_url": "https://poa.st/emoji/custom/room_direction_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_7", - "static_url": "https://poa.st/emoji/custom/room_direction_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_direction_8", - "static_url": "https://poa.st/emoji/custom/room_direction_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_direction_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_a_1", - "static_url": "https://poa.st/emoji/custom/room_door_a_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_a_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_a_2", - "static_url": "https://poa.st/emoji/custom/room_door_a_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_a_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_a_3", - "static_url": "https://poa.st/emoji/custom/room_door_a_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_a_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_a_4", - "static_url": "https://poa.st/emoji/custom/room_door_a_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_a_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_1", - "static_url": "https://poa.st/emoji/custom/room_door_b_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_2", - "static_url": "https://poa.st/emoji/custom/room_door_b_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_3", - "static_url": "https://poa.st/emoji/custom/room_door_b_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_4", - "static_url": "https://poa.st/emoji/custom/room_door_b_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_5", - "static_url": "https://poa.st/emoji/custom/room_door_b_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_6", - "static_url": "https://poa.st/emoji/custom/room_door_b_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_7", - "static_url": "https://poa.st/emoji/custom/room_door_b_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_b_8", - "static_url": "https://poa.st/emoji/custom/room_door_b_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_b_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_c_1", - "static_url": "https://poa.st/emoji/custom/room_door_c_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_c_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_c_2", - "static_url": "https://poa.st/emoji/custom/room_door_c_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_c_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_d_1", - "static_url": "https://poa.st/emoji/custom/room_door_d_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_d_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_d_2", - "static_url": "https://poa.st/emoji/custom/room_door_d_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_d_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_1", - "static_url": "https://poa.st/emoji/custom/room_door_e_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_2", - "static_url": "https://poa.st/emoji/custom/room_door_e_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_3", - "static_url": "https://poa.st/emoji/custom/room_door_e_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_4", - "static_url": "https://poa.st/emoji/custom/room_door_e_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_5", - "static_url": "https://poa.st/emoji/custom/room_door_e_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_6", - "static_url": "https://poa.st/emoji/custom/room_door_e_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_7", - "static_url": "https://poa.st/emoji/custom/room_door_e_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_e_8", - "static_url": "https://poa.st/emoji/custom/room_door_e_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_e_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_g_1", - "static_url": "https://poa.st/emoji/custom/room_door_g_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_g_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_g_2", - "static_url": "https://poa.st/emoji/custom/room_door_g_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_g_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_g_3", - "static_url": "https://poa.st/emoji/custom/room_door_g_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_g_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_g_4", - "static_url": "https://poa.st/emoji/custom/room_door_g_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_g_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_1", - "static_url": "https://poa.st/emoji/custom/room_door_h_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_2", - "static_url": "https://poa.st/emoji/custom/room_door_h_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_3", - "static_url": "https://poa.st/emoji/custom/room_door_h_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_4", - "static_url": "https://poa.st/emoji/custom/room_door_h_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_5", - "static_url": "https://poa.st/emoji/custom/room_door_h_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_6", - "static_url": "https://poa.st/emoji/custom/room_door_h_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_7", - "static_url": "https://poa.st/emoji/custom/room_door_h_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_h_8", - "static_url": "https://poa.st/emoji/custom/room_door_h_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_h_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_i_1", - "static_url": "https://poa.st/emoji/custom/room_door_i_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_i_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_i_2", - "static_url": "https://poa.st/emoji/custom/room_door_i_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_i_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_i_3", - "static_url": "https://poa.st/emoji/custom/room_door_i_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_i_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_i_4", - "static_url": "https://poa.st/emoji/custom/room_door_i_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_i_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_1", - "static_url": "https://poa.st/emoji/custom/room_door_j_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_2", - "static_url": "https://poa.st/emoji/custom/room_door_j_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_3", - "static_url": "https://poa.st/emoji/custom/room_door_j_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_4", - "static_url": "https://poa.st/emoji/custom/room_door_j_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_5", - "static_url": "https://poa.st/emoji/custom/room_door_j_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_6", - "static_url": "https://poa.st/emoji/custom/room_door_j_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_7", - "static_url": "https://poa.st/emoji/custom/room_door_j_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_door_j_8", - "static_url": "https://poa.st/emoji/custom/room_door_j_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_door_j_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_elevator_1", - "static_url": "https://poa.st/emoji/custom/room_elevator_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_elevator_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_elevator_2", - "static_url": "https://poa.st/emoji/custom/room_elevator_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_elevator_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_elevator_3", - "static_url": "https://poa.st/emoji/custom/room_elevator_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_elevator_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_elevator_4", - "static_url": "https://poa.st/emoji/custom/room_elevator_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_elevator_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_fox_a_1", - "static_url": "https://poa.st/emoji/custom/room_fox_a_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_fox_a_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_fox_a_2", - "static_url": "https://poa.st/emoji/custom/room_fox_a_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_fox_a_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_fox_a_3", - "static_url": "https://poa.st/emoji/custom/room_fox_a_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_fox_a_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_fox_a_4", - "static_url": "https://poa.st/emoji/custom/room_fox_a_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_fox_a_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_1", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_2", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_3", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_4", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_5", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_6", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_7", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_mystery_a_8", - "static_url": "https://poa.st/emoji/custom/room_mystery_a_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_mystery_a_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_space_1", - "static_url": "https://poa.st/emoji/custom/room_space_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_space_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_toilet_a_1", - "static_url": "https://poa.st/emoji/custom/room_toilet_a_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_toilet_a_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_toilet_a_2", - "static_url": "https://poa.st/emoji/custom/room_toilet_a_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_toilet_a_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_toilet_a_3", - "static_url": "https://poa.st/emoji/custom/room_toilet_a_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_toilet_a_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_toilet_a_4", - "static_url": "https://poa.st/emoji/custom/room_toilet_a_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_toilet_a_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_urinal_1", - "static_url": "https://poa.st/emoji/custom/room_urinal_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_urinal_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_urinal_2", - "static_url": "https://poa.st/emoji/custom/room_urinal_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_urinal_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_urinal_3", - "static_url": "https://poa.st/emoji/custom/room_urinal_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_urinal_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_urinal_4", - "static_url": "https://poa.st/emoji/custom/room_urinal_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_urinal_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_a_1", - "static_url": "https://poa.st/emoji/custom/room_wall_a_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_a_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_a_2", - "static_url": "https://poa.st/emoji/custom/room_wall_a_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_a_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_a_3", - "static_url": "https://poa.st/emoji/custom/room_wall_a_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_a_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_a_4", - "static_url": "https://poa.st/emoji/custom/room_wall_a_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_a_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_b_1", - "static_url": "https://poa.st/emoji/custom/room_wall_b_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_b_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_b_2", - "static_url": "https://poa.st/emoji/custom/room_wall_b_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_b_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_b_3", - "static_url": "https://poa.st/emoji/custom/room_wall_b_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_b_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_b_4", - "static_url": "https://poa.st/emoji/custom/room_wall_b_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_b_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_c_1", - "static_url": "https://poa.st/emoji/custom/room_wall_c_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_c_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_c_2", - "static_url": "https://poa.st/emoji/custom/room_wall_c_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_c_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_d_1", - "static_url": "https://poa.st/emoji/custom/room_wall_d_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_d_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_d_2", - "static_url": "https://poa.st/emoji/custom/room_wall_d_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_d_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_d_3", - "static_url": "https://poa.st/emoji/custom/room_wall_d_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_d_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_d_4", - "static_url": "https://poa.st/emoji/custom/room_wall_d_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_d_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_wall_e_1", - "static_url": "https://poa.st/emoji/custom/room_wall_e_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_wall_e_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_washbasin_1", - "static_url": "https://poa.st/emoji/custom/room_washbasin_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_washbasin_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_washbasin_2", - "static_url": "https://poa.st/emoji/custom/room_washbasin_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_washbasin_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_washbasin_3", - "static_url": "https://poa.st/emoji/custom/room_washbasin_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_washbasin_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_washbasin_4", - "static_url": "https://poa.st/emoji/custom/room_washbasin_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_washbasin_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_a_1", - "static_url": "https://poa.st/emoji/custom/room_window_a_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_a_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_a_2", - "static_url": "https://poa.st/emoji/custom/room_window_a_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_a_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_a_3", - "static_url": "https://poa.st/emoji/custom/room_window_a_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_a_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_a_4", - "static_url": "https://poa.st/emoji/custom/room_window_a_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_a_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_1", - "static_url": "https://poa.st/emoji/custom/room_window_b_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_2", - "static_url": "https://poa.st/emoji/custom/room_window_b_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_3", - "static_url": "https://poa.st/emoji/custom/room_window_b_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_4", - "static_url": "https://poa.st/emoji/custom/room_window_b_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_5", - "static_url": "https://poa.st/emoji/custom/room_window_b_5.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_5.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_6", - "static_url": "https://poa.st/emoji/custom/room_window_b_6.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_6.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_7", - "static_url": "https://poa.st/emoji/custom/room_window_b_7.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_7.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_b_8", - "static_url": "https://poa.st/emoji/custom/room_window_b_8.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_b_8.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_c_1", - "static_url": "https://poa.st/emoji/custom/room_window_c_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_c_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_c_2", - "static_url": "https://poa.st/emoji/custom/room_window_c_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_c_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_c_3", - "static_url": "https://poa.st/emoji/custom/room_window_c_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_c_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_c_4", - "static_url": "https://poa.st/emoji/custom/room_window_c_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_c_4.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_d_1", - "static_url": "https://poa.st/emoji/custom/room_window_d_1.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_d_1.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_d_2", - "static_url": "https://poa.st/emoji/custom/room_window_d_2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_d_2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_d_3", - "static_url": "https://poa.st/emoji/custom/room_window_d_3.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_d_3.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "room_window_d_4", - "static_url": "https://poa.st/emoji/custom/room_window_d_4.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/room_window_d_4.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "rooster", @@ -119575,236 +74340,6 @@ "url": "https://poa.st/emoji/custom/smash.gif", "visible_in_picker": true }, - { - "category": "", - "shortcode": "smb3_redshell", - "static_url": "https://poa.st/emoji/custom/smb3_redshell.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb3_redshell.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_a", - "static_url": "https://poa.st/emoji/custom/smb64_a.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_a.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_b", - "static_url": "https://poa.st/emoji/custom/smb64_b.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_b.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_c", - "static_url": "https://poa.st/emoji/custom/smb64_c.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_c.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_d", - "static_url": "https://poa.st/emoji/custom/smb64_d.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_d.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_e", - "static_url": "https://poa.st/emoji/custom/smb64_e.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_e.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_f", - "static_url": "https://poa.st/emoji/custom/smb64_f.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_f.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_g", - "static_url": "https://poa.st/emoji/custom/smb64_g.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_g.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_h", - "static_url": "https://poa.st/emoji/custom/smb64_h.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_h.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_i", - "static_url": "https://poa.st/emoji/custom/smb64_i.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_i.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_l", - "static_url": "https://poa.st/emoji/custom/smb64_l.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_l.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_m", - "static_url": "https://poa.st/emoji/custom/smb64_m.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_m.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_n", - "static_url": "https://poa.st/emoji/custom/smb64_n.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_n.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_o", - "static_url": "https://poa.st/emoji/custom/smb64_o.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_o.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_r", - "static_url": "https://poa.st/emoji/custom/smb64_r.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_r.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_s", - "static_url": "https://poa.st/emoji/custom/smb64_s.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_s.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_t", - "static_url": "https://poa.st/emoji/custom/smb64_t.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_t.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb64_y", - "static_url": "https://poa.st/emoji/custom/smb64_y.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb64_y.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smb_brick2", - "static_url": "https://poa.st/emoji/custom/smb_brick2.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smb_brick2.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smbblock", - "static_url": "https://poa.st/emoji/custom/smbblock.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smbblock.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smbground", - "static_url": "https://poa.st/emoji/custom/smbground.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smbground.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smile", - "static_url": "https://poa.st/emoji/custom/smile.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/custom/smile.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "smileAkko", - "static_url": "https://poa.st/emoji/stolen/smileAkko.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/smileAkko.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "smileVarg", @@ -132745,1006 +87280,6 @@ "url": "https://poa.st/emoji/stolen/zt_wave.png", "visible_in_picker": true }, - { - "category": "", - "shortcode": "zz00", - "static_url": "https://poa.st/emoji/stolen/zz00.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz00.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz01", - "static_url": "https://poa.st/emoji/stolen/zz01.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz01.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz02", - "static_url": "https://poa.st/emoji/stolen/zz02.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz02.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz03", - "static_url": "https://poa.st/emoji/stolen/zz03.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz03.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz04", - "static_url": "https://poa.st/emoji/stolen/zz04.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz04.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz05", - "static_url": "https://poa.st/emoji/stolen/zz05.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz05.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz06", - "static_url": "https://poa.st/emoji/stolen/zz06.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz06.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz07", - "static_url": "https://poa.st/emoji/stolen/zz07.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz07.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz08", - "static_url": "https://poa.st/emoji/stolen/zz08.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz08.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz09", - "static_url": "https://poa.st/emoji/stolen/zz09.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz09.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz10", - "static_url": "https://poa.st/emoji/stolen/zz10.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz10.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz11", - "static_url": "https://poa.st/emoji/stolen/zz11.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz11.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz12", - "static_url": "https://poa.st/emoji/stolen/zz12.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz12.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz13", - "static_url": "https://poa.st/emoji/stolen/zz13.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz13.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz14", - "static_url": "https://poa.st/emoji/stolen/zz14.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz14.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz15", - "static_url": "https://poa.st/emoji/stolen/zz15.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz15.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz16", - "static_url": "https://poa.st/emoji/stolen/zz16.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz16.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz17", - "static_url": "https://poa.st/emoji/stolen/zz17.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz17.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz18", - "static_url": "https://poa.st/emoji/stolen/zz18.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz18.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz19", - "static_url": "https://poa.st/emoji/stolen/zz19.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz19.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz20", - "static_url": "https://poa.st/emoji/stolen/zz20.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz20.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz21", - "static_url": "https://poa.st/emoji/stolen/zz21.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz21.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz22", - "static_url": "https://poa.st/emoji/stolen/zz22.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz22.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz23", - "static_url": "https://poa.st/emoji/stolen/zz23.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz23.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz24", - "static_url": "https://poa.st/emoji/stolen/zz24.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz24.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz25", - "static_url": "https://poa.st/emoji/stolen/zz25.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz25.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz26", - "static_url": "https://poa.st/emoji/stolen/zz26.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz26.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz27", - "static_url": "https://poa.st/emoji/stolen/zz27.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz27.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz28", - "static_url": "https://poa.st/emoji/stolen/zz28.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz28.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz29", - "static_url": "https://poa.st/emoji/stolen/zz29.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz29.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz30", - "static_url": "https://poa.st/emoji/stolen/zz30.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz30.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz31", - "static_url": "https://poa.st/emoji/stolen/zz31.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz31.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz32", - "static_url": "https://poa.st/emoji/stolen/zz32.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz32.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz33", - "static_url": "https://poa.st/emoji/stolen/zz33.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz33.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz34", - "static_url": "https://poa.st/emoji/stolen/zz34.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz34.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz35", - "static_url": "https://poa.st/emoji/stolen/zz35.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz35.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz36", - "static_url": "https://poa.st/emoji/stolen/zz36.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz36.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz37", - "static_url": "https://poa.st/emoji/stolen/zz37.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz37.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz38", - "static_url": "https://poa.st/emoji/stolen/zz38.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz38.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz39", - "static_url": "https://poa.st/emoji/stolen/zz39.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz39.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz40", - "static_url": "https://poa.st/emoji/stolen/zz40.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz40.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz41", - "static_url": "https://poa.st/emoji/stolen/zz41.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz41.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz42", - "static_url": "https://poa.st/emoji/stolen/zz42.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz42.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz43", - "static_url": "https://poa.st/emoji/stolen/zz43.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz43.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz44", - "static_url": "https://poa.st/emoji/stolen/zz44.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz44.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz45", - "static_url": "https://poa.st/emoji/stolen/zz45.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz45.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz46", - "static_url": "https://poa.st/emoji/stolen/zz46.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz46.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz47", - "static_url": "https://poa.st/emoji/stolen/zz47.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz47.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz48", - "static_url": "https://poa.st/emoji/stolen/zz48.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz48.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz49", - "static_url": "https://poa.st/emoji/stolen/zz49.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz49.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz50", - "static_url": "https://poa.st/emoji/stolen/zz50.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz50.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz51", - "static_url": "https://poa.st/emoji/stolen/zz51.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz51.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz52", - "static_url": "https://poa.st/emoji/stolen/zz52.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz52.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz53", - "static_url": "https://poa.st/emoji/stolen/zz53.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz53.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz54", - "static_url": "https://poa.st/emoji/stolen/zz54.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz54.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz55", - "static_url": "https://poa.st/emoji/stolen/zz55.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz55.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz56", - "static_url": "https://poa.st/emoji/stolen/zz56.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz56.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz57", - "static_url": "https://poa.st/emoji/stolen/zz57.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz57.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz58", - "static_url": "https://poa.st/emoji/stolen/zz58.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz58.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz59", - "static_url": "https://poa.st/emoji/stolen/zz59.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz59.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz60", - "static_url": "https://poa.st/emoji/stolen/zz60.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz60.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz61", - "static_url": "https://poa.st/emoji/stolen/zz61.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz61.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz62", - "static_url": "https://poa.st/emoji/stolen/zz62.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz62.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz63", - "static_url": "https://poa.st/emoji/stolen/zz63.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz63.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz64", - "static_url": "https://poa.st/emoji/stolen/zz64.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz64.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz65", - "static_url": "https://poa.st/emoji/stolen/zz65.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz65.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz66", - "static_url": "https://poa.st/emoji/stolen/zz66.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz66.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz67", - "static_url": "https://poa.st/emoji/stolen/zz67.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz67.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz68", - "static_url": "https://poa.st/emoji/stolen/zz68.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz68.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz69", - "static_url": "https://poa.st/emoji/stolen/zz69.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz69.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz70", - "static_url": "https://poa.st/emoji/stolen/zz70.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz70.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz71", - "static_url": "https://poa.st/emoji/stolen/zz71.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz71.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz72", - "static_url": "https://poa.st/emoji/stolen/zz72.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz72.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz73", - "static_url": "https://poa.st/emoji/stolen/zz73.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz73.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz74", - "static_url": "https://poa.st/emoji/stolen/zz74.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz74.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz75", - "static_url": "https://poa.st/emoji/stolen/zz75.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz75.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz76", - "static_url": "https://poa.st/emoji/stolen/zz76.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz76.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz77", - "static_url": "https://poa.st/emoji/stolen/zz77.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz77.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz78", - "static_url": "https://poa.st/emoji/stolen/zz78.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz78.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz79", - "static_url": "https://poa.st/emoji/stolen/zz79.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz79.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz80", - "static_url": "https://poa.st/emoji/stolen/zz80.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz80.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz81", - "static_url": "https://poa.st/emoji/stolen/zz81.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz81.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz82", - "static_url": "https://poa.st/emoji/stolen/zz82.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz82.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz83", - "static_url": "https://poa.st/emoji/stolen/zz83.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz83.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz84", - "static_url": "https://poa.st/emoji/stolen/zz84.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz84.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz85", - "static_url": "https://poa.st/emoji/stolen/zz85.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz85.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz86", - "static_url": "https://poa.st/emoji/stolen/zz86.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz86.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz87", - "static_url": "https://poa.st/emoji/stolen/zz87.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz87.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz88", - "static_url": "https://poa.st/emoji/stolen/zz88.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz88.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz89", - "static_url": "https://poa.st/emoji/stolen/zz89.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz89.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz90", - "static_url": "https://poa.st/emoji/stolen/zz90.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz90.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz91", - "static_url": "https://poa.st/emoji/stolen/zz91.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz91.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz92", - "static_url": "https://poa.st/emoji/stolen/zz92.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz92.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz93", - "static_url": "https://poa.st/emoji/stolen/zz93.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz93.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz94", - "static_url": "https://poa.st/emoji/stolen/zz94.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz94.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz95", - "static_url": "https://poa.st/emoji/stolen/zz95.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz95.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz96", - "static_url": "https://poa.st/emoji/stolen/zz96.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz96.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz97", - "static_url": "https://poa.st/emoji/stolen/zz97.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz97.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz98", - "static_url": "https://poa.st/emoji/stolen/zz98.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz98.png", - "visible_in_picker": true - }, - { - "category": "", - "shortcode": "zz99", - "static_url": "https://poa.st/emoji/stolen/zz99.png", - "tags": [ - "Custom" - ], - "url": "https://poa.st/emoji/stolen/zz99.png", - "visible_in_picker": true - }, { "category": "", "shortcode": "zzzsushi", @@ -133775,4 +87310,4 @@ "url": "https://poa.st/emoji/stolen/🍆_shake.gif", "visible_in_picker": true } -]}] \ No newline at end of file +] \ No newline at end of file