-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* twitter emoji files added (v2 only) * Wrapper added * basic usage added * pom.xml is used to create the jar * jar is usable in other gwt projects
- Loading branch information
Showing
8,075 changed files
with
1,358,932 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
target/ | ||
*.iml | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
gwt-twemoji | ||
=========== | ||
|
||
This project aims to wrap the Twitter Emoji (https://github.com/twitter/twemoji) with GWT. | ||
|
||
Basic Usage | ||
----------- | ||
Twemoji twemoji = new Twemoji(); | ||
twemoji.init(); // init the wrapper | ||
String stringWithReplacedEmojis = twemoji.parse(strinWithUnicodes); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>de.phpmonkeys</groupId> | ||
<artifactId>gwt-twemoji</artifactId> | ||
<packaging>jar</packaging> | ||
<version>1.0-SNAPSHOT</version> | ||
|
||
<properties> | ||
<gwt.version>2.7.0</gwt.version> | ||
<maven.compiler.source>1.7</maven.compiler.source> | ||
<maven.compiler.target>1.7</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.gwt</groupId> | ||
<artifactId>gwt-user</artifactId> | ||
<version>${gwt.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<resources> | ||
<!-- bundle sources with the jar, so they are visible to GWT's compiler --> | ||
<!-- bundle the module descriptor with the jar, so it is visible to GWT's | ||
compiler --> | ||
<resource> | ||
<directory>src/main/java</directory> | ||
<includes> | ||
<include>**/*.java</include> | ||
<include>**/*.gwt.xml</include> | ||
</includes> | ||
</resource> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<includes> | ||
<include>**/72x72/*</include> | ||
<include>**/*.js</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.1//EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.1/distro-source/core/src/gwt-module.dtd"> | ||
<module> | ||
<!-- Inherit the core Web Toolkit stuff. --> | ||
<inherits name='com.google.gwt.user.User'/> | ||
|
||
<public path="public"/> | ||
</module> |
43 changes: 43 additions & 0 deletions
43
src/main/java/de/phpmonkeys/gwt/twemoji/client/Twemoji.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package de.phpmonkeys.gwt.twemoji.client; | ||
|
||
import com.google.gwt.core.client.GWT; | ||
import com.google.gwt.core.client.ScriptInjector; | ||
|
||
public class Twemoji { | ||
|
||
private String baseUrl; | ||
|
||
public Twemoji() { | ||
baseUrl = GWT.getModuleBaseURL() + "twemoji/"; | ||
} | ||
|
||
public void init() { | ||
injectScript(); | ||
initNative(baseUrl); | ||
} | ||
|
||
private final native void initNative(String baseUrl)/*-{ | ||
$wnd.twemoji.base = baseUrl; | ||
}-*/; | ||
|
||
public String parse(String htmlString) { | ||
return parseNative(htmlString); | ||
} | ||
|
||
private final native String parseNative(String htmlString)/*-{ | ||
return $wnd.twemoji.parse(htmlString); | ||
}-*/; | ||
|
||
private void injectScript() { | ||
if (!isInjected()) { | ||
ScriptInjector.fromString(TwemojiClientBundle.INSTANCE.twemojiJs().getText()).setWindow(ScriptInjector.TOP_WINDOW).inject(); | ||
} | ||
} | ||
|
||
private native final boolean isInjected() /*-{ | ||
if (!(typeof $wnd.twemoji === "undefined") && !(null===$wnd.twemoji)) { | ||
return true; | ||
} | ||
return false; | ||
}-*/; | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/java/de/phpmonkeys/gwt/twemoji/client/TwemojiClientBundle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package de.phpmonkeys.gwt.twemoji.client; | ||
|
||
import com.google.gwt.core.client.GWT; | ||
import com.google.gwt.resources.client.ClientBundle; | ||
import com.google.gwt.resources.client.TextResource; | ||
|
||
public interface TwemojiClientBundle extends ClientBundle { | ||
|
||
TwemojiClientBundle INSTANCE = GWT.create(TwemojiClientBundle.class); | ||
|
||
@Source("resources/twemoji.min.js") | ||
TextResource twemojiJs(); | ||
} |
Binary file added
BIN
+551 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+923 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f0cf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+557 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f170.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+458 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f171.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+562 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f17e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+403 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f17f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+682 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f18e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+561 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f191.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+603 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+517 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f193.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+495 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f194.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+668 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f195.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+670 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f196.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+640 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f197.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+722 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f198.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+553 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f199.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+747 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f19a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.05 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1e8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+697 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1e9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+287 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1ea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.05 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1eb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+849 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1ec.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+989 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1ee.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+662 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+245 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+723 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+481 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f6.png
Oops, something went wrong.
Binary file added
BIN
+453 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+847 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+205 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+835 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+387 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+230 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1fd.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+559 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+652 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+406 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1e7.png
Oops, something went wrong.
Binary file added
BIN
+336 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+390 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+244 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+411 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+940 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+279 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1ef.png
Oops, something went wrong.
Binary file added
BIN
+978 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+919 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+884 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+666 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+871 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f6.png
Oops, something went wrong.
Binary file added
BIN
+805 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+1000 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+270 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+214 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+669 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+1.1 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+459 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e7.png
Oops, something went wrong.
Binary file added
BIN
+445 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+706 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+602 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+389 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+356 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+220 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+961 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+341 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+395 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+245 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+453 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+569 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+574 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+357 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+913 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1fd.png
Oops, something went wrong.
Binary file added
BIN
+539 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+549 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+246 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+1.39 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+643 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1ef.png
Oops, something went wrong.
Binary file added
BIN
+251 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+696 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+584 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+524 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+454 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+362 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+688 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+247 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+461 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+586 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+809 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+362 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+833 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+560 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+368 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+260 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+956 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb-1f1ef.png
Oops, something went wrong.
Binary file added
BIN
+977 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+352 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+244 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+699 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1e7.png
Oops, something went wrong.
Binary file added
BIN
+714 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+313 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+604 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+268 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+400 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+687 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+443 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+257 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+1.11 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+730 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f6.png
Oops, something went wrong.
Binary file added
BIN
+237 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+1.01 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+638 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+830 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+426 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+704 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+580 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+664 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+836 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+344 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+532 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+669 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+246 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+281 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+613 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+241 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+388 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+596 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+408 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+1.39 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f6.png
Oops, something went wrong.
Binary file added
BIN
+458 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+229 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+292 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+840 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ef-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+575 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ef-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+618 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ef-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+335 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ef-1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+358 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1ef.png
Oops, something went wrong.
Binary file added
BIN
+727 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+851 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+964 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+704 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+875 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+462 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+784 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+411 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+1006 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+671 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+448 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1e7.png
Oops, something went wrong.
Binary file added
BIN
+719 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+575 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+666 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+438 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+463 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+245 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+244 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+204 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+364 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+316 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+372 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+241 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+547 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+634 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+280 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+820 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+627 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+604 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+504 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+708 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+920 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+743 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f6.png
Oops, something went wrong.
Binary file added
BIN
+502 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+838 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+467 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+251 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+468 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+737 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1fd.png
Oops, something went wrong.
Binary file added
BIN
+513 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+774 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+698 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+743 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+854 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+320 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+453 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+595 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+244 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+229 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+631 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+375 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+803 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+749 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+478 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+409 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f4-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+570 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+208 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+677 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+927 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+751 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+521 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+239 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+1.52 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+970 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+570 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+532 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+715 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+590 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+407 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f5.png
Oops, something went wrong.
Binary file added
BIN
+425 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f6-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+601 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f6.png
Oops, something went wrong.
Binary file added
BIN
+864 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f7-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f7-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+900 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f7-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+246 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f7-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+563 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f7-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+477 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+612 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+818 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1e7.png
Oops, something went wrong.
Binary file added
BIN
+729 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+535 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+256 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+457 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+883 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+627 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+229 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1ef.png
Oops, something went wrong.
Binary file added
BIN
+691 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+244 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+858 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+353 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+379 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+385 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+634 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+480 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+622 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+824 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1fd.png
Oops, something went wrong.
Binary file added
BIN
+415 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+798 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+515 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+1.1 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+886 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+233 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1e9.png
Oops, something went wrong.
Binary file added
BIN
+513 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+450 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+215 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1ed.png
Oops, something went wrong.
Binary file added
BIN
+522 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1ef.png
Oops, something went wrong.
Binary file added
BIN
+603 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+661 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f1.png
Oops, something went wrong.
Binary file added
BIN
+1004 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+423 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+258 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f4.png
Oops, something went wrong.
Binary file added
BIN
+436 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f7.png
Oops, something went wrong.
Binary file added
BIN
+528 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+1010 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+784 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1f9.png
Oops, something went wrong.
Binary file added
BIN
+239 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+571 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+352 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1f2.png
Oops, something went wrong.
Binary file added
BIN
+789 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+350 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+616 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1fe.png
Oops, something went wrong.
Binary file added
BIN
+439 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa-1f1ff.png
Oops, something went wrong.
Binary file added
BIN
+442 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+740 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1e6.png
Oops, something went wrong.
Binary file added
BIN
+439 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1e8.png
Oops, something went wrong.
Binary file added
BIN
+452 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1ea.png
Oops, something went wrong.
Binary file added
BIN
+1 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1ec.png
Oops, something went wrong.
Binary file added
BIN
+1.09 KB
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1ee.png
Oops, something went wrong.
Binary file added
BIN
+413 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1f3.png
Oops, something went wrong.
Binary file added
BIN
+792 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb-1f1fa.png
Oops, something went wrong.
Binary file added
BIN
+565 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fb.png
Oops, something went wrong.
Binary file added
BIN
+373 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fc-1f1eb.png
Oops, something went wrong.
Binary file added
BIN
+436 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fc-1f1f8.png
Oops, something went wrong.
Binary file added
BIN
+725 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fc.png
Oops, something went wrong.
Binary file added
BIN
+634 Bytes
...main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fd-1f1f0.png
Oops, something went wrong.
Binary file added
BIN
+603 Bytes
src/main/resources/de/phpmonkeys/gwt/twemoji/client/resources/72x72/1f1fd.png
Oops, something went wrong.
Oops, something went wrong.