X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/466e0b0bee6b61530b0be73a394df19828bf24f9..902eb27b5902755d9ab891d85fa5febfd6fd69e9:/Encode/Wingdings.pm diff --git a/Encode/Wingdings.pm b/Encode/Wingdings.pm deleted file mode 100644 index cb553dd..0000000 --- a/Encode/Wingdings.pm +++ /dev/null @@ -1,32 +0,0 @@ -package Encode::Wingdings; - -use 5.014; -no strict 'refs'; -use warnings; -use utf8; - -our $VERSION = '1.00'; - -use parent 'Encode::Encoding'; -__PACKAGE__->Define('wingdings'); - -our @MAP = (qw[ - 🖉 ✂ ✁ 👓 🕭 🕮 🕯 🕿 ✆ 🖂 🖃 📪 📫 📬 📭 📁 📂 📄 🗏 🗐 🗄 ⌛ 🖮 🖰 🖲 🖳 🖴 🖫 🖬 ✇ ✍ - 🖎 ✌ 👌 👍 👎 ☜ ☞ ☝ ☟ 🖐 ☺ 😐 ☹ 💣 ☠ 🏳 🏱 ✈ ☼ 💧 ❄ 🕆 ✞ 🕈 ✠ ✡ ☪ ☯ ॐ ☸ ♈ ♉ - ♊ ♋ ♌ ♍ ♎ ♏ ♐ ♑ ♒ ♓ 🙰 🙵 ● 🔾 ■ □ 🞐 ❑ ❒ ⬧ ⧫ ◆ ❖ ⬥ ⌧ ⮹ ⌘ 🏵 🏶 🙶 🙷  - ⓪ ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⓿ ❶ ❷ ❸ ❹ ❺ ❻ ❼ ❽ ❾ ❿ 🙢 🙠 🙡 🙣 🙞 🙜 🙝 🙟 · • - ▪ ⚪ 🞆 🞈 ◉ ◎ 🔿 ▪ ◻ 🟂 ✦ ★ ✶ ✴ ✹ ✵ ⯐ ⌖ ⟡ ⌑ ⯑ ✪ ✰ 🕐 🕑 🕒 🕓 🕔 🕕 🕖 🕗 🕘 - 🕙 🕚 🕛 ⮰ ⮱ ⮲ ⮳ ⮴ ⮵ ⮶ ⮷ 🙪 🙫 🙕 🙔 🙗 🙖 🙐 🙑 🙒 🙓 ⌫ ⌦ ⮘ ⮚ ⮙ ⮛ ⮈ ⮊ ⮉ ⮋ 🡨 - 🡪 🡩 🡫 🡬 🡭 🡯 🡮 🡸 🡺 🡹 🡻 🡼 🡽 🡿 🡾 ⇦ ⇨ ⇧ ⇩ ⬄ ⇳ ⬀ ⬁ ⬃ ⬂ 🢬 🢭 🗶 ✔ 🗷 🗹  -]); - -sub decode ($$;$) { - my ($self, $input, $check) = @_; - my $output = ''; - for (unpack 'C*', $input) { - $output .= $_ < 33 ? chr : ${ref($self).'::MAP'}[$_ - 33]; - } - return $output; -} - -1;