aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2024-05-02 08:50:59 +0200
committerGitHub <noreply@github.com>2024-05-02 06:50:59 +0000
commit928214518cc2ed44112295c7aae675fc29f5a50b (patch)
tree4b4c13b6206792dd6dff2b4ecd1f0f5d6040b929
parent60613e77c589d736e6ccabc425eab332c44410fb (diff)
downloadservo-928214518cc2ed44112295c7aae675fc29f5a50b.tar.gz
servo-928214518cc2ed44112295c7aae675fc29f5a50b.zip
fonts: Use `FontInstanceFlags::EMBEDDED_BITMAPS` for color fonts on MacOS (#32203)
This flag ensures that these fonts are rendered full color in WebRender, allowing for full color emoji.
-rw-r--r--components/compositing/compositor.rs26
-rw-r--r--components/gfx/font.rs16
-rw-r--r--components/gfx/font_cache_thread.rs38
-rw-r--r--components/gfx/font_context.rs29
-rw-r--r--components/gfx/platform/freetype/font.rs5
-rw-r--r--components/gfx/platform/macos/font.rs15
-rw-r--r--components/gfx/platform/windows/font.rs5
-rw-r--r--components/gfx/tests/font_context.rs3
-rw-r--r--components/servo/lib.rs12
-rw-r--r--components/shared/compositing/lib.rs6
-rw-r--r--components/shared/gfx/lib.rs11
-rw-r--r--tests/html/emoji-list.html343
12 files changed, 471 insertions, 38 deletions
diff --git a/components/compositing/compositor.rs b/components/compositing/compositor.rs
index 2520f9235ab..50b598c86e5 100644
--- a/components/compositing/compositor.rs
+++ b/components/compositing/compositor.rs
@@ -47,9 +47,9 @@ use webrender_api::units::{
};
use webrender_api::{
self, BuiltDisplayList, DirtyRect, DisplayListPayload, DocumentId, Epoch as WebRenderEpoch,
- ExternalScrollId, HitTestFlags, PipelineId as WebRenderPipelineId, PropertyBinding,
- ReferenceFrameKind, RenderReasons, SampledScrollOffset, ScrollLocation, SpaceAndClipInfo,
- SpatialId, SpatialTreeItemKey, TransformStyle,
+ ExternalScrollId, FontInstanceOptions, HitTestFlags, PipelineId as WebRenderPipelineId,
+ PropertyBinding, ReferenceFrameKind, RenderReasons, SampledScrollOffset, ScrollLocation,
+ SpaceAndClipInfo, SpatialId, SpatialTreeItemKey, TransformStyle,
};
use crate::gl::RenderTargetInfo;
@@ -871,13 +871,25 @@ impl<Window: WindowMethods + ?Sized> IOCompositor<Window> {
ForwardedToCompositorMsg::Font(FontToCompositorMsg::AddFontInstance(
font_key,
size,
+ flags,
sender,
)) => {
let key = self.webrender_api.generate_font_instance_key();
- let mut txn = Transaction::new();
- txn.add_font_instance(key, font_key, size, None, None, Vec::new());
+ let mut transaction = Transaction::new();
+
+ let mut font_instance_options = FontInstanceOptions::default();
+ font_instance_options.flags = flags;
+ transaction.add_font_instance(
+ key,
+ font_key,
+ size,
+ Some(font_instance_options),
+ None,
+ Vec::new(),
+ );
+
self.webrender_api
- .send_transaction(self.webrender_document, txn);
+ .send_transaction(self.webrender_document, transaction);
let _ = sender.send(key);
},
@@ -951,7 +963,7 @@ impl<Window: WindowMethods + ?Sized> IOCompositor<Window> {
let _ = sender.send(());
},
CompositorMsg::Forwarded(ForwardedToCompositorMsg::Font(
- FontToCompositorMsg::AddFontInstance(_, _, sender),
+ FontToCompositorMsg::AddFontInstance(_, _, _, sender),
)) => {
let _ = sender.send(self.webrender_api.generate_font_instance_key());
},
diff --git a/components/gfx/font.rs b/components/gfx/font.rs
index 862a11a05dc..65c984ed3cb 100644
--- a/components/gfx/font.rs
+++ b/components/gfx/font.rs
@@ -23,7 +23,7 @@ use style::properties::style_structs::Font as FontStyleStruct;
use style::values::computed::font::{GenericFontFamily, SingleFontFamily};
use style::values::computed::{FontStretch, FontStyle, FontWeight};
use unicode_script::Script;
-use webrender_api::FontInstanceKey;
+use webrender_api::{FontInstanceFlags, FontInstanceKey};
use crate::font_cache_thread::FontIdentifier;
use crate::font_context::{FontContext, FontSource};
@@ -44,6 +44,10 @@ macro_rules! ot_tag {
pub const GPOS: u32 = ot_tag!('G', 'P', 'O', 'S');
pub const GSUB: u32 = ot_tag!('G', 'S', 'U', 'B');
pub const KERN: u32 = ot_tag!('k', 'e', 'r', 'n');
+pub const SBIX: u32 = ot_tag!('s', 'b', 'i', 'x');
+pub const CBDT: u32 = ot_tag!('C', 'B', 'D', 'T');
+pub const COLR: u32 = ot_tag!('C', 'O', 'L', 'R');
+
pub const LAST_RESORT_GLYPH_ADVANCE: FractionalPixel = 10.0;
static TEXT_SHAPING_PERFORMANCE_COUNTER: AtomicUsize = AtomicUsize::new(0);
@@ -83,6 +87,9 @@ pub trait PlatformFontMethods: Sized {
fn can_do_fast_shaping(&self) -> bool;
fn metrics(&self) -> FontMetrics;
fn table_for_tag(&self, _: FontTableTag) -> Option<FontTable>;
+
+ /// Get the necessary [`FontInstanceFlags`]` for this font.
+ fn webrender_font_instance_flags(&self) -> FontInstanceFlags;
}
// Used to abstract over the shaper's choice of fixed int representation.
@@ -195,7 +202,6 @@ impl Font {
pub fn new(
template: FontTemplateRef,
descriptor: FontDescriptor,
- font_key: FontInstanceKey,
synthesized_small_caps: Option<FontRef>,
) -> Result<Font, &'static str> {
let handle = PlatformFont::new_from_template(template.clone(), Some(descriptor.pt_size))?;
@@ -209,7 +215,7 @@ impl Font {
metrics,
shape_cache: RefCell::new(HashMap::new()),
glyph_advance_cache: RefCell::new(HashMap::new()),
- font_key,
+ font_key: FontInstanceKey::default(),
synthesized_small_caps,
})
}
@@ -218,6 +224,10 @@ impl Font {
pub fn identifier(&self) -> FontIdentifier {
self.template.identifier()
}
+
+ pub fn webrender_font_instance_flags(&self) -> FontInstanceFlags {
+ self.handle.webrender_font_instance_flags()
+ }
}
bitflags! {
diff --git a/components/gfx/font_cache_thread.rs b/components/gfx/font_cache_thread.rs
index c46c2b5dde3..5d7d160ca65 100644
--- a/components/gfx/font_cache_thread.rs
+++ b/components/gfx/font_cache_thread.rs
@@ -29,7 +29,7 @@ use style::stylesheets::{Stylesheet, StylesheetInDocument};
use style::values::computed::font::{FixedPoint, FontStyleFixedPoint};
use style::values::computed::{FontStretch, FontWeight};
use style::values::specified::FontStretch as SpecifiedFontStretch;
-use webrender_api::{FontInstanceKey, FontKey};
+use webrender_api::{FontInstanceFlags, FontInstanceKey, FontKey};
use crate::font::{FontDescriptor, FontFamilyDescriptor, FontFamilyName, FontSearchScope};
use crate::font_context::FontSource;
@@ -137,7 +137,12 @@ pub enum Command {
FontFamilyDescriptor,
IpcSender<Vec<SerializedFontTemplate>>,
),
- GetFontInstance(FontIdentifier, Au, IpcSender<FontInstanceKey>),
+ GetFontInstance(
+ FontIdentifier,
+ Au,
+ FontInstanceFlags,
+ IpcSender<FontInstanceKey>,
+ ),
AddWebFont(CSSFontFaceDescriptors, Vec<Source>, IpcSender<()>),
AddDownloadedWebFont(CSSFontFaceDescriptors, ServoUrl, Vec<u8>, IpcSender<()>),
Exit(IpcSender<()>),
@@ -229,8 +234,8 @@ impl FontCache {
let _ = bytes_sender.send(&data);
}
},
- Command::GetFontInstance(identifier, pt_size, result) => {
- let _ = result.send(self.get_font_instance(identifier, pt_size));
+ Command::GetFontInstance(identifier, pt_size, flags, result) => {
+ let _ = result.send(self.get_font_instance(identifier, pt_size, flags));
},
Command::AddWebFont(css_font_face_descriptors, sources, result) => {
self.handle_add_web_font(css_font_face_descriptors, sources, result);
@@ -436,7 +441,12 @@ impl FontCache {
self.find_templates_in_local_family(descriptor_to_match, &family_descriptor.name)
}
- fn get_font_instance(&mut self, identifier: FontIdentifier, pt_size: Au) -> FontInstanceKey {
+ fn get_font_instance(
+ &mut self,
+ identifier: FontIdentifier,
+ pt_size: Au,
+ flags: FontInstanceFlags,
+ ) -> FontInstanceKey {
let webrender_api = &self.webrender_api;
let webrender_fonts = &mut self.webrender_fonts;
let font_data = self
@@ -465,7 +475,9 @@ impl FontCache {
*self
.font_instances
.entry((font_key, pt_size))
- .or_insert_with(|| webrender_api.add_font_instance(font_key, pt_size.to_f32_px()))
+ .or_insert_with(|| {
+ webrender_api.add_font_instance(font_key, pt_size.to_f32_px(), flags)
+ })
}
}
@@ -661,10 +673,20 @@ impl FontCacheThread {
}
impl FontSource for FontCacheThread {
- fn get_font_instance(&mut self, identifier: FontIdentifier, size: Au) -> FontInstanceKey {
+ fn get_font_instance(
+ &mut self,
+ identifier: FontIdentifier,
+ size: Au,
+ flags: FontInstanceFlags,
+ ) -> FontInstanceKey {
let (response_chan, response_port) = ipc::channel().expect("failed to create IPC channel");
self.chan
- .send(Command::GetFontInstance(identifier, size, response_chan))
+ .send(Command::GetFontInstance(
+ identifier,
+ size,
+ flags,
+ response_chan,
+ ))
.expect("failed to send message to font cache thread");
let instance_key = response_port.recv();
diff --git a/components/gfx/font_context.rs b/components/gfx/font_context.rs
index abe00db4977..b831fc916cd 100644
--- a/components/gfx/font_context.rs
+++ b/components/gfx/font_context.rs
@@ -15,7 +15,7 @@ use log::debug;
use servo_arc::Arc;
use style::computed_values::font_variant_caps::T as FontVariantCaps;
use style::properties::style_structs::Font as FontStyleStruct;
-use webrender_api::FontInstanceKey;
+use webrender_api::{FontInstanceFlags, FontInstanceKey};
use crate::font::{Font, FontDescriptor, FontFamilyDescriptor, FontGroup, FontRef};
use crate::font_cache_thread::FontIdentifier;
@@ -30,7 +30,12 @@ static SMALL_CAPS_SCALE_FACTOR: f32 = 0.8; // Matches FireFox (see gfxFont.h)
static FONT_CACHE_EPOCH: AtomicUsize = AtomicUsize::new(0);
pub trait FontSource {
- fn get_font_instance(&mut self, font_identifier: FontIdentifier, size: Au) -> FontInstanceKey;
+ fn get_font_instance(
+ &mut self,
+ font_identifier: FontIdentifier,
+ size: Au,
+ flags: FontInstanceFlags,
+ ) -> FontInstanceKey;
fn find_matching_font_templates(
&mut self,
descriptor_to_match: &FontDescriptor,
@@ -206,16 +211,18 @@ impl<S: FontSource> FontContext<S> {
font_descriptor: FontDescriptor,
synthesized_small_caps: Option<FontRef>,
) -> Result<FontRef, &'static str> {
- let font_instance_key = self
- .font_source
- .get_font_instance(font_template.identifier(), font_descriptor.pt_size);
-
- Ok(Rc::new(RefCell::new(Font::new(
- font_template,
- font_descriptor,
- font_instance_key,
+ let mut font = Font::new(
+ font_template.clone(),
+ font_descriptor.clone(),
synthesized_small_caps,
- )?)))
+ )?;
+ font.font_key = self.font_source.get_font_instance(
+ font_template.identifier(),
+ font_descriptor.pt_size,
+ font.webrender_font_instance_flags(),
+ );
+
+ Ok(Rc::new(RefCell::new(font)))
}
}
diff --git a/components/gfx/platform/freetype/font.rs b/components/gfx/platform/freetype/font.rs
index 82e451a17f7..33bd7be0aa0 100644
--- a/components/gfx/platform/freetype/font.rs
+++ b/components/gfx/platform/freetype/font.rs
@@ -20,6 +20,7 @@ use log::debug;
use style::computed_values::font_stretch::T as FontStretch;
use style::computed_values::font_weight::T as FontWeight;
use style::values::computed::font::FontStyle;
+use webrender_api::FontInstanceFlags;
use super::library_handle::FreeTypeLibraryHandle;
use crate::font::{
@@ -313,6 +314,10 @@ impl PlatformFontMethods for PlatformFont {
Some(FontTable { buffer: buf })
}
}
+
+ fn webrender_font_instance_flags(&self) -> FontInstanceFlags {
+ FontInstanceFlags::empty()
+ }
}
impl<'a> PlatformFont {
diff --git a/components/gfx/platform/macos/font.rs b/components/gfx/platform/macos/font.rs
index dcb5d08f6a9..7844ecb9089 100644
--- a/components/gfx/platform/macos/font.rs
+++ b/components/gfx/platform/macos/font.rs
@@ -19,11 +19,12 @@ use core_text::font_descriptor::{
};
use log::debug;
use style::values::computed::font::{FontStretch, FontStyle, FontWeight};
+use webrender_api::FontInstanceFlags;
use super::core_text_font_cache::CoreTextFontCache;
use crate::font::{
map_platform_values_to_style_values, FontMetrics, FontTableMethods, FontTableTag,
- FractionalPixel, PlatformFontMethods, GPOS, GSUB, KERN,
+ FractionalPixel, PlatformFontMethods, CBDT, COLR, GPOS, GSUB, KERN, SBIX,
};
use crate::font_cache_thread::FontIdentifier;
use crate::font_template::FontTemplateDescriptor;
@@ -298,6 +299,18 @@ impl PlatformFontMethods for PlatformFont {
let result: Option<CFData> = self.ctfont.get_font_table(tag);
result.map(FontTable::wrap)
}
+
+ /// Get the necessary [`FontInstanceFlags`]` for this font.
+ fn webrender_font_instance_flags(&self) -> FontInstanceFlags {
+ // TODO: Should this also validate these tables?
+ if self.table_for_tag(COLR).is_some() ||
+ self.table_for_tag(CBDT).is_some() ||
+ self.table_for_tag(SBIX).is_some()
+ {
+ return FontInstanceFlags::EMBEDDED_BITMAPS;
+ }
+ FontInstanceFlags::empty()
+ }
}
pub(super) trait CoreTextFontTraitsMapping {
diff --git a/components/gfx/platform/windows/font.rs b/components/gfx/platform/windows/font.rs
index 44300da9d5f..ce28d0f378b 100644
--- a/components/gfx/platform/windows/font.rs
+++ b/components/gfx/platform/windows/font.rs
@@ -20,6 +20,7 @@ use style::computed_values::font_weight::T as StyleFontWeight;
use style::values::computed::font::FontStyle as StyleFontStyle;
use truetype::tables::WindowsMetrics;
use truetype::value::Read;
+use webrender_api::FontInstanceFlags;
use crate::font::{
FontMetrics, FontTableMethods, FontTableTag, FractionalPixel, PlatformFontMethods,
@@ -254,4 +255,8 @@ impl PlatformFontMethods for PlatformFont {
.get_font_table(tag)
.map(|bytes| FontTable { data: bytes })
}
+
+ fn webrender_font_instance_flags(&self) -> FontInstanceFlags {
+ FontInstanceFlags::empty()
+ }
}
diff --git a/components/gfx/tests/font_context.rs b/components/gfx/tests/font_context.rs
index c16f26339dc..f502b7d97fe 100644
--- a/components/gfx/tests/font_context.rs
+++ b/components/gfx/tests/font_context.rs
@@ -27,7 +27,7 @@ use style::values::computed::font::{
};
use style::values::computed::{FontLanguageOverride, XLang};
use style::values::generics::font::LineHeight;
-use webrender_api::{FontInstanceKey, IdNamespace};
+use webrender_api::{FontInstanceFlags, FontInstanceKey, IdNamespace};
struct TestFontSource {
families: HashMap<String, FontTemplates>,
@@ -92,6 +92,7 @@ impl FontSource for TestFontSource {
&mut self,
_font_identifier: FontIdentifier,
_size: Au,
+ _flags: FontInstanceFlags,
) -> FontInstanceKey {
FontInstanceKey(IdNamespace(0), 0)
}
diff --git a/components/servo/lib.rs b/components/servo/lib.rs
index 9a2fa92e70a..a638c2942ab 100644
--- a/components/servo/lib.rs
+++ b/components/servo/lib.rs
@@ -90,7 +90,8 @@ use surfman::{GLApi, GLVersion};
use surfman::{NativeConnection, NativeContext};
use webrender::{RenderApiSender, ShaderPrecacheFlags};
use webrender_api::{
- ColorF, DocumentId, FontInstanceKey, FontKey, FramePublishId, ImageKey, NativeFontHandle,
+ ColorF, DocumentId, FontInstanceFlags, FontInstanceKey, FontKey, FramePublishId, ImageKey,
+ NativeFontHandle,
};
use webrender_traits::{
WebrenderExternalImageHandlers, WebrenderExternalImageRegistry, WebrenderImageHandlerType,
@@ -1043,12 +1044,17 @@ fn create_constellation(
struct FontCacheWR(CompositorProxy);
impl gfx_traits::WebrenderApi for FontCacheWR {
- fn add_font_instance(&self, font_key: FontKey, size: f32) -> FontInstanceKey {
+ fn add_font_instance(
+ &self,
+ font_key: FontKey,
+ size: f32,
+ flags: FontInstanceFlags,
+ ) -> FontInstanceKey {
let (sender, receiver) = unbounded();
let _ = self
.0
.send(CompositorMsg::Forwarded(ForwardedToCompositorMsg::Font(
- FontToCompositorMsg::AddFontInstance(font_key, size, sender),
+ FontToCompositorMsg::AddFontInstance(font_key, size, flags, sender),
)));
receiver.recv().unwrap()
}
diff --git a/components/shared/compositing/lib.rs b/components/shared/compositing/lib.rs
index 6af096dbbbf..21f77a4cae6 100644
--- a/components/shared/compositing/lib.rs
+++ b/components/shared/compositing/lib.rs
@@ -25,7 +25,9 @@ use script_traits::{
};
use style_traits::CSSPixel;
use webrender_api::units::{DeviceIntPoint, DeviceIntSize, DeviceRect};
-use webrender_api::{self, FontInstanceKey, FontKey, ImageKey, NativeFontHandle};
+use webrender_api::{
+ self, FontInstanceFlags, FontInstanceKey, FontKey, ImageKey, NativeFontHandle,
+};
/// Sends messages to the compositor.
pub struct CompositorProxy {
@@ -139,7 +141,7 @@ pub struct CompositionPipeline {
}
pub enum FontToCompositorMsg {
- AddFontInstance(FontKey, f32, Sender<FontInstanceKey>),
+ AddFontInstance(FontKey, f32, FontInstanceFlags, Sender<FontInstanceKey>),
AddFont(Sender<FontKey>, u32, ipc_channel::ipc::IpcBytesReceiver),
AddSystemFont(Sender<FontKey>, NativeFontHandle),
}
diff --git a/components/shared/gfx/lib.rs b/components/shared/gfx/lib.rs
index aaf57b5dfb1..2ae2d026fda 100644
--- a/components/shared/gfx/lib.rs
+++ b/components/shared/gfx/lib.rs
@@ -14,7 +14,9 @@ use std::sync::Arc;
use malloc_size_of_derive::MallocSizeOf;
use range::{int_range_index, RangeIndex};
use serde::{Deserialize, Serialize};
-use webrender_api::{Epoch as WebRenderEpoch, FontInstanceKey, FontKey, NativeFontHandle};
+use webrender_api::{
+ Epoch as WebRenderEpoch, FontInstanceFlags, FontInstanceKey, FontKey, NativeFontHandle,
+};
/// A newtype struct for denoting the age of messages; prevents race conditions.
#[derive(Clone, Copy, Debug, Deserialize, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize)]
@@ -121,7 +123,12 @@ pub fn node_id_from_scroll_id(id: usize) -> Option<usize> {
}
pub trait WebrenderApi {
- fn add_font_instance(&self, font_key: FontKey, size: f32) -> FontInstanceKey;
+ fn add_font_instance(
+ &self,
+ font_key: FontKey,
+ size: f32,
+ flags: FontInstanceFlags,
+ ) -> FontInstanceKey;
fn add_font(&self, data: Arc<Vec<u8>>, index: u32) -> FontKey;
fn add_system_font(&self, handle: NativeFontHandle) -> FontKey;
}
diff --git a/tests/html/emoji-list.html b/tests/html/emoji-list.html
new file mode 100644
index 00000000000..c6746732163
--- /dev/null
+++ b/tests/html/emoji-list.html
@@ -0,0 +1,343 @@
+<!DOCTYPE html>
+
+<html>
+<body>
+
+<h1>List of Emoji</h1>
+<h2>Smileys & People</h2>
+
+<h3>face-positive</h3>
+
+๐Ÿ˜€ ๐Ÿ˜ ๐Ÿ˜‚ ๐Ÿคฃ ๐Ÿ˜ƒ ๐Ÿ˜„ ๐Ÿ˜… ๐Ÿ˜† ๐Ÿ˜‰ ๐Ÿ˜Š ๐Ÿ˜‹ ๐Ÿ˜Ž ๐Ÿ˜ ๐Ÿ˜˜ ๐Ÿฅฐ ๐Ÿ˜— ๐Ÿ˜™ ๐Ÿ˜š โ˜บ๏ธ ๐Ÿ™‚ ๐Ÿค— ๐Ÿคฉ
+
+<h3>face-neutral</h3>
+
+๐Ÿค” ๐Ÿคจ ๐Ÿ˜ ๐Ÿ˜‘ ๐Ÿ˜ถ ๐Ÿ™„ ๐Ÿ˜ ๐Ÿ˜ฃ ๐Ÿ˜ฅ ๐Ÿ˜ฎ ๐Ÿค ๐Ÿ˜ฏ ๐Ÿ˜ช ๐Ÿ˜ซ ๐Ÿ˜ด ๐Ÿ˜Œ ๐Ÿ˜› ๐Ÿ˜œ ๐Ÿ˜ ๐Ÿคค ๐Ÿ˜’ ๐Ÿ˜“ ๐Ÿ˜” ๐Ÿ˜• ๐Ÿ™ƒ ๐Ÿค‘ ๐Ÿ˜ฒ
+
+<h3>face-negative</h3>
+
+โ˜น๏ธ ๐Ÿ™ ๐Ÿ˜– ๐Ÿ˜ž ๐Ÿ˜Ÿ ๐Ÿ˜ค ๐Ÿ˜ข ๐Ÿ˜ญ ๐Ÿ˜ฆ ๐Ÿ˜ง ๐Ÿ˜จ ๐Ÿ˜ฉ ๐Ÿคฏ ๐Ÿ˜ฌ ๐Ÿ˜ฐ ๐Ÿ˜ฑ ๐Ÿฅต ๐Ÿฅถ ๐Ÿ˜ณ ๐Ÿคช ๐Ÿ˜ต ๐Ÿ˜ก ๐Ÿ˜  ๐Ÿคฌ
+
+<h3>face-sick</h3>
+
+๐Ÿ˜ท ๐Ÿค’ ๐Ÿค• ๐Ÿคข ๐Ÿคฎ ๐Ÿคง
+
+<h3>face-role</h3>
+
+๐Ÿ˜‡ ๐Ÿค  ๐Ÿฅณ ๐Ÿฅด ๐Ÿฅบ ๐Ÿคฅ ๐Ÿคซ ๐Ÿคญ ๐Ÿง ๐Ÿค“
+
+<h3>face-fantasy</h3>
+
+๐Ÿ˜ˆ ๐Ÿ‘ฟ ๐Ÿคก ๐Ÿ‘น ๐Ÿ‘บ ๐Ÿ’€ โ˜ ๏ธ ๐Ÿ‘ป ๐Ÿ‘ฝ ๐Ÿ‘พ ๐Ÿค– ๐Ÿ’ฉ
+
+<h3>cat-face</h3>
+
+๐Ÿ˜บ ๐Ÿ˜ธ ๐Ÿ˜น ๐Ÿ˜ป ๐Ÿ˜ผ ๐Ÿ˜ฝ ๐Ÿ™€ ๐Ÿ˜ฟ ๐Ÿ˜พ
+
+<h3>monkey-face</h3>
+
+๐Ÿ™ˆ ๐Ÿ™‰ ๐Ÿ™Š
+
+<h3>skin-tone</h3>
+๐Ÿป ๐Ÿผ ๐Ÿฝ ๐Ÿพ ๐Ÿฟ
+
+<h3>person</h3>
+
+๐Ÿ‘ถ ๐Ÿ‘ถ๐Ÿป ๐Ÿ‘ถ๐Ÿผ ๐Ÿ‘ถ๐Ÿฝ ๐Ÿ‘ถ๐Ÿพ ๐Ÿ‘ถ๐Ÿฟ ๐Ÿง’ ๐Ÿง’๐Ÿป ๐Ÿง’๐Ÿผ ๐Ÿง’๐Ÿฝ ๐Ÿง’๐Ÿพ ๐Ÿง’๐Ÿฟ ๐Ÿ‘ฆ ๐Ÿ‘ฆ๐Ÿป ๐Ÿ‘ฆ๐Ÿผ ๐Ÿ‘ฆ๐Ÿฝ ๐Ÿ‘ฆ๐Ÿพ ๐Ÿ‘ฆ๐Ÿฟ ๐Ÿ‘ง ๐Ÿ‘ง๐Ÿป ๐Ÿ‘ง๐Ÿผ ๐Ÿ‘ง๐Ÿฝ ๐Ÿ‘ง๐Ÿพ ๐Ÿ‘ง๐Ÿฟ ๐Ÿง‘ ๐Ÿง‘๐Ÿป ๐Ÿง‘๐Ÿผ ๐Ÿง‘๐Ÿฝ ๐Ÿง‘๐Ÿพ ๐Ÿง‘๐Ÿฟ ๐Ÿ‘จ ๐Ÿ‘จ๐Ÿป ๐Ÿ‘จ๐Ÿผ ๐Ÿ‘จ๐Ÿฝ ๐Ÿ‘จ๐Ÿพ ๐Ÿ‘จ๐Ÿฟ ๐Ÿ‘ฉ ๐Ÿ‘ฉ๐Ÿป ๐Ÿ‘ฉ๐Ÿผ ๐Ÿ‘ฉ๐Ÿฝ ๐Ÿ‘ฉ๐Ÿพ ๐Ÿ‘ฉ๐Ÿฟ ๐Ÿง“ ๐Ÿง“๐Ÿป ๐Ÿง“๐Ÿผ ๐Ÿง“๐Ÿฝ ๐Ÿง“๐Ÿพ ๐Ÿง“๐Ÿฟ ๐Ÿ‘ด ๐Ÿ‘ด๐Ÿป ๐Ÿ‘ด๐Ÿผ ๐Ÿ‘ด๐Ÿฝ ๐Ÿ‘ด๐Ÿพ ๐Ÿ‘ด๐Ÿฟ ๐Ÿ‘ต ๐Ÿ‘ต๐Ÿป ๐Ÿ‘ต๐Ÿผ ๐Ÿ‘ต๐Ÿฝ ๐Ÿ‘ต๐Ÿพ ๐Ÿ‘ต๐Ÿฟ
+
+<h3>person-role</h3>
+
+๐Ÿ‘จโ€โš•๏ธ ๐Ÿ‘จ๐Ÿปโ€โš•๏ธ ๐Ÿ‘จ๐Ÿผโ€โš•๏ธ ๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ ๐Ÿ‘จ๐Ÿพโ€โš•๏ธ ๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ ๐Ÿ‘ฉโ€โš•๏ธ ๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ ๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ ๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ ๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ ๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ ๐Ÿ‘จโ€๐ŸŽ“ ๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“ ๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“ ๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“ ๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“ ๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“ ๐Ÿ‘ฉโ€๐ŸŽ“ ๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“ ๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“ ๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“ ๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“ ๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“ ๐Ÿ‘จโ€๐Ÿซ ๐Ÿ‘จ๐Ÿปโ€๐Ÿซ ๐Ÿ‘จ๐Ÿผโ€๐Ÿซ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ ๐Ÿ‘จ๐Ÿพโ€๐Ÿซ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ ๐Ÿ‘ฉโ€๐Ÿซ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ ๐Ÿ‘จโ€โš–๏ธ ๐Ÿ‘จ๐Ÿปโ€โš–๏ธ ๐Ÿ‘จ๐Ÿผโ€โš–๏ธ ๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ ๐Ÿ‘จ๐Ÿพโ€โš–๏ธ ๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ ๐Ÿ‘ฉโ€โš–๏ธ ๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ ๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ ๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ ๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ ๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ ๐Ÿ‘จโ€๐ŸŒพ ๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ ๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ ๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ ๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ ๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ ๐Ÿ‘ฉโ€๐ŸŒพ ๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ ๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ ๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ ๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ ๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ ๐Ÿ‘จโ€๐Ÿณ ๐Ÿ‘จ๐Ÿปโ€๐Ÿณ ๐Ÿ‘จ๐Ÿผโ€๐Ÿณ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ ๐Ÿ‘จ๐Ÿพโ€๐Ÿณ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ ๐Ÿ‘ฉโ€๐Ÿณ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ ๐Ÿ‘จโ€๐Ÿ”ง ๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง ๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง ๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง ๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง ๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง ๐Ÿ‘ฉโ€๐Ÿ”ง ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง ๐Ÿ‘จโ€๐Ÿญ ๐Ÿ‘จ๐Ÿปโ€๐Ÿญ ๐Ÿ‘จ๐Ÿผโ€๐Ÿญ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ ๐Ÿ‘จ๐Ÿพโ€๐Ÿญ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ ๐Ÿ‘ฉโ€๐Ÿญ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ ๐Ÿ‘จโ€๐Ÿ’ผ ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ ๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ ๐Ÿ‘ฉโ€๐Ÿ’ผ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ ๐Ÿ‘จโ€๐Ÿ”ฌ ๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ ๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ ๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ ๐Ÿ‘ฉโ€๐Ÿ”ฌ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ ๐Ÿ‘จโ€๐Ÿ’ป ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป ๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป ๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป ๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป ๐Ÿ‘จโ€๐ŸŽค ๐Ÿ‘จ๐Ÿปโ€๐ŸŽค ๐Ÿ‘จ๐Ÿผโ€๐ŸŽค ๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค ๐Ÿ‘จ๐Ÿพโ€๐ŸŽค ๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค ๐Ÿ‘ฉโ€๐ŸŽค ๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค ๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค ๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค ๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค ๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค ๐Ÿ‘จโ€๐ŸŽจ ๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ ๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ ๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ ๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ ๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ ๐Ÿ‘ฉโ€๐ŸŽจ ๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ ๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ ๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ ๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ ๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ ๐Ÿ‘จโ€โœˆ๏ธ ๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ ๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ ๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ ๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ ๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ ๐Ÿ‘ฉโ€โœˆ๏ธ ๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ ๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ ๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ ๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ ๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ ๐Ÿ‘จโ€๐Ÿš€ ๐Ÿ‘จ๐Ÿปโ€๐Ÿš€ ๐Ÿ‘จ๐Ÿผโ€๐Ÿš€ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€ ๐Ÿ‘จ๐Ÿพโ€๐Ÿš€ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€ ๐Ÿ‘ฉโ€๐Ÿš€ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€ ๐Ÿ‘จโ€๐Ÿš’ ๐Ÿ‘จ๐Ÿปโ€๐Ÿš’ ๐Ÿ‘จ๐Ÿผโ€๐Ÿš’ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’ ๐Ÿ‘จ๐Ÿพโ€๐Ÿš’ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’ ๐Ÿ‘ฉโ€๐Ÿš’ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’ ๐Ÿ‘ฎ ๐Ÿ‘ฎ๐Ÿป ๐Ÿ‘ฎ๐Ÿผ ๐Ÿ‘ฎ๐Ÿฝ ๐Ÿ‘ฎ๐Ÿพ ๐Ÿ‘ฎ๐Ÿฟ ๐Ÿ‘ฎโ€โ™‚๏ธ ๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ ๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ ๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ ๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ ๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ ๐Ÿ‘ฎโ€โ™€๏ธ ๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ ๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ ๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ ๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ ๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ ๐Ÿ•ต๏ธ ๐Ÿ•ต๐Ÿป ๐Ÿ•ต๐Ÿผ ๐Ÿ•ต๐Ÿฝ ๐Ÿ•ต๐Ÿพ ๐Ÿ•ต๐Ÿฟ ๐Ÿ•ต๏ธโ€โ™‚๏ธ ๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ ๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ ๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ ๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ ๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ ๐Ÿ•ต๏ธโ€โ™€๏ธ ๐Ÿ•ต๐Ÿปโ€โ™€๏ธ ๐Ÿ•ต๐Ÿผโ€โ™€๏ธ ๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ ๐Ÿ•ต๐Ÿพโ€โ™€๏ธ ๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ ๐Ÿ’‚ ๐Ÿ’‚๐Ÿป ๐Ÿ’‚๐Ÿผ ๐Ÿ’‚๐Ÿฝ ๐Ÿ’‚๐Ÿพ ๐Ÿ’‚๐Ÿฟ ๐Ÿ’‚โ€โ™‚๏ธ ๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ ๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ ๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ ๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ ๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ ๐Ÿ’‚โ€โ™€๏ธ ๐Ÿ’‚๐Ÿปโ€โ™€๏ธ ๐Ÿ’‚๐Ÿผโ€โ™€๏ธ ๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ ๐Ÿ’‚๐Ÿพโ€โ™€๏ธ ๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ ๐Ÿ‘ท ๐Ÿ‘ท๐Ÿป ๐Ÿ‘ท๐Ÿผ ๐Ÿ‘ท๐Ÿฝ ๐Ÿ‘ท๐Ÿพ ๐Ÿ‘ท๐Ÿฟ ๐Ÿ‘ทโ€โ™‚๏ธ ๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ ๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ ๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ ๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ ๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ ๐Ÿ‘ทโ€โ™€๏ธ ๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ ๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ ๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ ๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ ๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ ๐Ÿคด ๐Ÿคด๐Ÿป ๐Ÿคด๐Ÿผ ๐Ÿคด๐Ÿฝ ๐Ÿคด๐Ÿพ ๐Ÿคด๐Ÿฟ ๐Ÿ‘ธ ๐Ÿ‘ธ๐Ÿป ๐Ÿ‘ธ๐Ÿผ ๐Ÿ‘ธ๐Ÿฝ ๐Ÿ‘ธ๐Ÿพ ๐Ÿ‘ธ๐Ÿฟ ๐Ÿ‘ณ ๐Ÿ‘ณ๐Ÿป ๐Ÿ‘ณ๐Ÿผ ๐Ÿ‘ณ๐Ÿฝ ๐Ÿ‘ณ๐Ÿพ ๐Ÿ‘ณ๐Ÿฟ ๐Ÿ‘ณโ€โ™‚๏ธ ๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ ๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ ๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ ๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ ๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ ๐Ÿ‘ณโ€โ™€๏ธ ๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ ๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ ๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ ๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ ๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ ๐Ÿ‘ฒ ๐Ÿ‘ฒ๐Ÿป ๐Ÿ‘ฒ๐Ÿผ ๐Ÿ‘ฒ๐Ÿฝ ๐Ÿ‘ฒ๐Ÿพ ๐Ÿ‘ฒ๐Ÿฟ ๐Ÿง• ๐Ÿง•๐Ÿป ๐Ÿง•๐Ÿผ ๐Ÿง•๐Ÿฝ ๐Ÿง•๐Ÿพ ๐Ÿง•๐Ÿฟ ๐Ÿง” ๐Ÿง”๐Ÿป ๐Ÿง”๐Ÿผ ๐Ÿง”๐Ÿฝ ๐Ÿง”๐Ÿพ ๐Ÿง”๐Ÿฟ ๐Ÿ‘ฑ ๐Ÿ‘ฑ๐Ÿป ๐Ÿ‘ฑ๐Ÿผ ๐Ÿ‘ฑ๐Ÿฝ ๐Ÿ‘ฑ๐Ÿพ ๐Ÿ‘ฑ๐Ÿฟ ๐Ÿ‘ฑโ€โ™‚๏ธ ๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ ๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ ๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ ๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ ๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ ๐Ÿ‘ฑโ€โ™€๏ธ ๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ ๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ ๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ ๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ ๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ ๐Ÿ‘จโ€๐Ÿฆฐ ๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ ๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ ๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ ๐Ÿ‘ฉโ€๐Ÿฆฐ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ ๐Ÿ‘จโ€๐Ÿฆฑ ๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ ๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ ๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ ๐Ÿ‘ฉโ€๐Ÿฆฑ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ ๐Ÿ‘จโ€๐Ÿฆฒ ๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ ๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ ๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ ๐Ÿ‘ฉโ€๐Ÿฆฒ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ ๐Ÿ‘จโ€๐Ÿฆณ ๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ ๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ ๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ ๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ ๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ ๐Ÿ‘ฉโ€๐Ÿฆณ ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ ๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ ๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ ๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ ๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ ๐Ÿคต ๐Ÿคต๐Ÿป ๐Ÿคต๐Ÿผ ๐Ÿคต๐Ÿฝ ๐Ÿคต๐Ÿพ ๐Ÿคต๐Ÿฟ ๐Ÿ‘ฐ ๐Ÿ‘ฐ๐Ÿป ๐Ÿ‘ฐ๐Ÿผ ๐Ÿ‘ฐ๐Ÿฝ ๐Ÿ‘ฐ๐Ÿพ ๐Ÿ‘ฐ๐Ÿฟ ๐Ÿคฐ ๐Ÿคฐ๐Ÿป ๐Ÿคฐ๐Ÿผ ๐Ÿคฐ๐Ÿฝ ๐Ÿคฐ๐Ÿพ ๐Ÿคฐ๐Ÿฟ ๐Ÿคฑ ๐Ÿคฑ๐Ÿป ๐Ÿคฑ๐Ÿผ ๐Ÿคฑ๐Ÿฝ ๐Ÿคฑ๐Ÿพ ๐Ÿคฑ๐Ÿฟ
+
+<h3>person-fantasy</h3>
+
+๐Ÿ‘ผ ๐Ÿ‘ผ๐Ÿป ๐Ÿ‘ผ๐Ÿผ ๐Ÿ‘ผ๐Ÿฝ ๐Ÿ‘ผ๐Ÿพ ๐Ÿ‘ผ๐Ÿฟ ๐ŸŽ… ๐ŸŽ…๐Ÿป ๐ŸŽ…๐Ÿผ ๐ŸŽ…๐Ÿฝ ๐ŸŽ…๐Ÿพ ๐ŸŽ…๐Ÿฟ ๐Ÿคถ ๐Ÿคถ๐Ÿป ๐Ÿคถ๐Ÿผ ๐Ÿคถ๐Ÿฝ ๐Ÿคถ๐Ÿพ ๐Ÿคถ๐Ÿฟ ๐Ÿฆธ ๐Ÿฆธ๐Ÿป ๐Ÿฆธ๐Ÿผ ๐Ÿฆธ๐Ÿฝ ๐Ÿฆธ๐Ÿพ ๐Ÿฆธ๐Ÿฟ ๐Ÿฆธโ€โ™€๏ธ ๐Ÿฆธ๐Ÿปโ€โ™€๏ธ ๐Ÿฆธ๐Ÿผโ€โ™€๏ธ ๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ ๐Ÿฆธ๐Ÿพโ€โ™€๏ธ ๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ ๐Ÿฆธโ€โ™‚๏ธ ๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ ๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ ๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ ๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ ๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ ๐Ÿฆน ๐Ÿฆน๐Ÿป ๐Ÿฆน๐Ÿผ ๐Ÿฆน๐Ÿฝ ๐Ÿฆน๐Ÿพ ๐Ÿฆน๐Ÿฟ ๐Ÿฆนโ€โ™€๏ธ ๐Ÿฆน๐Ÿปโ€โ™€๏ธ ๐Ÿฆน๐Ÿผโ€โ™€๏ธ ๐Ÿฆน๐Ÿฝโ€โ™€๏ธ ๐Ÿฆน๐Ÿพโ€โ™€๏ธ ๐Ÿฆน๐Ÿฟโ€โ™€๏ธ ๐Ÿฆนโ€โ™‚๏ธ ๐Ÿฆน๐Ÿปโ€โ™‚๏ธ ๐Ÿฆน๐Ÿผโ€โ™‚๏ธ ๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ ๐Ÿฆน๐Ÿพโ€โ™‚๏ธ ๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ ๐Ÿง™ ๐Ÿง™๐Ÿป ๐Ÿง™๐Ÿผ ๐Ÿง™๐Ÿฝ ๐Ÿง™๐Ÿพ ๐Ÿง™๐Ÿฟ ๐Ÿง™โ€โ™€๏ธ ๐Ÿง™๐Ÿปโ€โ™€๏ธ ๐Ÿง™๐Ÿผโ€โ™€๏ธ ๐Ÿง™๐Ÿฝโ€โ™€๏ธ ๐Ÿง™๐Ÿพโ€โ™€๏ธ ๐Ÿง™๐Ÿฟโ€โ™€๏ธ ๐Ÿง™โ€โ™‚๏ธ ๐Ÿง™๐Ÿปโ€โ™‚๏ธ ๐Ÿง™๐Ÿผโ€โ™‚๏ธ ๐Ÿง™๐Ÿฝโ€โ™‚๏ธ ๐Ÿง™๐Ÿพโ€โ™‚๏ธ ๐Ÿง™๐Ÿฟโ€โ™‚๏ธ ๐Ÿงš ๐Ÿงš๐Ÿป ๐Ÿงš๐Ÿผ ๐Ÿงš๐Ÿฝ ๐Ÿงš๐Ÿพ ๐Ÿงš๐Ÿฟ ๐Ÿงšโ€โ™€๏ธ ๐Ÿงš๐Ÿปโ€โ™€๏ธ ๐Ÿงš๐Ÿผโ€โ™€๏ธ ๐Ÿงš๐Ÿฝโ€โ™€๏ธ ๐Ÿงš๐Ÿพโ€โ™€๏ธ ๐Ÿงš๐Ÿฟโ€โ™€๏ธ ๐Ÿงšโ€โ™‚๏ธ ๐Ÿงš๐Ÿปโ€โ™‚๏ธ ๐Ÿงš๐Ÿผโ€โ™‚๏ธ ๐Ÿงš๐Ÿฝโ€โ™‚๏ธ ๐Ÿงš๐Ÿพโ€โ™‚๏ธ ๐Ÿงš๐Ÿฟโ€โ™‚๏ธ ๐Ÿง› ๐Ÿง›๐Ÿป ๐Ÿง›๐Ÿผ ๐Ÿง›๐Ÿฝ ๐Ÿง›๐Ÿพ ๐Ÿง›๐Ÿฟ ๐Ÿง›โ€โ™€๏ธ ๐Ÿง›๐Ÿปโ€โ™€๏ธ ๐Ÿง›๐Ÿผโ€โ™€๏ธ ๐Ÿง›๐Ÿฝโ€โ™€๏ธ ๐Ÿง›๐Ÿพโ€โ™€๏ธ ๐Ÿง›๐Ÿฟโ€โ™€๏ธ ๐Ÿง›โ€โ™‚๏ธ ๐Ÿง›๐Ÿปโ€โ™‚๏ธ ๐Ÿง›๐Ÿผโ€โ™‚๏ธ ๐Ÿง›๐Ÿฝโ€โ™‚๏ธ ๐Ÿง›๐Ÿพโ€โ™‚๏ธ ๐Ÿง›๐Ÿฟโ€โ™‚๏ธ ๐Ÿงœ ๐Ÿงœ๐Ÿป ๐Ÿงœ๐Ÿผ ๐Ÿงœ๐Ÿฝ ๐Ÿงœ๐Ÿพ ๐Ÿงœ๐Ÿฟ ๐Ÿงœโ€โ™€๏ธ ๐Ÿงœ๐Ÿปโ€โ™€๏ธ ๐Ÿงœ๐Ÿผโ€โ™€๏ธ ๐Ÿงœ๐Ÿฝโ€โ™€๏ธ ๐Ÿงœ๐Ÿพโ€โ™€๏ธ ๐Ÿงœ๐Ÿฟโ€โ™€๏ธ ๐Ÿงœโ€โ™‚๏ธ ๐Ÿงœ๐Ÿปโ€โ™‚๏ธ ๐Ÿงœ๐Ÿผโ€โ™‚๏ธ ๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ ๐Ÿงœ๐Ÿพโ€โ™‚๏ธ ๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ ๐Ÿง ๐Ÿง๐Ÿป ๐Ÿง๐Ÿผ ๐Ÿง๐Ÿฝ ๐Ÿง๐Ÿพ ๐Ÿง๐Ÿฟ ๐Ÿงโ€โ™€๏ธ ๐Ÿง๐Ÿปโ€โ™€๏ธ ๐Ÿง๐Ÿผโ€โ™€๏ธ ๐Ÿง๐Ÿฝโ€โ™€๏ธ ๐Ÿง๐Ÿพโ€โ™€๏ธ ๐Ÿง๐Ÿฟโ€โ™€๏ธ ๐Ÿงโ€โ™‚๏ธ ๐Ÿง๐Ÿปโ€โ™‚๏ธ ๐Ÿง๐Ÿผโ€โ™‚๏ธ ๐Ÿง๐Ÿฝโ€โ™‚๏ธ ๐Ÿง๐Ÿพโ€โ™‚๏ธ ๐Ÿง๐Ÿฟโ€โ™‚๏ธ ๐Ÿงž ๐Ÿงžโ€โ™€๏ธ ๐Ÿงžโ€โ™‚๏ธ ๐ŸงŸ ๐ŸงŸโ€โ™€๏ธ ๐ŸงŸโ€โ™‚๏ธ
+
+<h3>person-gesture</h3>
+
+๐Ÿ™ ๐Ÿ™๐Ÿป ๐Ÿ™๐Ÿผ ๐Ÿ™๐Ÿฝ ๐Ÿ™๐Ÿพ ๐Ÿ™๐Ÿฟ ๐Ÿ™โ€โ™‚๏ธ ๐Ÿ™๐Ÿปโ€โ™‚๏ธ ๐Ÿ™๐Ÿผโ€โ™‚๏ธ ๐Ÿ™๐Ÿฝโ€โ™‚๏ธ ๐Ÿ™๐Ÿพโ€โ™‚๏ธ ๐Ÿ™๐Ÿฟโ€โ™‚๏ธ ๐Ÿ™โ€โ™€๏ธ ๐Ÿ™๐Ÿปโ€โ™€๏ธ ๐Ÿ™๐Ÿผโ€โ™€๏ธ ๐Ÿ™๐Ÿฝโ€โ™€๏ธ ๐Ÿ™๐Ÿพโ€โ™€๏ธ ๐Ÿ™๐Ÿฟโ€โ™€๏ธ ๐Ÿ™Ž ๐Ÿ™Ž๐Ÿป ๐Ÿ™Ž๐Ÿผ ๐Ÿ™Ž๐Ÿฝ ๐Ÿ™Ž๐Ÿพ ๐Ÿ™Ž๐Ÿฟ ๐Ÿ™Žโ€โ™‚๏ธ ๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ ๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ ๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ ๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ ๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ ๐Ÿ™Žโ€โ™€๏ธ ๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ ๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ ๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ ๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ ๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ ๐Ÿ™… ๐Ÿ™…๐Ÿป ๐Ÿ™…๐Ÿผ ๐Ÿ™…๐Ÿฝ ๐Ÿ™…๐Ÿพ ๐Ÿ™…๐Ÿฟ ๐Ÿ™…โ€โ™‚๏ธ ๐Ÿ™…๐Ÿปโ€โ™‚๏ธ ๐Ÿ™…๐Ÿผโ€โ™‚๏ธ ๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ ๐Ÿ™…๐Ÿพโ€โ™‚๏ธ ๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ ๐Ÿ™…โ€โ™€๏ธ ๐Ÿ™…๐Ÿปโ€โ™€๏ธ ๐Ÿ™…๐Ÿผโ€โ™€๏ธ ๐Ÿ™…๐Ÿฝโ€โ™€๏ธ ๐Ÿ™…๐Ÿพโ€โ™€๏ธ ๐Ÿ™…๐Ÿฟโ€โ™€๏ธ ๐Ÿ™† ๐Ÿ™†๐Ÿป ๐Ÿ™†๐Ÿผ ๐Ÿ™†๐Ÿฝ ๐Ÿ™†๐Ÿพ ๐Ÿ™†๐Ÿฟ ๐Ÿ™†โ€โ™‚๏ธ ๐Ÿ™†๐Ÿปโ€โ™‚๏ธ ๐Ÿ™†๐Ÿผโ€โ™‚๏ธ ๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ ๐Ÿ™†๐Ÿพโ€โ™‚๏ธ ๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ ๐Ÿ™†โ€โ™€๏ธ ๐Ÿ™†๐Ÿปโ€โ™€๏ธ ๐Ÿ™†๐Ÿผโ€โ™€๏ธ ๐Ÿ™†๐Ÿฝโ€โ™€๏ธ ๐Ÿ™†๐Ÿพโ€โ™€๏ธ ๐Ÿ™†๐Ÿฟโ€โ™€๏ธ ๐Ÿ’ ๐Ÿ’๐Ÿป ๐Ÿ’๐Ÿผ ๐Ÿ’๐Ÿฝ ๐Ÿ’๐Ÿพ ๐Ÿ’๐Ÿฟ ๐Ÿ’โ€โ™‚๏ธ ๐Ÿ’๐Ÿปโ€โ™‚๏ธ ๐Ÿ’๐Ÿผโ€โ™‚๏ธ ๐Ÿ’๐Ÿฝโ€โ™‚๏ธ ๐Ÿ’๐Ÿพโ€โ™‚๏ธ ๐Ÿ’๐Ÿฟโ€โ™‚๏ธ ๐Ÿ’โ€โ™€๏ธ ๐Ÿ’๐Ÿปโ€โ™€๏ธ ๐Ÿ’๐Ÿผโ€โ™€๏ธ ๐Ÿ’๐Ÿฝโ€โ™€๏ธ ๐Ÿ’๐Ÿพโ€โ™€๏ธ ๐Ÿ’๐Ÿฟโ€โ™€๏ธ ๐Ÿ™‹ ๐Ÿ™‹๐Ÿป ๐Ÿ™‹๐Ÿผ ๐Ÿ™‹๐Ÿฝ ๐Ÿ™‹๐Ÿพ ๐Ÿ™‹๐Ÿฟ ๐Ÿ™‹โ€โ™‚๏ธ ๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ ๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ ๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ ๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ ๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ ๐Ÿ™‹โ€โ™€๏ธ ๐Ÿ™‹๐Ÿปโ€โ™€๏ธ ๐Ÿ™‹๐Ÿผโ€โ™€๏ธ ๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ ๐Ÿ™‹๐Ÿพโ€โ™€๏ธ ๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ ๐Ÿ™‡ ๐Ÿ™‡๐Ÿป ๐Ÿ™‡๐Ÿผ ๐Ÿ™‡๐Ÿฝ ๐Ÿ™‡๐Ÿพ ๐Ÿ™‡๐Ÿฟ ๐Ÿ™‡โ€โ™‚๏ธ ๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ ๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ ๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ ๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ ๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ ๐Ÿ™‡โ€โ™€๏ธ ๐Ÿ™‡๐Ÿปโ€โ™€๏ธ ๐Ÿ™‡๐Ÿผโ€โ™€๏ธ ๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ ๐Ÿ™‡๐Ÿพโ€โ™€๏ธ ๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ ๐Ÿคฆ ๐Ÿคฆ๐Ÿป ๐Ÿคฆ๐Ÿผ ๐Ÿคฆ๐Ÿฝ ๐Ÿคฆ๐Ÿพ ๐Ÿคฆ๐Ÿฟ ๐Ÿคฆโ€โ™‚๏ธ ๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ ๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ ๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ ๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ ๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ ๐Ÿคฆโ€โ™€๏ธ ๐Ÿคฆ๐Ÿปโ€โ™€๏ธ ๐Ÿคฆ๐Ÿผโ€โ™€๏ธ ๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ ๐Ÿคฆ๐Ÿพโ€โ™€๏ธ ๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ ๐Ÿคท ๐Ÿคท๐Ÿป ๐Ÿคท๐Ÿผ ๐Ÿคท๐Ÿฝ ๐Ÿคท๐Ÿพ ๐Ÿคท๐Ÿฟ ๐Ÿคทโ€โ™‚๏ธ ๐Ÿคท๐Ÿปโ€โ™‚๏ธ ๐Ÿคท๐Ÿผโ€โ™‚๏ธ ๐Ÿคท๐Ÿฝโ€โ™‚๏ธ ๐Ÿคท๐Ÿพโ€โ™‚๏ธ ๐Ÿคท๐Ÿฟโ€โ™‚๏ธ ๐Ÿคทโ€โ™€๏ธ ๐Ÿคท๐Ÿปโ€โ™€๏ธ ๐Ÿคท๐Ÿผโ€โ™€๏ธ ๐Ÿคท๐Ÿฝโ€โ™€๏ธ ๐Ÿคท๐Ÿพโ€โ™€๏ธ ๐Ÿคท๐Ÿฟโ€โ™€๏ธ
+
+<h3>person-activity</h3>
+
+๐Ÿ’† ๐Ÿ’†๐Ÿป ๐Ÿ’†๐Ÿผ ๐Ÿ’†๐Ÿฝ ๐Ÿ’†๐Ÿพ ๐Ÿ’†๐Ÿฟ ๐Ÿ’†โ€โ™‚๏ธ ๐Ÿ’†๐Ÿปโ€โ™‚๏ธ ๐Ÿ’†๐Ÿผโ€โ™‚๏ธ ๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ ๐Ÿ’†๐Ÿพโ€โ™‚๏ธ ๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ ๐Ÿ’†โ€โ™€๏ธ ๐Ÿ’†๐Ÿปโ€โ™€๏ธ ๐Ÿ’†๐Ÿผโ€โ™€๏ธ ๐Ÿ’†๐Ÿฝโ€โ™€๏ธ ๐Ÿ’†๐Ÿพโ€โ™€๏ธ ๐Ÿ’†๐Ÿฟโ€โ™€๏ธ ๐Ÿ’‡ ๐Ÿ’‡๐Ÿป ๐Ÿ’‡๐Ÿผ ๐Ÿ’‡๐Ÿฝ ๐Ÿ’‡๐Ÿพ ๐Ÿ’‡๐Ÿฟ ๐Ÿ’‡โ€โ™‚๏ธ ๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ ๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ ๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ ๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ ๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ ๐Ÿ’‡โ€โ™€๏ธ ๐Ÿ’‡๐Ÿปโ€โ™€๏ธ ๐Ÿ’‡๐Ÿผโ€โ™€๏ธ ๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ ๐Ÿ’‡๐Ÿพโ€โ™€๏ธ ๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ ๐Ÿšถ ๐Ÿšถ๐Ÿป ๐Ÿšถ๐Ÿผ ๐Ÿšถ๐Ÿฝ ๐Ÿšถ๐Ÿพ ๐Ÿšถ๐Ÿฟ ๐Ÿšถโ€โ™‚๏ธ ๐Ÿšถ๐Ÿปโ€โ™‚๏ธ ๐Ÿšถ๐Ÿผโ€โ™‚๏ธ ๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ ๐Ÿšถ๐Ÿพโ€โ™‚๏ธ ๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ ๐Ÿšถโ€โ™€๏ธ ๐Ÿšถ๐Ÿปโ€โ™€๏ธ ๐Ÿšถ๐Ÿผโ€โ™€๏ธ ๐Ÿšถ๐Ÿฝโ€โ™€๏ธ ๐Ÿšถ๐Ÿพโ€โ™€๏ธ ๐Ÿšถ๐Ÿฟโ€โ™€๏ธ ๐Ÿƒ ๐Ÿƒ๐Ÿป ๐Ÿƒ๐Ÿผ ๐Ÿƒ๐Ÿฝ ๐Ÿƒ๐Ÿพ ๐Ÿƒ๐Ÿฟ ๐Ÿƒโ€โ™‚๏ธ ๐Ÿƒ๐Ÿปโ€โ™‚๏ธ ๐Ÿƒ๐Ÿผโ€โ™‚๏ธ ๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ ๐Ÿƒ๐Ÿพโ€โ™‚๏ธ ๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ ๐Ÿƒโ€โ™€๏ธ ๐Ÿƒ๐Ÿปโ€โ™€๏ธ ๐Ÿƒ๐Ÿผโ€โ™€๏ธ ๐Ÿƒ๐Ÿฝโ€โ™€๏ธ ๐Ÿƒ๐Ÿพโ€โ™€๏ธ ๐Ÿƒ๐Ÿฟโ€โ™€๏ธ ๐Ÿ’ƒ ๐Ÿ’ƒ๐Ÿป ๐Ÿ’ƒ๐Ÿผ ๐Ÿ’ƒ๐Ÿฝ ๐Ÿ’ƒ๐Ÿพ ๐Ÿ’ƒ๐Ÿฟ ๐Ÿ•บ ๐Ÿ•บ๐Ÿป ๐Ÿ•บ๐Ÿผ ๐Ÿ•บ๐Ÿฝ ๐Ÿ•บ๐Ÿพ ๐Ÿ•บ๐Ÿฟ ๐Ÿ‘ฏ ๐Ÿ‘ฏโ€โ™‚๏ธ ๐Ÿ‘ฏโ€โ™€๏ธ ๐Ÿง– ๐Ÿง–๐Ÿป ๐Ÿง–๐Ÿผ ๐Ÿง–๐Ÿฝ ๐Ÿง–๐Ÿพ ๐Ÿง–๐Ÿฟ ๐Ÿง–โ€โ™€๏ธ ๐Ÿง–๐Ÿปโ€โ™€๏ธ ๐Ÿง–๐Ÿผโ€โ™€๏ธ ๐Ÿง–๐Ÿฝโ€โ™€๏ธ ๐Ÿง–๐Ÿพโ€โ™€๏ธ ๐Ÿง–๐Ÿฟโ€โ™€๏ธ ๐Ÿง–โ€โ™‚๏ธ ๐Ÿง–๐Ÿปโ€โ™‚๏ธ ๐Ÿง–๐Ÿผโ€โ™‚๏ธ ๐Ÿง–๐Ÿฝโ€โ™‚๏ธ ๐Ÿง–๐Ÿพโ€โ™‚๏ธ ๐Ÿง–๐Ÿฟโ€โ™‚๏ธ ๐Ÿง— ๐Ÿง—๐Ÿป ๐Ÿง—๐Ÿผ ๐Ÿง—๐Ÿฝ ๐Ÿง—๐Ÿพ ๐Ÿง—๐Ÿฟ ๐Ÿง—โ€โ™€๏ธ ๐Ÿง—๐Ÿปโ€โ™€๏ธ ๐Ÿง—๐Ÿผโ€โ™€๏ธ ๐Ÿง—๐Ÿฝโ€โ™€๏ธ ๐Ÿง—๐Ÿพโ€โ™€๏ธ ๐Ÿง—๐Ÿฟโ€โ™€๏ธ ๐Ÿง—โ€โ™‚๏ธ ๐Ÿง—๐Ÿปโ€โ™‚๏ธ ๐Ÿง—๐Ÿผโ€โ™‚๏ธ ๐Ÿง—๐Ÿฝโ€โ™‚๏ธ ๐Ÿง—๐Ÿพโ€โ™‚๏ธ ๐Ÿง—๐Ÿฟโ€โ™‚๏ธ ๐Ÿง˜ ๐Ÿง˜๐Ÿป ๐Ÿง˜๐Ÿผ ๐Ÿง˜๐Ÿฝ ๐Ÿง˜๐Ÿพ ๐Ÿง˜๐Ÿฟ ๐Ÿง˜โ€โ™€๏ธ ๐Ÿง˜๐Ÿปโ€โ™€๏ธ ๐Ÿง˜๐Ÿผโ€โ™€๏ธ ๐Ÿง˜๐Ÿฝโ€โ™€๏ธ ๐Ÿง˜๐Ÿพโ€โ™€๏ธ ๐Ÿง˜๐Ÿฟโ€โ™€๏ธ ๐Ÿง˜โ€โ™‚๏ธ ๐Ÿง˜๐Ÿปโ€โ™‚๏ธ ๐Ÿง˜๐Ÿผโ€โ™‚๏ธ ๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ ๐Ÿง˜๐Ÿพโ€โ™‚๏ธ ๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ ๐Ÿ›€ ๐Ÿ›€๐Ÿป ๐Ÿ›€๐Ÿผ ๐Ÿ›€๐Ÿฝ ๐Ÿ›€๐Ÿพ ๐Ÿ›€๐Ÿฟ ๐Ÿ›Œ ๐Ÿ›Œ๐Ÿป ๐Ÿ›Œ๐Ÿผ ๐Ÿ›Œ๐Ÿฝ ๐Ÿ›Œ๐Ÿพ ๐Ÿ›Œ๐Ÿฟ ๐Ÿ•ด๏ธ ๐Ÿ•ด๐Ÿป ๐Ÿ•ด๐Ÿผ ๐Ÿ•ด๐Ÿฝ ๐Ÿ•ด๐Ÿพ ๐Ÿ•ด๐Ÿฟ ๐Ÿ—ฃ๏ธ ๐Ÿ‘ค ๐Ÿ‘ฅ
+
+<h3>person-sport</h3>
+
+๐Ÿคบ ๐Ÿ‡ ๐Ÿ‡๐Ÿป ๐Ÿ‡๐Ÿผ ๐Ÿ‡๐Ÿฝ ๐Ÿ‡๐Ÿพ ๐Ÿ‡๐Ÿฟ โ›ท๏ธ ๐Ÿ‚ ๐Ÿ‚๐Ÿป ๐Ÿ‚๐Ÿผ ๐Ÿ‚๐Ÿฝ ๐Ÿ‚๐Ÿพ ๐Ÿ‚๐Ÿฟ ๐ŸŒ๏ธ ๐ŸŒ๐Ÿป ๐ŸŒ๐Ÿผ ๐ŸŒ๐Ÿฝ ๐ŸŒ๐Ÿพ ๐ŸŒ๐Ÿฟ ๐ŸŒ๏ธโ€โ™‚๏ธ ๐ŸŒ๐Ÿปโ€โ™‚๏ธ ๐ŸŒ๐Ÿผโ€โ™‚๏ธ ๐ŸŒ๐Ÿฝโ€โ™‚๏ธ ๐ŸŒ๐Ÿพโ€โ™‚๏ธ ๐ŸŒ๐Ÿฟโ€โ™‚๏ธ ๐ŸŒ๏ธโ€โ™€๏ธ ๐ŸŒ๐Ÿปโ€โ™€๏ธ ๐ŸŒ๐Ÿผโ€โ™€๏ธ ๐ŸŒ๐Ÿฝโ€โ™€๏ธ ๐ŸŒ๐Ÿพโ€โ™€๏ธ ๐ŸŒ๐Ÿฟโ€โ™€๏ธ ๐Ÿ„ ๐Ÿ„๐Ÿป ๐Ÿ„๐Ÿผ ๐Ÿ„๐Ÿฝ ๐Ÿ„๐Ÿพ ๐Ÿ„๐Ÿฟ ๐Ÿ„โ€โ™‚๏ธ ๐Ÿ„๐Ÿปโ€โ™‚๏ธ ๐Ÿ„๐Ÿผโ€โ™‚๏ธ ๐Ÿ„๐Ÿฝโ€โ™‚๏ธ ๐Ÿ„๐Ÿพโ€โ™‚๏ธ ๐Ÿ„๐Ÿฟโ€โ™‚๏ธ ๐Ÿ„โ€โ™€๏ธ ๐Ÿ„๐Ÿปโ€โ™€๏ธ ๐Ÿ„๐Ÿผโ€โ™€๏ธ ๐Ÿ„๐Ÿฝโ€โ™€๏ธ ๐Ÿ„๐Ÿพโ€โ™€๏ธ ๐Ÿ„๐Ÿฟโ€โ™€๏ธ ๐Ÿšฃ ๐Ÿšฃ๐Ÿป ๐Ÿšฃ๐Ÿผ ๐Ÿšฃ๐Ÿฝ ๐Ÿšฃ๐Ÿพ ๐Ÿšฃ๐Ÿฟ ๐Ÿšฃโ€โ™‚๏ธ ๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ ๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ ๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ ๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ ๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ ๐Ÿšฃโ€โ™€๏ธ ๐Ÿšฃ๐Ÿปโ€โ™€๏ธ ๐Ÿšฃ๐Ÿผโ€โ™€๏ธ ๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ ๐Ÿšฃ๐Ÿพโ€โ™€๏ธ ๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ ๐ŸŠ ๐ŸŠ๐Ÿป ๐ŸŠ๐Ÿผ ๐ŸŠ๐Ÿฝ ๐ŸŠ๐Ÿพ ๐ŸŠ๐Ÿฟ ๐ŸŠโ€โ™‚๏ธ ๐ŸŠ๐Ÿปโ€โ™‚๏ธ ๐ŸŠ๐Ÿผโ€โ™‚๏ธ ๐ŸŠ๐Ÿฝโ€โ™‚๏ธ ๐ŸŠ๐Ÿพโ€โ™‚๏ธ ๐ŸŠ๐Ÿฟโ€โ™‚๏ธ ๐ŸŠโ€โ™€๏ธ ๐ŸŠ๐Ÿปโ€โ™€๏ธ ๐ŸŠ๐Ÿผโ€โ™€๏ธ ๐ŸŠ๐Ÿฝโ€โ™€๏ธ ๐ŸŠ๐Ÿพโ€โ™€๏ธ ๐ŸŠ๐Ÿฟโ€โ™€๏ธ โ›น๏ธ โ›น๐Ÿป โ›น๐Ÿผ โ›น๐Ÿฝ โ›น๐Ÿพ โ›น๐Ÿฟ โ›น๏ธโ€โ™‚๏ธ โ›น๐Ÿปโ€โ™‚๏ธ โ›น๐Ÿผโ€โ™‚๏ธ โ›น๐Ÿฝโ€โ™‚๏ธ โ›น๐Ÿพโ€โ™‚๏ธ โ›น๐Ÿฟโ€โ™‚๏ธ โ›น๏ธโ€โ™€๏ธ โ›น๐Ÿปโ€โ™€๏ธ โ›น๐Ÿผโ€โ™€๏ธ โ›น๐Ÿฝโ€โ™€๏ธ โ›น๐Ÿพโ€โ™€๏ธ โ›น๐Ÿฟโ€โ™€๏ธ ๐Ÿ‹๏ธ ๐Ÿ‹๐Ÿป ๐Ÿ‹๐Ÿผ ๐Ÿ‹๐Ÿฝ ๐Ÿ‹๐Ÿพ ๐Ÿ‹๐Ÿฟ ๐Ÿ‹๏ธโ€โ™‚๏ธ ๐Ÿ‹๐Ÿปโ€โ™‚๏ธ ๐Ÿ‹๐Ÿผโ€โ™‚๏ธ ๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ ๐Ÿ‹๐Ÿพโ€โ™‚๏ธ ๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ ๐Ÿ‹๏ธโ€โ™€๏ธ ๐Ÿ‹๐Ÿปโ€โ™€๏ธ ๐Ÿ‹๐Ÿผโ€โ™€๏ธ ๐Ÿ‹๐Ÿฝโ€โ™€๏ธ ๐Ÿ‹๐Ÿพโ€โ™€๏ธ ๐Ÿ‹๐Ÿฟโ€โ™€๏ธ ๐Ÿšด ๐Ÿšด๐Ÿป ๐Ÿšด๐Ÿผ ๐Ÿšด๐Ÿฝ ๐Ÿšด๐Ÿพ ๐Ÿšด๐Ÿฟ ๐Ÿšดโ€โ™‚๏ธ ๐Ÿšด๐Ÿปโ€โ™‚๏ธ ๐Ÿšด๐Ÿผโ€โ™‚๏ธ ๐Ÿšด๐Ÿฝโ€โ™‚๏ธ ๐Ÿšด๐Ÿพโ€โ™‚๏ธ ๐Ÿšด๐Ÿฟโ€โ™‚๏ธ ๐Ÿšดโ€โ™€๏ธ ๐Ÿšด๐Ÿปโ€โ™€๏ธ ๐Ÿšด๐Ÿผโ€โ™€๏ธ ๐Ÿšด๐Ÿฝโ€โ™€๏ธ ๐Ÿšด๐Ÿพโ€โ™€๏ธ ๐Ÿšด๐Ÿฟโ€โ™€๏ธ ๐Ÿšต ๐Ÿšต๐Ÿป ๐Ÿšต๐Ÿผ ๐Ÿšต๐Ÿฝ ๐Ÿšต๐Ÿพ ๐Ÿšต๐Ÿฟ ๐Ÿšตโ€โ™‚๏ธ ๐Ÿšต๐Ÿปโ€โ™‚๏ธ ๐Ÿšต๐Ÿผโ€โ™‚๏ธ ๐Ÿšต๐Ÿฝโ€โ™‚๏ธ ๐Ÿšต๐Ÿพโ€โ™‚๏ธ ๐Ÿšต๐Ÿฟโ€โ™‚๏ธ ๐Ÿšตโ€โ™€๏ธ ๐Ÿšต๐Ÿปโ€โ™€๏ธ ๐Ÿšต๐Ÿผโ€โ™€๏ธ ๐Ÿšต๐Ÿฝโ€โ™€๏ธ ๐Ÿšต๐Ÿพโ€โ™€๏ธ ๐Ÿšต๐Ÿฟโ€โ™€๏ธ ๐ŸŽ๏ธ ๐Ÿ๏ธ ๐Ÿคธ ๐Ÿคธ๐Ÿป ๐Ÿคธ๐Ÿผ ๐Ÿคธ๐Ÿฝ ๐Ÿคธ๐Ÿพ ๐Ÿคธ๐Ÿฟ ๐Ÿคธโ€โ™‚๏ธ ๐Ÿคธ๐Ÿปโ€โ™‚๏ธ ๐Ÿคธ๐Ÿผโ€โ™‚๏ธ ๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ ๐Ÿคธ๐Ÿพโ€โ™‚๏ธ ๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ ๐Ÿคธโ€โ™€๏ธ ๐Ÿคธ๐Ÿปโ€โ™€๏ธ ๐Ÿคธ๐Ÿผโ€โ™€๏ธ ๐Ÿคธ๐Ÿฝโ€โ™€๏ธ ๐Ÿคธ๐Ÿพโ€โ™€๏ธ ๐Ÿคธ๐Ÿฟโ€โ™€๏ธ ๐Ÿคผ ๐Ÿคผโ€โ™‚๏ธ ๐Ÿคผโ€โ™€๏ธ ๐Ÿคฝ ๐Ÿคฝ๐Ÿป ๐Ÿคฝ๐Ÿผ ๐Ÿคฝ๐Ÿฝ ๐Ÿคฝ๐Ÿพ ๐Ÿคฝ๐Ÿฟ ๐Ÿคฝโ€โ™‚๏ธ ๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ ๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ ๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ ๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ ๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ ๐Ÿคฝโ€โ™€๏ธ ๐Ÿคฝ๐Ÿปโ€โ™€๏ธ ๐Ÿคฝ๐Ÿผโ€โ™€๏ธ ๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ ๐Ÿคฝ๐Ÿพโ€โ™€๏ธ ๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ ๐Ÿคพ ๐Ÿคพ๐Ÿป ๐Ÿคพ๐Ÿผ ๐Ÿคพ๐Ÿฝ ๐Ÿคพ๐Ÿพ ๐Ÿคพ๐Ÿฟ ๐Ÿคพโ€โ™‚๏ธ ๐Ÿคพ๐Ÿปโ€โ™‚๏ธ ๐Ÿคพ๐Ÿผโ€โ™‚๏ธ ๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ ๐Ÿคพ๐Ÿพโ€โ™‚๏ธ ๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ ๐Ÿคพโ€โ™€๏ธ ๐Ÿคพ๐Ÿปโ€โ™€๏ธ ๐Ÿคพ๐Ÿผโ€โ™€๏ธ ๐Ÿคพ๐Ÿฝโ€โ™€๏ธ ๐Ÿคพ๐Ÿพโ€โ™€๏ธ ๐Ÿคพ๐Ÿฟโ€โ™€๏ธ ๐Ÿคน ๐Ÿคน๐Ÿป ๐Ÿคน๐Ÿผ ๐Ÿคน๐Ÿฝ ๐Ÿคน๐Ÿพ ๐Ÿคน๐Ÿฟ ๐Ÿคนโ€โ™‚๏ธ ๐Ÿคน๐Ÿปโ€โ™‚๏ธ ๐Ÿคน๐Ÿผโ€โ™‚๏ธ ๐Ÿคน๐Ÿฝโ€โ™‚๏ธ ๐Ÿคน๐Ÿพโ€โ™‚๏ธ ๐Ÿคน๐Ÿฟโ€โ™‚๏ธ ๐Ÿคนโ€โ™€๏ธ ๐Ÿคน๐Ÿปโ€โ™€๏ธ ๐Ÿคน๐Ÿผโ€โ™€๏ธ ๐Ÿคน๐Ÿฝโ€โ™€๏ธ ๐Ÿคน๐Ÿพโ€โ™€๏ธ ๐Ÿคน๐Ÿฟโ€โ™€๏ธ
+
+<h3>family</h3>
+
+๐Ÿ‘ซ ๐Ÿ‘ฌ ๐Ÿ‘ญ ๐Ÿ’ ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ ๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ ๐Ÿ’‘ ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ ๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ ๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ ๐Ÿ‘ช ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง ๐Ÿ‘จโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘ง ๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง ๐Ÿ‘ฉโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ‘ง ๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง
+
+<h3>body</h3>
+
+๐Ÿคณ ๐Ÿคณ๐Ÿป ๐Ÿคณ๐Ÿผ ๐Ÿคณ๐Ÿฝ ๐Ÿคณ๐Ÿพ ๐Ÿคณ๐Ÿฟ ๐Ÿ’ช ๐Ÿ’ช๐Ÿป ๐Ÿ’ช๐Ÿผ ๐Ÿ’ช๐Ÿฝ ๐Ÿ’ช๐Ÿพ ๐Ÿ’ช๐Ÿฟ ๐Ÿฆต ๐Ÿฆต๐Ÿป ๐Ÿฆต๐Ÿผ ๐Ÿฆต๐Ÿฝ ๐Ÿฆต๐Ÿพ ๐Ÿฆต๐Ÿฟ ๐Ÿฆถ ๐Ÿฆถ๐Ÿป ๐Ÿฆถ๐Ÿผ ๐Ÿฆถ๐Ÿฝ ๐Ÿฆถ๐Ÿพ ๐Ÿฆถ๐Ÿฟ ๐Ÿ‘ˆ ๐Ÿ‘ˆ๐Ÿป ๐Ÿ‘ˆ๐Ÿผ ๐Ÿ‘ˆ๐Ÿฝ ๐Ÿ‘ˆ๐Ÿพ ๐Ÿ‘ˆ๐Ÿฟ ๐Ÿ‘‰ ๐Ÿ‘‰๐Ÿป ๐Ÿ‘‰๐Ÿผ ๐Ÿ‘‰๐Ÿฝ ๐Ÿ‘‰๐Ÿพ ๐Ÿ‘‰๐Ÿฟ โ˜๏ธ โ˜๐Ÿป โ˜๐Ÿผ โ˜๐Ÿฝ โ˜๐Ÿพ โ˜๐Ÿฟ ๐Ÿ‘† ๐Ÿ‘†๐Ÿป ๐Ÿ‘†๐Ÿผ ๐Ÿ‘†๐Ÿฝ ๐Ÿ‘†๐Ÿพ ๐Ÿ‘†๐Ÿฟ ๐Ÿ–• ๐Ÿ–•๐Ÿป ๐Ÿ–•๐Ÿผ ๐Ÿ–•๐Ÿฝ ๐Ÿ–•๐Ÿพ ๐Ÿ–•๐Ÿฟ ๐Ÿ‘‡ ๐Ÿ‘‡๐Ÿป ๐Ÿ‘‡๐Ÿผ ๐Ÿ‘‡๐Ÿฝ ๐Ÿ‘‡๐Ÿพ ๐Ÿ‘‡๐Ÿฟ โœŒ๏ธ โœŒ๐Ÿป โœŒ๐Ÿผ โœŒ๐Ÿฝ โœŒ๐Ÿพ โœŒ๐Ÿฟ ๐Ÿคž ๐Ÿคž๐Ÿป ๐Ÿคž๐Ÿผ ๐Ÿคž๐Ÿฝ ๐Ÿคž๐Ÿพ ๐Ÿคž๐Ÿฟ ๐Ÿ–– ๐Ÿ––๐Ÿป ๐Ÿ––๐Ÿผ ๐Ÿ––๐Ÿฝ ๐Ÿ––๐Ÿพ ๐Ÿ––๐Ÿฟ ๐Ÿค˜ ๐Ÿค˜๐Ÿป ๐Ÿค˜๐Ÿผ ๐Ÿค˜๐Ÿฝ ๐Ÿค˜๐Ÿพ ๐Ÿค˜๐Ÿฟ ๐Ÿค™ ๐Ÿค™๐Ÿป ๐Ÿค™๐Ÿผ ๐Ÿค™๐Ÿฝ ๐Ÿค™๐Ÿพ ๐Ÿค™๐Ÿฟ ๐Ÿ–๏ธ ๐Ÿ–๐Ÿป ๐Ÿ–๐Ÿผ ๐Ÿ–๐Ÿฝ ๐Ÿ–๐Ÿพ ๐Ÿ–๐Ÿฟ โœ‹ โœ‹๐Ÿป โœ‹๐Ÿผ โœ‹๐Ÿฝ โœ‹๐Ÿพ โœ‹๐Ÿฟ ๐Ÿ‘Œ ๐Ÿ‘Œ๐Ÿป ๐Ÿ‘Œ๐Ÿผ ๐Ÿ‘Œ๐Ÿฝ ๐Ÿ‘Œ๐Ÿพ ๐Ÿ‘Œ๐Ÿฟ ๐Ÿ‘ ๐Ÿ‘๐Ÿป ๐Ÿ‘๐Ÿผ ๐Ÿ‘๐Ÿฝ ๐Ÿ‘๐Ÿพ ๐Ÿ‘๐Ÿฟ ๐Ÿ‘Ž ๐Ÿ‘Ž๐Ÿป ๐Ÿ‘Ž๐Ÿผ ๐Ÿ‘Ž๐Ÿฝ ๐Ÿ‘Ž๐Ÿพ ๐Ÿ‘Ž๐Ÿฟ โœŠ โœŠ๐Ÿป โœŠ๐Ÿผ โœŠ๐Ÿฝ โœŠ๐Ÿพ โœŠ๐Ÿฟ ๐Ÿ‘Š ๐Ÿ‘Š๐Ÿป ๐Ÿ‘Š๐Ÿผ ๐Ÿ‘Š๐Ÿฝ ๐Ÿ‘Š๐Ÿพ ๐Ÿ‘Š๐Ÿฟ ๐Ÿค› ๐Ÿค›๐Ÿป ๐Ÿค›๐Ÿผ ๐Ÿค›๐Ÿฝ ๐Ÿค›๐Ÿพ ๐Ÿค›๐Ÿฟ ๐Ÿคœ ๐Ÿคœ๐Ÿป ๐Ÿคœ๐Ÿผ ๐Ÿคœ๐Ÿฝ ๐Ÿคœ๐Ÿพ ๐Ÿคœ๐Ÿฟ ๐Ÿคš ๐Ÿคš๐Ÿป ๐Ÿคš๐Ÿผ ๐Ÿคš๐Ÿฝ ๐Ÿคš๐Ÿพ ๐Ÿคš๐Ÿฟ ๐Ÿ‘‹ ๐Ÿ‘‹๐Ÿป ๐Ÿ‘‹๐Ÿผ ๐Ÿ‘‹๐Ÿฝ ๐Ÿ‘‹๐Ÿพ ๐Ÿ‘‹๐Ÿฟ ๐ŸคŸ ๐ŸคŸ๐Ÿป ๐ŸคŸ๐Ÿผ ๐ŸคŸ๐Ÿฝ ๐ŸคŸ๐Ÿพ ๐ŸคŸ๐Ÿฟ โœ๏ธ โœ๐Ÿป โœ๐Ÿผ โœ๐Ÿฝ โœ๐Ÿพ โœ๐Ÿฟ ๐Ÿ‘ ๐Ÿ‘๐Ÿป ๐Ÿ‘๐Ÿผ ๐Ÿ‘๐Ÿฝ ๐Ÿ‘๐Ÿพ ๐Ÿ‘๐Ÿฟ ๐Ÿ‘ ๐Ÿ‘๐Ÿป ๐Ÿ‘๐Ÿผ ๐Ÿ‘๐Ÿฝ ๐Ÿ‘๐Ÿพ ๐Ÿ‘๐Ÿฟ ๐Ÿ™Œ ๐Ÿ™Œ๐Ÿป ๐Ÿ™Œ๐Ÿผ ๐Ÿ™Œ๐Ÿฝ ๐Ÿ™Œ๐Ÿพ ๐Ÿ™Œ๐Ÿฟ ๐Ÿคฒ ๐Ÿคฒ๐Ÿป ๐Ÿคฒ๐Ÿผ ๐Ÿคฒ๐Ÿฝ ๐Ÿคฒ๐Ÿพ ๐Ÿคฒ๐Ÿฟ ๐Ÿ™ ๐Ÿ™๐Ÿป ๐Ÿ™๐Ÿผ ๐Ÿ™๐Ÿฝ ๐Ÿ™๐Ÿพ ๐Ÿ™๐Ÿฟ ๐Ÿค ๐Ÿ’… ๐Ÿ’…๐Ÿป ๐Ÿ’…๐Ÿผ ๐Ÿ’…๐Ÿฝ ๐Ÿ’…๐Ÿพ ๐Ÿ’…๐Ÿฟ ๐Ÿ‘‚ ๐Ÿ‘‚๐Ÿป ๐Ÿ‘‚๐Ÿผ ๐Ÿ‘‚๐Ÿฝ ๐Ÿ‘‚๐Ÿพ ๐Ÿ‘‚๐Ÿฟ ๐Ÿ‘ƒ ๐Ÿ‘ƒ๐Ÿป ๐Ÿ‘ƒ๐Ÿผ ๐Ÿ‘ƒ๐Ÿฝ ๐Ÿ‘ƒ๐Ÿพ ๐Ÿ‘ƒ๐Ÿฟ ๐Ÿฆฐ ๐Ÿฆฑ ๐Ÿฆฒ ๐Ÿฆณ ๐Ÿ‘ฃ ๐Ÿ‘€ ๐Ÿ‘๏ธ ๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ ๐Ÿง  ๐Ÿฆด ๐Ÿฆท ๐Ÿ‘… ๐Ÿ‘„
+
+<h3>emotion</h3>
+
+๐Ÿ’‹ ๐Ÿ’˜ โค๏ธ ๐Ÿ’“ ๐Ÿ’” ๐Ÿ’• ๐Ÿ’– ๐Ÿ’— ๐Ÿ’™ ๐Ÿ’š ๐Ÿ’› ๐Ÿงก ๐Ÿ’œ ๐Ÿ–ค ๐Ÿ’ ๐Ÿ’ž ๐Ÿ’Ÿ โฃ๏ธ ๐Ÿ’Œ ๐Ÿ’ค ๐Ÿ’ข ๐Ÿ’ฃ ๐Ÿ’ฅ ๐Ÿ’ฆ ๐Ÿ’จ ๐Ÿ’ซ ๐Ÿ’ฌ ๐Ÿ—จ๏ธ ๐Ÿ—ฏ๏ธ ๐Ÿ’ญ ๐Ÿ•ณ๏ธ
+
+<h3>clothing</h3>
+
+๐Ÿ‘“ ๐Ÿ•ถ๏ธ ๐Ÿฅฝ ๐Ÿฅผ ๐Ÿ‘” ๐Ÿ‘• ๐Ÿ‘– ๐Ÿงฃ ๐Ÿงค ๐Ÿงฅ ๐Ÿงฆ ๐Ÿ‘— ๐Ÿ‘˜ ๐Ÿ‘™ ๐Ÿ‘š ๐Ÿ‘› ๐Ÿ‘œ ๐Ÿ‘ ๐Ÿ›๏ธ ๐ŸŽ’ ๐Ÿ‘ž ๐Ÿ‘Ÿ ๐Ÿฅพ ๐Ÿฅฟ ๐Ÿ‘  ๐Ÿ‘ก ๐Ÿ‘ข ๐Ÿ‘‘ ๐Ÿ‘’ ๐ŸŽฉ ๐ŸŽ“ ๐Ÿงข โ›‘๏ธ ๐Ÿ“ฟ ๐Ÿ’„ ๐Ÿ’ ๐Ÿ’Ž
+
+<h2>Animals & Nature</h2>
+
+<h3>animal-mammal</h3>
+
+๐Ÿต ๐Ÿ’ ๐Ÿฆ ๐Ÿถ ๐Ÿ• ๐Ÿฉ ๐Ÿบ ๐ŸฆŠ ๐Ÿฆ ๐Ÿฑ ๐Ÿˆ ๐Ÿฆ ๐Ÿฏ ๐Ÿ… ๐Ÿ† ๐Ÿด ๐ŸŽ ๐Ÿฆ„ ๐Ÿฆ“ ๐ŸฆŒ ๐Ÿฎ ๐Ÿ‚ ๐Ÿƒ ๐Ÿ„ ๐Ÿท ๐Ÿ– ๐Ÿ— ๐Ÿฝ ๐Ÿ ๐Ÿ‘ ๐Ÿ ๐Ÿช ๐Ÿซ ๐Ÿฆ™ ๐Ÿฆ’ ๐Ÿ˜ ๐Ÿฆ ๐Ÿฆ› ๐Ÿญ ๐Ÿ ๐Ÿ€ ๐Ÿน ๐Ÿฐ ๐Ÿ‡ ๐Ÿฟ๏ธ ๐Ÿฆ” ๐Ÿฆ‡ ๐Ÿป ๐Ÿจ ๐Ÿผ ๐Ÿฆ˜ ๐Ÿฆก ๐Ÿพ
+
+<h3>animal-bird</h3>
+
+๐Ÿฆƒ ๐Ÿ” ๐Ÿ“ ๐Ÿฃ ๐Ÿค ๐Ÿฅ ๐Ÿฆ ๐Ÿง ๐Ÿ•Š๏ธ ๐Ÿฆ… ๐Ÿฆ† ๐Ÿฆข ๐Ÿฆ‰ ๐Ÿฆš ๐Ÿฆœ
+
+<h3>animal-amphibian</h3>
+
+๐Ÿธ
+
+<h3>animal-reptile</h3>
+
+๐ŸŠ ๐Ÿข ๐ŸฆŽ ๐Ÿ ๐Ÿฒ ๐Ÿ‰ ๐Ÿฆ• ๐Ÿฆ–
+
+<h3>animal-marine</h3>
+
+๐Ÿณ ๐Ÿ‹ ๐Ÿฌ ๐ŸŸ ๐Ÿ  ๐Ÿก ๐Ÿฆˆ ๐Ÿ™ ๐Ÿš ๐Ÿฆ€ ๐Ÿฆž ๐Ÿฆ ๐Ÿฆ‘
+
+<h3>animal-bug</h3>
+
+๐ŸŒ ๐Ÿฆ‹ ๐Ÿ› ๐Ÿœ ๐Ÿ ๐Ÿž ๐Ÿฆ— ๐Ÿ•ท๏ธ ๐Ÿ•ธ๏ธ ๐Ÿฆ‚ ๐ŸฆŸ ๐Ÿฆ 
+
+<h3>plant-flower</h3>
+
+๐Ÿ’ ๐ŸŒธ ๐Ÿ’ฎ ๐Ÿต๏ธ ๐ŸŒน ๐Ÿฅ€ ๐ŸŒบ ๐ŸŒป ๐ŸŒผ ๐ŸŒท
+
+<h3>plant-other</h3>
+
+๐ŸŒฑ ๐ŸŒฒ ๐ŸŒณ ๐ŸŒด ๐ŸŒต ๐ŸŒพ ๐ŸŒฟ โ˜˜๏ธ ๐Ÿ€ ๐Ÿ ๐Ÿ‚ ๐Ÿƒ
+
+<h2>Food & Drink</h2>
+
+<h3>food-fruit</h3>
+
+๐Ÿ‡ ๐Ÿˆ ๐Ÿ‰ ๐ŸŠ ๐Ÿ‹ ๐ŸŒ ๐Ÿ ๐Ÿฅญ ๐ŸŽ ๐Ÿ ๐Ÿ ๐Ÿ‘ ๐Ÿ’ ๐Ÿ“ ๐Ÿฅ ๐Ÿ… ๐Ÿฅฅ
+
+<h3>food-vegetable</h3>
+
+๐Ÿฅ‘ ๐Ÿ† ๐Ÿฅ” ๐Ÿฅ• ๐ŸŒฝ ๐ŸŒถ๏ธ ๐Ÿฅ’ ๐Ÿฅฌ ๐Ÿฅฆ ๐Ÿ„ ๐Ÿฅœ ๐ŸŒฐ
+
+<h3>food-prepared</h3>
+
+๐Ÿž ๐Ÿฅ ๐Ÿฅ– ๐Ÿฅจ ๐Ÿฅฏ ๐Ÿฅž ๐Ÿง€ ๐Ÿ– ๐Ÿ— ๐Ÿฅฉ ๐Ÿฅ“ ๐Ÿ” ๐ŸŸ ๐Ÿ• ๐ŸŒญ ๐Ÿฅช ๐ŸŒฎ ๐ŸŒฏ ๐Ÿฅ™ ๐Ÿฅš ๐Ÿณ ๐Ÿฅ˜ ๐Ÿฒ ๐Ÿฅฃ ๐Ÿฅ— ๐Ÿฟ ๐Ÿง‚ ๐Ÿฅซ
+
+<h3>food-asian</h3>
+
+๐Ÿฑ ๐Ÿ˜ ๐Ÿ™ ๐Ÿš ๐Ÿ› ๐Ÿœ ๐Ÿ ๐Ÿ  ๐Ÿข ๐Ÿฃ ๐Ÿค ๐Ÿฅ ๐Ÿฅฎ ๐Ÿก ๐ŸฅŸ ๐Ÿฅ  ๐Ÿฅก
+
+<h3>food-sweet</h3>
+
+๐Ÿฆ ๐Ÿง ๐Ÿจ ๐Ÿฉ ๐Ÿช ๐ŸŽ‚ ๐Ÿฐ ๐Ÿง ๐Ÿฅง ๐Ÿซ ๐Ÿฌ ๐Ÿญ ๐Ÿฎ ๐Ÿฏ
+
+<h3>drink</h3>
+
+๐Ÿผ ๐Ÿฅ› โ˜• ๐Ÿต ๐Ÿถ ๐Ÿพ ๐Ÿท ๐Ÿธ ๐Ÿน ๐Ÿบ ๐Ÿป ๐Ÿฅ‚ ๐Ÿฅƒ ๐Ÿฅค
+
+<h3>dishware</h3>
+
+๐Ÿฅข ๐Ÿฝ๏ธ ๐Ÿด ๐Ÿฅ„ ๐Ÿ”ช ๐Ÿบ
+
+<h2>Travel & Places</h2>
+
+<h3>place-map</h3>
+
+๐ŸŒ ๐ŸŒŽ ๐ŸŒ ๐ŸŒ ๐Ÿ—บ๏ธ ๐Ÿ—พ ๐Ÿงญ
+
+<h3>place-geographic</h3>
+
+๐Ÿ”๏ธ โ›ฐ๏ธ ๐ŸŒ‹ ๐Ÿ—ป ๐Ÿ•๏ธ ๐Ÿ–๏ธ ๐Ÿœ๏ธ ๐Ÿ๏ธ ๐Ÿž๏ธ
+
+<h3>place-building</h3>
+
+๐ŸŸ๏ธ ๐Ÿ›๏ธ ๐Ÿ—๏ธ ๐Ÿงฑ ๐Ÿ˜๏ธ ๐Ÿš๏ธ ๐Ÿ  ๐Ÿก ๐Ÿข ๐Ÿฃ ๐Ÿค ๐Ÿฅ ๐Ÿฆ ๐Ÿจ ๐Ÿฉ ๐Ÿช ๐Ÿซ ๐Ÿฌ ๐Ÿญ ๐Ÿฏ ๐Ÿฐ ๐Ÿ’’ ๐Ÿ—ผ ๐Ÿ—ฝ
+
+<h3>place-religious</h3>
+
+โ›ช ๐Ÿ•Œ ๐Ÿ• โ›ฉ๏ธ ๐Ÿ•‹
+
+<h3>place-other</h3>
+
+โ›ฒ โ›บ ๐ŸŒ ๐ŸŒƒ ๐Ÿ™๏ธ ๐ŸŒ„ ๐ŸŒ… ๐ŸŒ† ๐ŸŒ‡ ๐ŸŒ‰ โ™จ๏ธ ๐ŸŒŒ ๐ŸŽ  ๐ŸŽก ๐ŸŽข ๐Ÿ’ˆ ๐ŸŽช
+
+<h3>transport-ground</h3>
+
+๐Ÿš‚ ๐Ÿšƒ ๐Ÿš„ ๐Ÿš… ๐Ÿš† ๐Ÿš‡ ๐Ÿšˆ ๐Ÿš‰ ๐ŸšŠ ๐Ÿš ๐Ÿšž ๐Ÿš‹ ๐ŸšŒ ๐Ÿš ๐ŸšŽ ๐Ÿš ๐Ÿš‘ ๐Ÿš’ ๐Ÿš“ ๐Ÿš” ๐Ÿš• ๐Ÿš– ๐Ÿš— ๐Ÿš˜ ๐Ÿš™ ๐Ÿšš ๐Ÿš› ๐Ÿšœ ๐Ÿšฒ ๐Ÿ›ด ๐Ÿ›น ๐Ÿ›ต ๐Ÿš ๐Ÿ›ฃ๏ธ ๐Ÿ›ค๏ธ ๐Ÿ›ข๏ธ โ›ฝ ๐Ÿšจ ๐Ÿšฅ ๐Ÿšฆ ๐Ÿ›‘ ๐Ÿšง
+
+<h3>transport-water</h3>
+
+โš“ โ›ต ๐Ÿ›ถ ๐Ÿšค ๐Ÿ›ณ๏ธ โ›ด๏ธ ๐Ÿ›ฅ๏ธ ๐Ÿšข
+
+<h3>transport-air</h3>
+
+โœˆ๏ธ ๐Ÿ›ฉ๏ธ ๐Ÿ›ซ ๐Ÿ›ฌ ๐Ÿ’บ ๐Ÿš ๐ŸšŸ ๐Ÿš  ๐Ÿšก ๐Ÿ›ฐ๏ธ ๐Ÿš€ ๐Ÿ›ธ
+
+<h3>hotel</h3>
+
+๐Ÿ›Ž๏ธ ๐Ÿงณ
+
+<h3>time</h3>
+
+โŒ› โณ โŒš โฐ โฑ๏ธ โฒ๏ธ ๐Ÿ•ฐ๏ธ ๐Ÿ•› ๐Ÿ•ง ๐Ÿ• ๐Ÿ•œ ๐Ÿ•‘ ๐Ÿ• ๐Ÿ•’ ๐Ÿ•ž ๐Ÿ•“ ๐Ÿ•Ÿ ๐Ÿ•” ๐Ÿ•  ๐Ÿ•• ๐Ÿ•ก ๐Ÿ•– ๐Ÿ•ข ๐Ÿ•— ๐Ÿ•ฃ ๐Ÿ•˜ ๐Ÿ•ค ๐Ÿ•™ ๐Ÿ•ฅ ๐Ÿ•š ๐Ÿ•ฆ
+
+<h3>sky & weather</h3>
+
+๐ŸŒ‘ ๐ŸŒ’ ๐ŸŒ“ ๐ŸŒ” ๐ŸŒ• ๐ŸŒ– ๐ŸŒ— ๐ŸŒ˜ ๐ŸŒ™ ๐ŸŒš ๐ŸŒ› ๐ŸŒœ ๐ŸŒก๏ธ โ˜€๏ธ ๐ŸŒ ๐ŸŒž โญ ๐ŸŒŸ ๐ŸŒ  โ˜๏ธ โ›… โ›ˆ๏ธ ๐ŸŒค๏ธ ๐ŸŒฅ๏ธ ๐ŸŒฆ๏ธ ๐ŸŒง๏ธ ๐ŸŒจ๏ธ ๐ŸŒฉ๏ธ ๐ŸŒช๏ธ ๐ŸŒซ๏ธ ๐ŸŒฌ๏ธ ๐ŸŒ€ ๐ŸŒˆ ๐ŸŒ‚ โ˜‚๏ธ โ˜” โ›ฑ๏ธ โšก โ„๏ธ โ˜ƒ๏ธ โ›„ โ˜„๏ธ ๐Ÿ”ฅ ๐Ÿ’ง ๐ŸŒŠ
+
+<h2>Activities</h2>
+
+<h3>event</h3>
+
+๐ŸŽƒ ๐ŸŽ„ ๐ŸŽ† ๐ŸŽ‡ ๐Ÿงจ โœจ ๐ŸŽˆ ๐ŸŽ‰ ๐ŸŽŠ ๐ŸŽ‹ ๐ŸŽ ๐ŸŽŽ ๐ŸŽ ๐ŸŽ ๐ŸŽ‘ ๐Ÿงง ๐ŸŽ€ ๐ŸŽ ๐ŸŽ—๏ธ ๐ŸŽŸ๏ธ ๐ŸŽซ
+
+<h3>award-medal</h3>
+
+๐ŸŽ–๏ธ ๐Ÿ† ๐Ÿ… ๐Ÿฅ‡ ๐Ÿฅˆ ๐Ÿฅ‰
+
+<h3>sport</h3>
+
+โšฝ โšพ ๐ŸฅŽ ๐Ÿ€ ๐Ÿ ๐Ÿˆ ๐Ÿ‰ ๐ŸŽพ ๐Ÿฅ ๐ŸŽณ ๐Ÿ ๐Ÿ‘ ๐Ÿ’ ๐Ÿฅ ๐Ÿ“ ๐Ÿธ ๐ŸฅŠ ๐Ÿฅ‹ ๐Ÿฅ… โ›ณ โ›ธ๏ธ ๐ŸŽฃ ๐ŸŽฝ ๐ŸŽฟ ๐Ÿ›ท ๐ŸฅŒ
+
+<h3>game</h3>
+
+๐ŸŽฏ ๐ŸŽฑ ๐Ÿ”ฎ ๐Ÿงฟ ๐ŸŽฎ ๐Ÿ•น๏ธ ๐ŸŽฐ ๐ŸŽฒ ๐Ÿงฉ ๐Ÿงธ โ™ ๏ธ โ™ฅ๏ธ โ™ฆ๏ธ โ™ฃ๏ธ โ™Ÿ๏ธ ๐Ÿƒ ๐Ÿ€„ ๐ŸŽด
+
+<h3>arts & crafts</h3>
+
+๐ŸŽญ ๐Ÿ–ผ๏ธ ๐ŸŽจ ๐Ÿงต ๐Ÿงถ
+
+<h2>Objects</h2>
+
+<h3>sound</h3>
+
+๐Ÿ”‡ ๐Ÿ”ˆ ๐Ÿ”‰ ๐Ÿ”Š ๐Ÿ“ข ๐Ÿ“ฃ ๐Ÿ“ฏ ๐Ÿ”” ๐Ÿ”•
+
+<h3>music</h3>
+
+๐ŸŽผ ๐ŸŽต ๐ŸŽถ ๐ŸŽ™๏ธ ๐ŸŽš๏ธ ๐ŸŽ›๏ธ ๐ŸŽค ๐ŸŽง ๐Ÿ“ป
+
+<h3>musical-instrument</h3>
+
+๐ŸŽท ๐ŸŽธ ๐ŸŽน ๐ŸŽบ ๐ŸŽป ๐Ÿฅ
+
+<h3>phone</h3>
+
+๐Ÿ“ฑ ๐Ÿ“ฒ โ˜Ž๏ธ ๐Ÿ“ž ๐Ÿ“Ÿ ๐Ÿ“ 
+
+<h3>computer</h3>
+
+๐Ÿ”‹ ๐Ÿ”Œ ๐Ÿ’ป ๐Ÿ–ฅ๏ธ ๐Ÿ–จ๏ธ โŒจ๏ธ ๐Ÿ–ฑ๏ธ ๐Ÿ–ฒ๏ธ ๐Ÿ’ฝ ๐Ÿ’พ ๐Ÿ’ฟ ๐Ÿ“€ ๐Ÿงฎ
+
+<h3>light & video</h3>
+
+๐ŸŽฅ ๐ŸŽž๏ธ ๐Ÿ“ฝ๏ธ ๐ŸŽฌ ๐Ÿ“บ ๐Ÿ“ท ๐Ÿ“ธ ๐Ÿ“น ๐Ÿ“ผ ๐Ÿ” ๐Ÿ”Ž ๐Ÿ•ฏ๏ธ ๐Ÿ’ก ๐Ÿ”ฆ ๐Ÿฎ
+
+<h3>book-paper</h3>
+
+๐Ÿ“” ๐Ÿ“• ๐Ÿ“– ๐Ÿ“— ๐Ÿ“˜ ๐Ÿ“™ ๐Ÿ“š ๐Ÿ““ ๐Ÿ“’ ๐Ÿ“ƒ ๐Ÿ“œ ๐Ÿ“„ ๐Ÿ“ฐ ๐Ÿ—ž๏ธ ๐Ÿ“‘ ๐Ÿ”– ๐Ÿท๏ธ
+
+<h3>money</h3>
+
+๐Ÿ’ฐ ๐Ÿ’ด ๐Ÿ’ต ๐Ÿ’ถ ๐Ÿ’ท ๐Ÿ’ธ ๐Ÿ’ณ ๐Ÿงพ ๐Ÿ’น ๐Ÿ’ฑ ๐Ÿ’ฒ
+
+<h3>mail</h3>
+
+โœ‰๏ธ ๐Ÿ“ง ๐Ÿ“จ ๐Ÿ“ฉ ๐Ÿ“ค ๐Ÿ“ฅ ๐Ÿ“ฆ ๐Ÿ“ซ ๐Ÿ“ช ๐Ÿ“ฌ ๐Ÿ“ญ ๐Ÿ“ฎ ๐Ÿ—ณ๏ธ
+
+<h3>writing</h3>
+
+โœ๏ธ โœ’๏ธ ๐Ÿ–‹๏ธ ๐Ÿ–Š๏ธ ๐Ÿ–Œ๏ธ ๐Ÿ–๏ธ ๐Ÿ“
+
+<h3>office</h3>
+
+๐Ÿ’ผ ๐Ÿ“ ๐Ÿ“‚ ๐Ÿ—‚๏ธ ๐Ÿ“… ๐Ÿ“† ๐Ÿ—’๏ธ ๐Ÿ—“๏ธ ๐Ÿ“‡ ๐Ÿ“ˆ ๐Ÿ“‰ ๐Ÿ“Š ๐Ÿ“‹ ๐Ÿ“Œ ๐Ÿ“ ๐Ÿ“Ž ๐Ÿ–‡๏ธ ๐Ÿ“ ๐Ÿ“ โœ‚๏ธ ๐Ÿ—ƒ๏ธ ๐Ÿ—„๏ธ ๐Ÿ—‘๏ธ
+
+<h3>lock</h3>
+
+๐Ÿ”’ ๐Ÿ”“ ๐Ÿ” ๐Ÿ” ๐Ÿ”‘ ๐Ÿ—๏ธ
+
+<h3>tool</h3>
+
+๐Ÿ”จ โ›๏ธ โš’๏ธ ๐Ÿ› ๏ธ ๐Ÿ—ก๏ธ โš”๏ธ ๐Ÿ”ซ ๐Ÿน ๐Ÿ›ก๏ธ ๐Ÿ”ง ๐Ÿ”ฉ โš™๏ธ ๐Ÿ—œ๏ธ โš–๏ธ ๐Ÿ”— โ›“๏ธ ๐Ÿงฐ ๐Ÿงฒ
+
+<h3>science</h3>
+
+โš—๏ธ ๐Ÿงช ๐Ÿงซ ๐Ÿงฌ ๐Ÿ”ฌ ๐Ÿ”ญ ๐Ÿ“ก
+
+<h3>medical</h3>
+
+๐Ÿ’‰ ๐Ÿ’Š
+
+<h3>household</h3>
+
+๐Ÿšช ๐Ÿ›๏ธ ๐Ÿ›‹๏ธ ๐Ÿšฝ ๐Ÿšฟ ๐Ÿ› ๐Ÿงด ๐Ÿงท ๐Ÿงน ๐Ÿงบ ๐Ÿงป ๐Ÿงผ ๐Ÿงฝ ๐Ÿงฏ ๐Ÿ›’
+
+<h3>other-object</h3>
+
+๐Ÿšฌ โšฐ๏ธ โšฑ๏ธ ๐Ÿ—ฟ
+
+<h2>Symbols</h2>
+
+<h3>transport-sign</h3>
+
+๐Ÿง ๐Ÿšฎ ๐Ÿšฐ โ™ฟ ๐Ÿšน ๐Ÿšบ ๐Ÿšป ๐Ÿšผ ๐Ÿšพ ๐Ÿ›‚ ๐Ÿ›ƒ ๐Ÿ›„ ๐Ÿ›…
+
+<h3>warning</h3>
+
+โš ๏ธ ๐Ÿšธ โ›” ๐Ÿšซ ๐Ÿšณ ๐Ÿšญ ๐Ÿšฏ ๐Ÿšฑ ๐Ÿšท ๐Ÿ“ต ๐Ÿ”ž โ˜ข๏ธ โ˜ฃ๏ธ
+
+<h3>arrow</h3>
+
+โฌ†๏ธ โ†—๏ธ โžก๏ธ โ†˜๏ธ โฌ‡๏ธ โ†™๏ธ โฌ…๏ธ โ†–๏ธ โ†•๏ธ โ†”๏ธ โ†ฉ๏ธ โ†ช๏ธ โคด๏ธ โคต๏ธ ๐Ÿ”ƒ ๐Ÿ”„ ๐Ÿ”™ ๐Ÿ”š ๐Ÿ”› ๐Ÿ”œ ๐Ÿ”
+
+<h3>religion</h3>
+
+๐Ÿ› โš›๏ธ ๐Ÿ•‰๏ธ โœก๏ธ โ˜ธ๏ธ โ˜ฏ๏ธ โœ๏ธ โ˜ฆ๏ธ โ˜ช๏ธ โ˜ฎ๏ธ ๐Ÿ•Ž ๐Ÿ”ฏ
+
+<h3>zodiac</h3>
+
+โ™ˆ โ™‰ โ™Š โ™‹ โ™Œ โ™ โ™Ž โ™ โ™ โ™‘ โ™’ โ™“ โ›Ž
+
+<h3>av-symbol</h3>
+
+๐Ÿ”€ ๐Ÿ” ๐Ÿ”‚ โ–ถ๏ธ โฉ โญ๏ธ โฏ๏ธ โ—€๏ธ โช โฎ๏ธ ๐Ÿ”ผ โซ ๐Ÿ”ฝ โฌ โธ๏ธ โน๏ธ โบ๏ธ โ๏ธ ๐ŸŽฆ ๐Ÿ”… ๐Ÿ”† ๐Ÿ“ถ ๐Ÿ“ณ ๐Ÿ“ด
+
+<h3>other-symbol</h3>
+
+โ™€๏ธ โ™‚๏ธ โš•๏ธ โ™พ๏ธ โ™ป๏ธ โšœ๏ธ ๐Ÿ”ฑ ๐Ÿ“› ๐Ÿ”ฐ โญ• โœ… โ˜‘๏ธ โœ”๏ธ โœ–๏ธ โŒ โŽ โž• โž– โž— โžฐ โžฟ ใ€ฝ๏ธ โœณ๏ธ โœด๏ธ โ‡๏ธ โ€ผ๏ธ โ‰๏ธ โ“ โ” โ• โ— ใ€ฐ๏ธ ยฉ๏ธ ยฎ๏ธ โ„ข๏ธ
+
+<h3>keycap</h3>
+
+#๏ธโƒฃ *๏ธโƒฃ 0๏ธโƒฃ 1๏ธโƒฃ 2๏ธโƒฃ 3๏ธโƒฃ 4๏ธโƒฃ 5๏ธโƒฃ 6๏ธโƒฃ 7๏ธโƒฃ 8๏ธโƒฃ 9๏ธโƒฃ ๐Ÿ”Ÿ
+
+<h3>alphanum</h3>
+
+๐Ÿ’ฏ ๐Ÿ”  ๐Ÿ”ก ๐Ÿ”ข ๐Ÿ”ฃ ๐Ÿ”ค ๐Ÿ…ฐ๏ธ ๐Ÿ†Ž ๐Ÿ…ฑ๏ธ ๐Ÿ†‘ ๐Ÿ†’ ๐Ÿ†“ โ„น๏ธ ๐Ÿ†” โ“‚๏ธ ๐Ÿ†• ๐Ÿ†– ๐Ÿ…พ๏ธ ๐Ÿ†— ๐Ÿ…ฟ๏ธ ๐Ÿ†˜ ๐Ÿ†™ ๐Ÿ†š ๐Ÿˆ ๐Ÿˆ‚๏ธ ๐Ÿˆท๏ธ ๐Ÿˆถ ๐Ÿˆฏ ๐Ÿ‰ ๐Ÿˆน ๐Ÿˆš ๐Ÿˆฒ ๐Ÿ‰‘ ๐Ÿˆธ ๐Ÿˆด ๐Ÿˆณ ใŠ—๏ธ ใŠ™๏ธ ๐Ÿˆบ ๐Ÿˆต
+
+<h3>geometric</h3>
+
+โ–ช๏ธ โ–ซ๏ธ โ—ป๏ธ โ—ผ๏ธ โ—ฝ โ—พ โฌ› โฌœ ๐Ÿ”ถ ๐Ÿ”ท ๐Ÿ”ธ ๐Ÿ”น ๐Ÿ”บ ๐Ÿ”ป ๐Ÿ’  ๐Ÿ”˜ ๐Ÿ”ฒ ๐Ÿ”ณ โšช โšซ ๐Ÿ”ด ๐Ÿ”ต
+
+<h2>Flags</h2>
+
+<h3>flag</h3>
+
+๐Ÿ ๐Ÿšฉ ๐ŸŽŒ ๐Ÿด ๐Ÿณ๏ธ ๐Ÿณ๏ธโ€๐ŸŒˆ ๐Ÿดโ€โ˜ ๏ธ
+
+<h3>country-flag</h3>
+
+๐Ÿ‡ฆ๐Ÿ‡จ ๐Ÿ‡ฆ๐Ÿ‡ฉ ๐Ÿ‡ฆ๐Ÿ‡ช ๐Ÿ‡ฆ๐Ÿ‡ซ ๐Ÿ‡ฆ๐Ÿ‡ฌ ๐Ÿ‡ฆ๐Ÿ‡ฎ ๐Ÿ‡ฆ๐Ÿ‡ฑ ๐Ÿ‡ฆ๐Ÿ‡ฒ ๐Ÿ‡ฆ๐Ÿ‡ด ๐Ÿ‡ฆ๐Ÿ‡ถ ๐Ÿ‡ฆ๐Ÿ‡ท ๐Ÿ‡ฆ๐Ÿ‡ธ ๐Ÿ‡ฆ๐Ÿ‡น ๐Ÿ‡ฆ๐Ÿ‡บ ๐Ÿ‡ฆ๐Ÿ‡ผ ๐Ÿ‡ฆ๐Ÿ‡ฝ ๐Ÿ‡ฆ๐Ÿ‡ฟ ๐Ÿ‡ง๐Ÿ‡ฆ ๐Ÿ‡ง๐Ÿ‡ง ๐Ÿ‡ง๐Ÿ‡ฉ ๐Ÿ‡ง๐Ÿ‡ช ๐Ÿ‡ง๐Ÿ‡ซ ๐Ÿ‡ง๐Ÿ‡ฌ ๐Ÿ‡ง๐Ÿ‡ญ ๐Ÿ‡ง๐Ÿ‡ฎ ๐Ÿ‡ง๐Ÿ‡ฏ ๐Ÿ‡ง๐Ÿ‡ฑ ๐Ÿ‡ง๐Ÿ‡ฒ ๐Ÿ‡ง๐Ÿ‡ณ ๐Ÿ‡ง๐Ÿ‡ด ๐Ÿ‡ง๐Ÿ‡ถ ๐Ÿ‡ง๐Ÿ‡ท ๐Ÿ‡ง๐Ÿ‡ธ ๐Ÿ‡ง๐Ÿ‡น ๐Ÿ‡ง๐Ÿ‡ป ๐Ÿ‡ง๐Ÿ‡ผ ๐Ÿ‡ง๐Ÿ‡พ ๐Ÿ‡ง๐Ÿ‡ฟ ๐Ÿ‡จ๐Ÿ‡ฆ ๐Ÿ‡จ๐Ÿ‡จ ๐Ÿ‡จ๐Ÿ‡ฉ ๐Ÿ‡จ๐Ÿ‡ซ ๐Ÿ‡จ๐Ÿ‡ฌ ๐Ÿ‡จ๐Ÿ‡ญ ๐Ÿ‡จ๐Ÿ‡ฎ ๐Ÿ‡จ๐Ÿ‡ฐ ๐Ÿ‡จ๐Ÿ‡ฑ ๐Ÿ‡จ๐Ÿ‡ฒ ๐Ÿ‡จ๐Ÿ‡ณ ๐Ÿ‡จ๐Ÿ‡ด ๐Ÿ‡จ๐Ÿ‡ต ๐Ÿ‡จ๐Ÿ‡ท ๐Ÿ‡จ๐Ÿ‡บ ๐Ÿ‡จ๐Ÿ‡ป ๐Ÿ‡จ๐Ÿ‡ผ ๐Ÿ‡จ๐Ÿ‡ฝ ๐Ÿ‡จ๐Ÿ‡พ ๐Ÿ‡จ๐Ÿ‡ฟ ๐Ÿ‡ฉ๐Ÿ‡ช ๐Ÿ‡ฉ๐Ÿ‡ฌ ๐Ÿ‡ฉ๐Ÿ‡ฏ ๐Ÿ‡ฉ๐Ÿ‡ฐ ๐Ÿ‡ฉ๐Ÿ‡ฒ ๐Ÿ‡ฉ๐Ÿ‡ด ๐Ÿ‡ฉ๐Ÿ‡ฟ ๐Ÿ‡ช๐Ÿ‡ฆ ๐Ÿ‡ช๐Ÿ‡จ ๐Ÿ‡ช๐Ÿ‡ช ๐Ÿ‡ช๐Ÿ‡ฌ ๐Ÿ‡ช๐Ÿ‡ญ ๐Ÿ‡ช๐Ÿ‡ท ๐Ÿ‡ช๐Ÿ‡ธ ๐Ÿ‡ช๐Ÿ‡น ๐Ÿ‡ช๐Ÿ‡บ ๐Ÿ‡ซ๐Ÿ‡ฎ ๐Ÿ‡ซ๐Ÿ‡ฏ ๐Ÿ‡ซ๐Ÿ‡ฐ ๐Ÿ‡ซ๐Ÿ‡ฒ ๐Ÿ‡ซ๐Ÿ‡ด ๐Ÿ‡ซ๐Ÿ‡ท ๐Ÿ‡ฌ๐Ÿ‡ฆ ๐Ÿ‡ฌ๐Ÿ‡ง ๐Ÿ‡ฌ๐Ÿ‡ฉ ๐Ÿ‡ฌ๐Ÿ‡ช ๐Ÿ‡ฌ๐Ÿ‡ซ ๐Ÿ‡ฌ๐Ÿ‡ฌ ๐Ÿ‡ฌ๐Ÿ‡ญ ๐Ÿ‡ฌ๐Ÿ‡ฎ ๐Ÿ‡ฌ๐Ÿ‡ฑ ๐Ÿ‡ฌ๐Ÿ‡ฒ ๐Ÿ‡ฌ๐Ÿ‡ณ ๐Ÿ‡ฌ๐Ÿ‡ต ๐Ÿ‡ฌ๐Ÿ‡ถ ๐Ÿ‡ฌ๐Ÿ‡ท ๐Ÿ‡ฌ๐Ÿ‡ธ ๐Ÿ‡ฌ๐Ÿ‡น ๐Ÿ‡ฌ๐Ÿ‡บ ๐Ÿ‡ฌ๐Ÿ‡ผ ๐Ÿ‡ฌ๐Ÿ‡พ ๐Ÿ‡ญ๐Ÿ‡ฐ ๐Ÿ‡ญ๐Ÿ‡ฒ ๐Ÿ‡ญ๐Ÿ‡ณ ๐Ÿ‡ญ๐Ÿ‡ท ๐Ÿ‡ญ๐Ÿ‡น ๐Ÿ‡ญ๐Ÿ‡บ ๐Ÿ‡ฎ๐Ÿ‡จ ๐Ÿ‡ฎ๐Ÿ‡ฉ ๐Ÿ‡ฎ๐Ÿ‡ช ๐Ÿ‡ฎ๐Ÿ‡ฑ ๐Ÿ‡ฎ๐Ÿ‡ฒ ๐Ÿ‡ฎ๐Ÿ‡ณ ๐Ÿ‡ฎ๐Ÿ‡ด ๐Ÿ‡ฎ๐Ÿ‡ถ ๐Ÿ‡ฎ๐Ÿ‡ท ๐Ÿ‡ฎ๐Ÿ‡ธ ๐Ÿ‡ฎ๐Ÿ‡น ๐Ÿ‡ฏ๐Ÿ‡ช ๐Ÿ‡ฏ๐Ÿ‡ฒ ๐Ÿ‡ฏ๐Ÿ‡ด ๐Ÿ‡ฏ๐Ÿ‡ต ๐Ÿ‡ฐ๐Ÿ‡ช ๐Ÿ‡ฐ๐Ÿ‡ฌ ๐Ÿ‡ฐ๐Ÿ‡ญ ๐Ÿ‡ฐ๐Ÿ‡ฎ ๐Ÿ‡ฐ๐Ÿ‡ฒ ๐Ÿ‡ฐ๐Ÿ‡ณ ๐Ÿ‡ฐ๐Ÿ‡ต ๐Ÿ‡ฐ๐Ÿ‡ท ๐Ÿ‡ฐ๐Ÿ‡ผ ๐Ÿ‡ฐ๐Ÿ‡พ ๐Ÿ‡ฐ๐Ÿ‡ฟ ๐Ÿ‡ฑ๐Ÿ‡ฆ ๐Ÿ‡ฑ๐Ÿ‡ง ๐Ÿ‡ฑ๐Ÿ‡จ ๐Ÿ‡ฑ๐Ÿ‡ฎ ๐Ÿ‡ฑ๐Ÿ‡ฐ ๐Ÿ‡ฑ๐Ÿ‡ท ๐Ÿ‡ฑ๐Ÿ‡ธ ๐Ÿ‡ฑ๐Ÿ‡น ๐Ÿ‡ฑ๐Ÿ‡บ ๐Ÿ‡ฑ๐Ÿ‡ป ๐Ÿ‡ฑ๐Ÿ‡พ ๐Ÿ‡ฒ๐Ÿ‡ฆ ๐Ÿ‡ฒ๐Ÿ‡จ ๐Ÿ‡ฒ๐Ÿ‡ฉ ๐Ÿ‡ฒ๐Ÿ‡ช ๐Ÿ‡ฒ๐Ÿ‡ซ ๐Ÿ‡ฒ๐Ÿ‡ฌ ๐Ÿ‡ฒ๐Ÿ‡ญ ๐Ÿ‡ฒ๐Ÿ‡ฐ ๐Ÿ‡ฒ๐Ÿ‡ฑ ๐Ÿ‡ฒ๐Ÿ‡ฒ ๐Ÿ‡ฒ๐Ÿ‡ณ ๐Ÿ‡ฒ๐Ÿ‡ด ๐Ÿ‡ฒ๐Ÿ‡ต ๐Ÿ‡ฒ๐Ÿ‡ถ ๐Ÿ‡ฒ๐Ÿ‡ท ๐Ÿ‡ฒ๐Ÿ‡ธ ๐Ÿ‡ฒ๐Ÿ‡น ๐Ÿ‡ฒ๐Ÿ‡บ ๐Ÿ‡ฒ๐Ÿ‡ป ๐Ÿ‡ฒ๐Ÿ‡ผ ๐Ÿ‡ฒ๐Ÿ‡ฝ ๐Ÿ‡ฒ๐Ÿ‡พ ๐Ÿ‡ฒ๐Ÿ‡ฟ ๐Ÿ‡ณ๐Ÿ‡ฆ ๐Ÿ‡ณ๐Ÿ‡จ ๐Ÿ‡ณ๐Ÿ‡ช ๐Ÿ‡ณ๐Ÿ‡ซ ๐Ÿ‡ณ๐Ÿ‡ฌ ๐Ÿ‡ณ๐Ÿ‡ฎ ๐Ÿ‡ณ๐Ÿ‡ฑ ๐Ÿ‡ณ๐Ÿ‡ด ๐Ÿ‡ณ๐Ÿ‡ต ๐Ÿ‡ณ๐Ÿ‡ท ๐Ÿ‡ณ๐Ÿ‡บ ๐Ÿ‡ณ๐Ÿ‡ฟ ๐Ÿ‡ด๐Ÿ‡ฒ ๐Ÿ‡ต๐Ÿ‡ฆ ๐Ÿ‡ต๐Ÿ‡ช ๐Ÿ‡ต๐Ÿ‡ซ ๐Ÿ‡ต๐Ÿ‡ฌ ๐Ÿ‡ต๐Ÿ‡ญ ๐Ÿ‡ต๐Ÿ‡ฐ ๐Ÿ‡ต๐Ÿ‡ฑ ๐Ÿ‡ต๐Ÿ‡ฒ ๐Ÿ‡ต๐Ÿ‡ณ ๐Ÿ‡ต๐Ÿ‡ท ๐Ÿ‡ต๐Ÿ‡ธ ๐Ÿ‡ต๐Ÿ‡น ๐Ÿ‡ต๐Ÿ‡ผ ๐Ÿ‡ต๐Ÿ‡พ ๐Ÿ‡ถ๐Ÿ‡ฆ ๐Ÿ‡ท๐Ÿ‡ช ๐Ÿ‡ท๐Ÿ‡ด ๐Ÿ‡ท๐Ÿ‡ธ ๐Ÿ‡ท๐Ÿ‡บ ๐Ÿ‡ท๐Ÿ‡ผ ๐Ÿ‡ธ๐Ÿ‡ฆ ๐Ÿ‡ธ๐Ÿ‡ง ๐Ÿ‡ธ๐Ÿ‡จ ๐Ÿ‡ธ๐Ÿ‡ฉ ๐Ÿ‡ธ๐Ÿ‡ช ๐Ÿ‡ธ๐Ÿ‡ฌ ๐Ÿ‡ธ๐Ÿ‡ญ ๐Ÿ‡ธ๐Ÿ‡ฎ ๐Ÿ‡ธ๐Ÿ‡ฏ ๐Ÿ‡ธ๐Ÿ‡ฐ ๐Ÿ‡ธ๐Ÿ‡ฑ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ‡ธ๐Ÿ‡ณ ๐Ÿ‡ธ๐Ÿ‡ด ๐Ÿ‡ธ๐Ÿ‡ท ๐Ÿ‡ธ๐Ÿ‡ธ ๐Ÿ‡ธ๐Ÿ‡น ๐Ÿ‡ธ๐Ÿ‡ป ๐Ÿ‡ธ๐Ÿ‡ฝ ๐Ÿ‡ธ๐Ÿ‡พ ๐Ÿ‡ธ๐Ÿ‡ฟ ๐Ÿ‡น๐Ÿ‡ฆ ๐Ÿ‡น๐Ÿ‡จ ๐Ÿ‡น๐Ÿ‡ฉ ๐Ÿ‡น๐Ÿ‡ซ ๐Ÿ‡น๐Ÿ‡ฌ ๐Ÿ‡น๐Ÿ‡ญ ๐Ÿ‡น๐Ÿ‡ฏ ๐Ÿ‡น๐Ÿ‡ฐ ๐Ÿ‡น๐Ÿ‡ฑ ๐Ÿ‡น๐Ÿ‡ฒ ๐Ÿ‡น๐Ÿ‡ณ ๐Ÿ‡น๐Ÿ‡ด ๐Ÿ‡น๐Ÿ‡ท ๐Ÿ‡น๐Ÿ‡น ๐Ÿ‡น๐Ÿ‡ป ๐Ÿ‡น๐Ÿ‡ผ ๐Ÿ‡น๐Ÿ‡ฟ ๐Ÿ‡บ๐Ÿ‡ฆ ๐Ÿ‡บ๐Ÿ‡ฌ ๐Ÿ‡บ๐Ÿ‡ฒ ๐Ÿ‡บ๐Ÿ‡ณ ๐Ÿ‡บ๐Ÿ‡ธ ๐Ÿ‡บ๐Ÿ‡พ ๐Ÿ‡บ๐Ÿ‡ฟ ๐Ÿ‡ป๐Ÿ‡ฆ ๐Ÿ‡ป๐Ÿ‡จ ๐Ÿ‡ป๐Ÿ‡ช ๐Ÿ‡ป๐Ÿ‡ฌ ๐Ÿ‡ป๐Ÿ‡ฎ ๐Ÿ‡ป๐Ÿ‡ณ ๐Ÿ‡ป๐Ÿ‡บ ๐Ÿ‡ผ๐Ÿ‡ซ ๐Ÿ‡ผ๐Ÿ‡ธ ๐Ÿ‡ฝ๐Ÿ‡ฐ ๐Ÿ‡พ๐Ÿ‡ช ๐Ÿ‡พ๐Ÿ‡น ๐Ÿ‡ฟ๐Ÿ‡ฆ ๐Ÿ‡ฟ๐Ÿ‡ฒ ๐Ÿ‡ฟ๐Ÿ‡ผ
+
+<h3>subdivision-flag</h3>
+
+๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ ๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ ๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ
+
+</body>
+</html>