Kirki - Version 3.0.44

Version Description

Jun.25 2019, dev time: 30m

  • Fix: Google fonts getting constantly downloaded when WP_DEBUG was set to true

See the previous changelogs here.

Download this release

Release Info

Developer aristath
Plugin Icon 128x128 Kirki
Version 3.0.44
Comparing to
See all releases

Code changes from version 3.0.43 to 3.0.44

.jhintrc ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "boss": true,
3
+ "curly": true,
4
+ "eqeqeq": true,
5
+ "eqnull": true,
6
+ "esversion": 6,
7
+ "expr": true,
8
+ "immed": true,
9
+ "noarg": true,
10
+ "nonbsp": true,
11
+ "onevar": true,
12
+ "quotmark": "single",
13
+ "trailing": true,
14
+ "undef": true,
15
+ "unused": true,
16
+
17
+ "browser": true,
18
+
19
+ "globals": {
20
+ "_": false,
21
+ "Backbone": false,
22
+ "jQuery": false,
23
+ "JSON": false,
24
+ "wp": false,
25
+ "export": false,
26
+ "module": false,
27
+ "require": false
28
+ }
29
+ }
CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
 
 
 
 
 
 
1
  ## 3.0.43
2
 
3
  Jun.16 2019, dev time: 30m
1
+ ## 3.0.44
2
+
3
+ Jun.25 2019, dev time: 30m
4
+
5
+ * Fix: Google fonts getting constantly downloaded when `WP_DEBUG` was set to `true`
6
+
7
  ## 3.0.43
8
 
9
  Jun.16 2019, dev time: 30m
core/class-kirki-values.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * Hekoers to get the values of a field.
4
  * WARNING: PLEASE DO NOT USE THESE.
5
  * we only have these for backwards-compatibility purposes.
6
  * please use get_option() & get_theme_mod() instead.
1
  <?php
2
  /**
3
+ * Helpers to get the values of a field.
4
  * WARNING: PLEASE DO NOT USE THESE.
5
  * we only have these for backwards-compatibility purposes.
6
  * please use get_option() & get_theme_mod() instead.
kirki.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: The Ultimate WordPress Customizer Framework
6
  * Author: Ari Stathopoulos (@aristath)
7
  * Author URI: https://aristath.github.io
8
- * Version: 3.0.43
9
  * Text Domain: kirki
10
  * Requires WP: 4.9
11
  * Requires PHP: 5.3
@@ -40,7 +40,7 @@ if ( ! defined( 'KIRKI_PLUGIN_FILE' ) ) {
40
 
41
  // Define the KIRKI_VERSION constant.
42
  if ( ! defined( 'KIRKI_VERSION' ) ) {
43
- define( 'KIRKI_VERSION', '3.0.43' );
44
  }
45
 
46
  // Make sure the path is properly set.
5
  * Description: The Ultimate WordPress Customizer Framework
6
  * Author: Ari Stathopoulos (@aristath)
7
  * Author URI: https://aristath.github.io
8
+ * Version: 3.0.44
9
  * Text Domain: kirki
10
  * Requires WP: 4.9
11
  * Requires PHP: 5.3
40
 
41
  // Define the KIRKI_VERSION constant.
42
  if ( ! defined( 'KIRKI_VERSION' ) ) {
43
+ define( 'KIRKI_VERSION', '3.0.44' );
44
  }
45
 
46
  // Make sure the path is properly set.
modules/webfonts/class-kirki-fonts-helper.php CHANGED
@@ -96,6 +96,11 @@ final class Kirki_Fonts_Helper {
96
  */
97
  public static function download_font_file( $url ) {
98
 
 
 
 
 
 
99
  // Gives us access to the download_url() and wp_handle_sideload() functions.
100
  require_once ABSPATH . 'wp-admin/includes/file.php';
101
 
@@ -127,6 +132,8 @@ final class Kirki_Fonts_Helper {
127
  $results = wp_handle_sideload( $file, $overrides );
128
 
129
  if ( empty( $results['error'] ) ) {
 
 
130
  return $results['url'];
131
  }
132
  return false;
96
  */
97
  public static function download_font_file( $url ) {
98
 
99
+ $saved_fonts = get_option( 'kirki_font_local_filenames', array() );
100
+ if ( isset( $saved_fonts[ $url ] ) && file_exists( $saved_fonts[ $url ]['file'] ) ) {
101
+ return $saved_fonts[ $url ]['url'];
102
+ }
103
+
104
  // Gives us access to the download_url() and wp_handle_sideload() functions.
105
  require_once ABSPATH . 'wp-admin/includes/file.php';
106
 
132
  $results = wp_handle_sideload( $file, $overrides );
133
 
134
  if ( empty( $results['error'] ) ) {
135
+ $saved_fonts[ $url ] = $results;
136
+ update_option( 'kirki_font_local_filenames', $saved_fonts );
137
  return $results['url'];
138
  }
139
  return false;
modules/webfonts/class-kirki-fonts.php CHANGED
@@ -123,12 +123,12 @@ final class Kirki_Fonts {
123
  self::$google_fonts = get_site_transient( 'kirki_googlefonts_cache' );
124
 
125
  /**
126
- * Reset the cache if we're debugging, or if we force-reset caches using action=kirki-reset-cache in the URL.
127
  *
128
  * Note to code reviewers:
129
  * There's no need to check nonces or anything else, this is a simple true/false evaluation.
130
  */
131
- if ( ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( ! empty( $_GET['action'] ) && 'kirki-reset-cache' === $_GET['action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
132
  self::$google_fonts = false;
133
  }
134
 
@@ -159,7 +159,7 @@ final class Kirki_Fonts {
159
  self::$google_fonts = apply_filters( 'kirki_fonts_google_fonts', $google_fonts );
160
 
161
  // Save the array in cache.
162
- $cache_time = apply_filters( 'kirki_googlefonts_transient_time', HOUR_IN_SECONDS );
163
  set_site_transient( 'kirki_googlefonts_cache', self::$google_fonts, $cache_time );
164
 
165
  return self::$google_fonts;
123
  self::$google_fonts = get_site_transient( 'kirki_googlefonts_cache' );
124
 
125
  /**
126
+ * Reset the cache if we're using action=kirki-reset-cache in the URL.
127
  *
128
  * Note to code reviewers:
129
  * There's no need to check nonces or anything else, this is a simple true/false evaluation.
130
  */
131
+ if ( ! empty( $_GET['action'] ) && 'kirki-reset-cache' === $_GET['action'] ) { // phpcs:ignore WordPress.Security.NonceVerification
132
  self::$google_fonts = false;
133
  }
134
 
159
  self::$google_fonts = apply_filters( 'kirki_fonts_google_fonts', $google_fonts );
160
 
161
  // Save the array in cache.
162
+ $cache_time = apply_filters( 'kirki_googlefonts_transient_time', DAY_IN_SECONDS );
163
  set_site_transient( 'kirki_googlefonts_cache', self::$google_fonts, $cache_time );
164
 
165
  return self::$google_fonts;
modules/webfonts/class-kirki-modules-webfonts-embed.php CHANGED
@@ -149,12 +149,12 @@ final class Kirki_Modules_Webfonts_Embed {
149
  $contents = get_transient( $transient_id );
150
 
151
  /**
152
- * Reset the cache if we're debugging, or if we force-reset caches using action=kirki-reset-cache in the URL.
153
  *
154
  * Note to code reviewers:
155
  * There's no need to check nonces or anything else, this is a simple true/false evaluation.
156
  */
157
- if ( ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( ! empty( $_GET['action'] ) && 'kirki-reset-cache' === $_GET['action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification
158
  $contents = false;
159
  }
160
  if ( ! $contents ) {
149
  $contents = get_transient( $transient_id );
150
 
151
  /**
152
+ * Reset the cache if we're using action=kirki-reset-cache in the URL.
153
  *
154
  * Note to code reviewers:
155
  * There's no need to check nonces or anything else, this is a simple true/false evaluation.
156
  */
157
+ if ( ! empty( $_GET['action'] ) && 'kirki-reset-cache' === $_GET['action'] ) { // phpcs:ignore WordPress.Security.NonceVerification
158
  $contents = false;
159
  }
160
  if ( ! $contents ) {
modules/webfonts/webfont-files.json CHANGED
@@ -1 +1 @@
1
- {"Roboto":{"100":"http://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf","300":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf","500":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf","700":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf","900":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf","100italic":"http://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf","300italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf","regular":"http://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf","italic":"http://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf","500italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf","700italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf","900italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"},"Open Sans":{"300":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8-VeJoCqeDjg.ttf","600":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirk-VeJoCqeDjg.ttf","700":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rg-VeJoCqeDjg.ttf","800":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf","300italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV-hsKKKTjrPW.ttf","regular":"http://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-U1UpcaXcl0Aw.ttf","italic":"http://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUJ0ef8xkA76a.ttf","600italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUehsKKKTjrPW.ttf","700italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUOhsKKKTjrPW.ttf","800italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U-hsKKKTjrPW.ttf"},"Lato":{"100":"http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf","300":"http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf","700":"http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf","900":"http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf","100italic":"http://fonts.gstatic.com/s/lato/v15/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf","300italic":"http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf","regular":"http://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHvxk6XweuBCY.ttf","italic":"http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf","700italic":"http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf","900italic":"http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"},"Montserrat":{"100":"http://fonts.gstatic.com/s/montserrat/v13/JTUQjIg1_i6t8kCHKm45_QphziTn89dtpQ.ttf","200":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_aZA7g7J_950vCo.ttf","300":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_cJD7g7J_950vCo.ttf","500":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_ZpC7g7J_950vCo.ttf","600":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_bZF7g7J_950vCo.ttf","700":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_dJE7g7J_950vCo.ttf","800":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_c5H7g7J_950vCo.ttf","900":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_epG7g7J_950vCo.ttf","100italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUOjIg1_i6t8kCHKm459WxZqi7j0dJ9pTOi.ttf","200italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZBg_D-_xxrCq7qg.ttf","300italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZYgzD-_xxrCq7qg.ttf","regular":"http://fonts.gstatic.com/s/montserrat/v13/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf","italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUQjIg1_i6t8kCHKm459WxhziTn89dtpQ.ttf","500italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZOg3D-_xxrCq7qg.ttf","600italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZFgrD-_xxrCq7qg.ttf","700italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZcgvD-_xxrCq7qg.ttf","800italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZbgjD-_xxrCq7qg.ttf","900italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZSgnD-_xxrCq7qg.ttf"},"Roboto Condensed":{"300":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf","700":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf","300italic":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf","regular":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf","italic":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf","700italic":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf"},"Source Sans Pro":{"200":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf","300":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf","600":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf","700":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf","900":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf","200italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf","300italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf","regular":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf","italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf","600italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf","700italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf","900italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf"},"Oswald":{"200":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf","300":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf","500":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf","600":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf","700":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf","regular":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf"},"Raleway":{"100":"http://fonts.gstatic.com/s/raleway/v13/1Ptsg8zYS_SKggPNwE4ISotrDfGGxA.ttf","200":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwOIpaqFFAfif3Vo.ttf","300":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwIYqaqFFAfif3Vo.ttf","500":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwN4raqFFAfif3Vo.ttf","600":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwPIsaqFFAfif3Vo.ttf","700":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwJYtaqFFAfif3Vo.ttf","800":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwIouaqFFAfif3Vo.ttf","900":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwK4vaqFFAfif3Vo.ttf","100italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptqg8zYS_SKggPNyCgwLoFvL_SWxEMT.ttf","200italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwgqBPBdqazVoK4A.ttf","300italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgw5qNPBdqazVoK4A.ttf","regular":"http://fonts.gstatic.com/s/raleway/v13/1Ptug8zYS_SKggPN-CoCTqluHfE.ttf","italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptsg8zYS_SKggPNyCgISotrDfGGxA.ttf","500italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwvqJPBdqazVoK4A.ttf","600italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwkqVPBdqazVoK4A.ttf","700italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgw9qRPBdqazVoK4A.ttf","800italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgw6qdPBdqazVoK4A.ttf","900italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwzqZPBdqazVoK4A.ttf"},"Merriweather":{"300":"http://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf","700":"http://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf","900":"http://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf","300italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf","regular":"http://fonts.gstatic.com/s/merriweather/v20/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf","italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf","700italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf","900italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf"},"Roboto Mono":{"100":"http://fonts.gstatic.com/s/robotomono/v6/L0x7DF4xlVMF-BfR8bXMIjAoq3qcW7KCG1w.ttf","300":"http://fonts.gstatic.com/s/robotomono/v6/L0xkDF4xlVMF-BfR8bXMIjDgiVq2db6LAkU-.ttf","500":"http://fonts.gstatic.com/s/robotomono/v6/L0xkDF4xlVMF-BfR8bXMIjC4iFq2db6LAkU-.ttf","700":"http://fonts.gstatic.com/s/robotomono/v6/L0xkDF4xlVMF-BfR8bXMIjDwjlq2db6LAkU-.ttf","100italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xlDF4xlVMF-BfR8bXMIjhOkx6WX5CHC1wnFw.ttf","300italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xmDF4xlVMF-BfR8bXMIjhOk9a0f7qpB1U-Drg.ttf","regular":"http://fonts.gstatic.com/s/robotomono/v6/L0x5DF4xlVMF-BfR8bXMIghMoX6-XqKC.ttf","italic":"http://fonts.gstatic.com/s/robotomono/v6/L0x7DF4xlVMF-BfR8bXMIjhOq3qcW7KCG1w.ttf","500italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xmDF4xlVMF-BfR8bXMIjhOk461f7qpB1U-Drg.ttf","700italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xmDF4xlVMF-BfR8bXMIjhOk8azf7qpB1U-Drg.ttf"},"Roboto Slab":{"100":"http://fonts.gstatic.com/s/robotoslab/v8/BngOUXZYTXPIvIBgJJSb6u-u5qCr5RCDY_k.ttf","300":"http://fonts.gstatic.com/s/robotoslab/v8/BngRUXZYTXPIvIBgJJSb6u9mxICByxyKeuDp.ttf","700":"http://fonts.gstatic.com/s/robotoslab/v8/BngRUXZYTXPIvIBgJJSb6u92w4CByxyKeuDp.ttf","regular":"http://fonts.gstatic.com/s/robotoslab/v8/BngMUXZYTXPIvIBgJJSb6tfK7KSJ4ACD.ttf"},"Poppins":{"100":"http://fonts.gstatic.com/s/poppins/v6/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf","200":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf","300":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf","500":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf","600":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf","700":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf","800":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf","900":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf","100italic":"http://fonts.gstatic.com/s/poppins/v6/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf","200italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf","300italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf","regular":"http://fonts.gstatic.com/s/poppins/v6/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf","italic":"http://fonts.gstatic.com/s/poppins/v6/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf","500italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf","600italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf","700italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf","800italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf","900italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf"},"PT Sans":{"700":"http://fonts.gstatic.com/s/ptsans/v10/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf","regular":"http://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79P0WOxOGMMDQ.ttf","italic":"http://fonts.gstatic.com/s/ptsans/v10/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf","700italic":"http://fonts.gstatic.com/s/ptsans/v10/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf"},"Noto Sans":{"700":"http://fonts.gstatic.com/s/notosans/v8/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf","regular":"http://fonts.gstatic.com/s/notosans/v8/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf","italic":"http://fonts.gstatic.com/s/notosans/v8/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf","700italic":"http://fonts.gstatic.com/s/notosans/v8/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf"},"Slabo 27px":{"regular":"http://fonts.gstatic.com/s/slabo27px/v5/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf"},"Ubuntu":{"300":"http://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf","500":"http://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf","700":"http://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf","300italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf","regular":"http://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf","italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf","500italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf","700italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf"},"Open Sans Condensed":{"300":"http://fonts.gstatic.com/s/opensanscondensed/v13/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuLGRpWRyAs.ttf","700":"http://fonts.gstatic.com/s/opensanscondensed/v13/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuLGRpWRyAs.ttf","300italic":"http://fonts.gstatic.com/s/opensanscondensed/v13/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQreU2AsJSg.ttf"},"Playfair Display":{"700":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf","900":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf"},"Lora":{"700":"http://fonts.gstatic.com/s/lora/v13/0QIgMX1D_JOuO7HeBttkm_mv670.ttf","regular":"http://fonts.gstatic.com/s/lora/v13/0QIvMX1D_JOuAw3xItNPh_A.ttf","italic":"http://fonts.gstatic.com/s/lora/v13/0QIhMX1D_JOuMw_7JvFKl_C28g.ttf","700italic":"http://fonts.gstatic.com/s/lora/v13/0QIiMX1D_JOuMw_Dmt5un9uq-73O-Q.ttf"},"PT Serif":{"700":"http://fonts.gstatic.com/s/ptserif/v10/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf","regular":"http://fonts.gstatic.com/s/ptserif/v10/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf","italic":"http://fonts.gstatic.com/s/ptserif/v10/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf","700italic":"http://fonts.gstatic.com/s/ptserif/v10/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf"},"Muli":{"200":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adf3nCCL8zkwMIFg.ttf","300":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adZnkCCL8zkwMIFg.ttf","600":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-ade3iCCL8zkwMIFg.ttf","700":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adYnjCCL8zkwMIFg.ttf","800":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adZXgCCL8zkwMIFg.ttf","900":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adbHhCCL8zkwMIFg.ttf","200italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-4CP2ym4JMFge0g.ttf","300italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-hCD2ym4JMFge0g.ttf","regular":"http://fonts.gstatic.com/s/muli/v13/7Auwp_0qiz-aTTXMLCrX0kU.ttf","italic":"http://fonts.gstatic.com/s/muli/v13/7Au-p_0qiz-afTfGKAjSwkUVOQ.ttf","600italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-8Cb2ym4JMFge0g.ttf","700italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-lCf2ym4JMFge0g.ttf","800italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-iCT2ym4JMFge0g.ttf","900italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-rCX2ym4JMFge0g.ttf"},"Titillium Web":{"200":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf","300":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf","600":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf","700":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf","900":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf","200italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf","300italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf","regular":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf","italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf","600italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf","700italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf"},"Nunito":{"200":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf","300":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf","600":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf","700":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf","800":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf","900":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf","200italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf","300italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf","regular":"http://fonts.gstatic.com/s/nunito/v10/XRXV3I6Li01BKof4MuyAbsrVcA.ttf","italic":"http://fonts.gstatic.com/s/nunito/v10/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf","600italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf","700italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf","800italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf","900italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf"},"PT Sans Narrow":{"700":"http://fonts.gstatic.com/s/ptsansnarrow/v10/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf","regular":"http://fonts.gstatic.com/s/ptsansnarrow/v10/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf"},"Rubik":{"300":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7Fqj1ma-2HW7ZB_.ttf","500":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7Eyjlma-2HW7ZB_.ttf","700":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7F6iFma-2HW7ZB_.ttf","900":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7FCilma-2HW7ZB_.ttf","300italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nEldWY8WX06IB_18o.ttf","regular":"http://fonts.gstatic.com/s/rubik/v8/iJWKBXyIfDnIV4nGp32S0H3f.ttf","italic":"http://fonts.gstatic.com/s/rubik/v8/iJWEBXyIfDnIV7nErXmw1W3f9Ik.ttf","500italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nElY2Z8WX06IB_18o.ttf","700italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nElcWf8WX06IB_18o.ttf","900italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nElf2d8WX06IB_18o.ttf"},"Fira Sans":{"100":"http://fonts.gstatic.com/s/firasans/v9/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf","200":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf","300":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf","500":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf","600":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf","700":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf","800":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf","900":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf","100italic":"http://fonts.gstatic.com/s/firasans/v9/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf","200italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf","300italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf","regular":"http://fonts.gstatic.com/s/firasans/v9/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf","italic":"http://fonts.gstatic.com/s/firasans/v9/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf","500italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf","600italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf","700italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf","800italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf","900italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf"},"Noto Sans JP":{"100":"http://fonts.gstatic.com/s/notosansjp/v23/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf","300":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf","500":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf","700":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf","900":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf","regular":"http://fonts.gstatic.com/s/notosansjp/v23/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf"},"Nanum Gothic":{"700":"http://fonts.gstatic.com/s/nanumgothic/v16/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf","800":"http://fonts.gstatic.com/s/nanumgothic/v16/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf","regular":"http://fonts.gstatic.com/s/nanumgothic/v16/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf"},"Noto Serif":{"700":"http://fonts.gstatic.com/s/notoserif/v7/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf","regular":"http://fonts.gstatic.com/s/notoserif/v7/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf","italic":"http://fonts.gstatic.com/s/notoserif/v7/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf","700italic":"http://fonts.gstatic.com/s/notoserif/v7/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf"},"Work Sans":{"100":"http://fonts.gstatic.com/s/worksans/v4/QGYqz_wNahGAdqQ43Rh3H6DstfxA4OD3.ttf","200":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3s4HMn9JM6fnuKg.ttf","300":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh314LMn9JM6fnuKg.ttf","500":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3j4PMn9JM6fnuKg.ttf","600":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3o4TMn9JM6fnuKg.ttf","700":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3x4XMn9JM6fnuKg.ttf","800":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh324bMn9JM6fnuKg.ttf","900":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3_4fMn9JM6fnuKg.ttf","regular":"http://fonts.gstatic.com/s/worksans/v4/QGYsz_wNahGAdqQ43RhPe6rol_lQ4A.ttf"},"Arimo":{"700":"http://fonts.gstatic.com/s/arimo/v12/P5sBzZCDf9_T_1Wi4QREp5On0ME2.ttf","regular":"http://fonts.gstatic.com/s/arimo/v12/P5sMzZCDf9_T_20eziBMjI-u.ttf","italic":"http://fonts.gstatic.com/s/arimo/v12/P5sCzZCDf9_T_10cxCRuiZ-uydg.ttf","700italic":"http://fonts.gstatic.com/s/arimo/v12/P5sHzZCDf9_T_10c_JhBrZeF1dE2PY4.ttf"},"Quicksand":{"300":"http://fonts.gstatic.com/s/quicksand/v9/6xKodSZaM9iE8KbpRA_pgHYoSMj-N4_4kQ.ttf","500":"http://fonts.gstatic.com/s/quicksand/v9/6xKodSZaM9iE8KbpRA_p2HcoSMj-N4_4kQ.ttf","700":"http://fonts.gstatic.com/s/quicksand/v9/6xKodSZaM9iE8KbpRA_pkHEoSMj-N4_4kQ.ttf","regular":"http://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_RLF4MQOPiPg.ttf"},"Noto Sans KR":{"100":"http://fonts.gstatic.com/s/notosanskr/v11/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf","300":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf","500":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf","700":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf","900":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf","regular":"http://fonts.gstatic.com/s/notosanskr/v11/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf"},"Dosis":{"200":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzGnKtCCOopCTKkI.ttf","300":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzHDKdCCOopCTKkI.ttf","500":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzGbKNCCOopCTKkI.ttf","600":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzG3L9CCOopCTKkI.ttf","700":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzHTLtCCOopCTKkI.ttf","800":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzHPLdCCOopCTKkI.ttf","regular":"http://fonts.gstatic.com/s/dosis/v8/HhyaU5sn9vOmLwlvAfSKEZZL.ttf"},"Inconsolata":{"700":"http://fonts.gstatic.com/s/inconsolata/v17/QldXNThLqRwH-OJ1UHjlKGHiw41u7f34DYwn.ttf","regular":"http://fonts.gstatic.com/s/inconsolata/v17/QldKNThLqRwH-OJ1UHjlKFle7KlmxuHx.ttf"},"Crimson Text":{"600":"http://fonts.gstatic.com/s/crimsontext/v9/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf","700":"http://fonts.gstatic.com/s/crimsontext/v9/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf","regular":"http://fonts.gstatic.com/s/crimsontext/v9/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf","italic":"http://fonts.gstatic.com/s/crimsontext/v9/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf","600italic":"http://fonts.gstatic.com/s/crimsontext/v9/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf","700italic":"http://fonts.gstatic.com/s/crimsontext/v9/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf"},"Josefin Sans":{"100":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3EZQNVED7rKGKxtqIqX5Ecbnx9Vnksi4M7.ttf","300":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3FZQNVED7rKGKxtqIqX5Ecpl5dfFcggpoi_Q.ttf","600":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3FZQNVED7rKGKxtqIqX5Ec0lhdfFcggpoi_Q.ttf","700":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3FZQNVED7rKGKxtqIqX5EctlldfFcggpoi_Q.ttf","100italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3GZQNVED7rKGKxtqIqX5EUCEQZXH0OjpM75PE.ttf","300italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3HZQNVED7rKGKxtqIqX5EUCETRfl0koJ8y_eiS.ttf","regular":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3aZQNVED7rKGKxtqIqX5EkCnZ5dHw8iw.ttf","italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3EZQNVED7rKGKxtqIqX5EUCHx9Vnksi4M7.ttf","600italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3HZQNVED7rKGKxtqIqX5EUCESleF0koJ8y_eiS.ttf","700italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3HZQNVED7rKGKxtqIqX5EUCETBeV0koJ8y_eiS.ttf"},"Teko":{"300":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf","500":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf","600":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf","700":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf","regular":"http://fonts.gstatic.com/s/teko/v8/LYjNdG7kmE0gTaR3pCtBtVs.ttf"},"Oxygen":{"300":"http://fonts.gstatic.com/s/oxygen/v8/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf","700":"http://fonts.gstatic.com/s/oxygen/v8/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf","regular":"http://fonts.gstatic.com/s/oxygen/v8/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf"},"Libre Franklin":{"100":"http://fonts.gstatic.com/s/librefranklin/v3/jizBREVItHgc8qDIbSTKq4XkRi182zIZj1bIkNo.ttf","200":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIzoVrBicOg.ttf","300":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi20-RIzoVrBicOg.ttf","500":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi3s-BIzoVrBicOg.ttf","600":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi3A_xIzoVrBicOg.ttf","700":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi2k_hIzoVrBicOg.ttf","800":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi24_RIzoVrBicOg.ttf","900":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi2c_BIzoVrBicOg.ttf","100italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizHREVItHgc8qDIbSTKq4XkRiUa41YTi3TNgNq55w.ttf","200italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq17jjNOg_oc.ttf","300italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa454xq17jjNOg_oc.ttf","regular":"http://fonts.gstatic.com/s/librefranklin/v3/jizDREVItHgc8qDIbSTKq4XkRhUY0TY7ikbI.ttf","italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizBREVItHgc8qDIbSTKq4XkRiUa2zIZj1bIkNo.ttf","500italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq17jjNOg_oc.ttf","600italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q17jjNOg_oc.ttf","700italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa4442q17jjNOg_oc.ttf","800italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q17jjNOg_oc.ttf","900italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q17jjNOg_oc.ttf"},"Bitter":{"700":"http://fonts.gstatic.com/s/bitter/v14/rax_HiqOu8IVPmnzxKlMBBJek0vA8A.ttf","regular":"http://fonts.gstatic.com/s/bitter/v14/rax8HiqOu8IVPmnLeIZoDDlCmg.ttf","italic":"http://fonts.gstatic.com/s/bitter/v14/rax-HiqOu8IVPmn7eoxsLjxSmlLZ.ttf"},"Nunito Sans":{"200":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf","300":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf","600":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf","700":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf","800":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf","900":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf","200italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf","300italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf","regular":"http://fonts.gstatic.com/s/nunitosans/v4/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf","italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf","600italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf","700italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf","800italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf","900italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf"},"Anton":{"regular":"http://fonts.gstatic.com/s/anton/v10/1Ptgg87LROyAm0K08i4gS7lu.ttf"},"Libre Baskerville":{"700":"http://fonts.gstatic.com/s/librebaskerville/v6/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf","regular":"http://fonts.gstatic.com/s/librebaskerville/v6/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf","italic":"http://fonts.gstatic.com/s/librebaskerville/v6/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf"},"Heebo":{"100":"http://fonts.gstatic.com/s/heebo/v4/NGS0v5_NC0k9P9mVTbRhtKMByaw.ttf","300":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9ldb5RLmq8I0LVF.ttf","500":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9kFbpRLmq8I0LVF.ttf","700":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9lNaJRLmq8I0LVF.ttf","800":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9lRa5RLmq8I0LVF.ttf","900":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9l1apRLmq8I0LVF.ttf","regular":"http://fonts.gstatic.com/s/heebo/v4/NGS6v5_NC0k9P-HxR7BDsbMB.ttf"},"Cabin":{"500":"http://fonts.gstatic.com/s/cabin/v13/u-480qWljRw-PdfD3NhisShmeh5I.ttf","600":"http://fonts.gstatic.com/s/cabin/v13/u-480qWljRw-Pdfv29hisShmeh5I.ttf","700":"http://fonts.gstatic.com/s/cabin/v13/u-480qWljRw-PdeL2thisShmeh5I.ttf","regular":"http://fonts.gstatic.com/s/cabin/v13/u-4x0qWljRw-Pe839fxqmjRv.ttf","italic":"http://fonts.gstatic.com/s/cabin/v13/u-4_0qWljRw-Pd81__hInyRvYwc.ttf","500italic":"http://fonts.gstatic.com/s/cabin/v13/u-460qWljRw-Pd81xwxhuyxEfw5IR-Y.ttf","600italic":"http://fonts.gstatic.com/s/cabin/v13/u-460qWljRw-Pd81xyBmuyxEfw5IR-Y.ttf","700italic":"http://fonts.gstatic.com/s/cabin/v13/u-460qWljRw-Pd81x0RnuyxEfw5IR-Y.ttf"},"Hind":{"300":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf","500":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf","600":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf","700":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf","regular":"http://fonts.gstatic.com/s/hind/v9/5aU69_a8oxmIRG5yBROzkDM.ttf"},"Fjalla One":{"regular":"http://fonts.gstatic.com/s/fjallaone/v6/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf"},"Karla":{"700":"http://fonts.gstatic.com/s/karla/v7/qkBWXvYC6trAT7zuC_m-zrpHmRzC.ttf","regular":"http://fonts.gstatic.com/s/karla/v7/qkBbXvYC6trAT4RSJN225aZO.ttf","italic":"http://fonts.gstatic.com/s/karla/v7/qkBVXvYC6trAT7RQLtmU4LZOgAU.ttf","700italic":"http://fonts.gstatic.com/s/karla/v7/qkBQXvYC6trAT7RQFmW7xL5lnAzCKNg.ttf"},"Indie Flower":{"regular":"http://fonts.gstatic.com/s/indieflower/v10/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf"},"Arvo":{"700":"http://fonts.gstatic.com/s/arvo/v11/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf","regular":"http://fonts.gstatic.com/s/arvo/v11/tDbD2oWUg0MKmSAa7Lzr7vs.ttf","italic":"http://fonts.gstatic.com/s/arvo/v11/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf","700italic":"http://fonts.gstatic.com/s/arvo/v11/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf"},"Lobster":{"regular":"http://fonts.gstatic.com/s/lobster/v21/neILzCirqoswsqX9_oWsMqEzSJQ.ttf"},"Abel":{"regular":"http://fonts.gstatic.com/s/abel/v9/MwQ5bhbm2POE6VhLPJp6qGI.ttf"},"Mukta":{"200":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf","300":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf","500":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf","600":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf","700":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf","800":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf","regular":"http://fonts.gstatic.com/s/mukta/v6/iJWKBXyXfDDVXYnGp32S0H3f.ttf"},"Exo 2":{"100":"http://fonts.gstatic.com/s/exo2/v5/7cHov4okm5zmbt5LK-sW5HIohT4.ttf","200":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt7nCss8yn4hnCci.ttf","300":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6DCcs8yn4hnCci.ttf","500":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt7bCMs8yn4hnCci.ttf","600":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt73D8s8yn4hnCci.ttf","700":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6TDss8yn4hnCci.ttf","800":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6PDcs8yn4hnCci.ttf","900":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6rDMs8yn4hnCci.ttf","100italic":"http://fonts.gstatic.com/s/exo2/v5/7cHqv4okm5zmbtYtE48c4FAtlT47dw.ttf","200italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtEyM9wHoDmTcibrA.ttf","300italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE0c-wHoDmTcibrA.ttf","regular":"http://fonts.gstatic.com/s/exo2/v5/7cHmv4okm5zmbuYvIe804WIo.ttf","italic":"http://fonts.gstatic.com/s/exo2/v5/7cHov4okm5zmbtYtK-sW5HIohT4.ttf","500italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtEx8_wHoDmTcibrA.ttf","600italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtEzM4wHoDmTcibrA.ttf","700italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE1c5wHoDmTcibrA.ttf","800italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE0s6wHoDmTcibrA.ttf","900italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE287wHoDmTcibrA.ttf"},"Hind Siliguri":{"300":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf","500":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf","600":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf","700":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf","regular":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf"},"Noto Sans TC":{"100":"http://fonts.gstatic.com/s/notosanstc/v8/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf","300":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf","500":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf","700":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf","900":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf","regular":"http://fonts.gstatic.com/s/notosanstc/v8/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf"},"Pacifico":{"regular":"http://fonts.gstatic.com/s/pacifico/v13/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf"},"Varela Round":{"regular":"http://fonts.gstatic.com/s/varelaround/v11/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf"},"Merriweather Sans":{"300":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD2BdWzIqY.ttf","700":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD2BdWzIqY.ttf","800":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD2BdWzIqY.ttf","300italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hN0yZqYcqw.ttf","regular":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXySDTL8wtf.ttf","italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjDp9htf1ZM.ttf","700italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hN0yZqYcqw.ttf","800italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hN0yZqYcqw.ttf"},"Dancing Script":{"700":"http://fonts.gstatic.com/s/dancingscript/v10/If2SXTr6YS-zF4S-kcSWSVi_szpbr8QtoCIervbA.ttf","regular":"http://fonts.gstatic.com/s/dancingscript/v10/If2RXTr6YS-zF4S-kcSWSVi_swLngOAliz4X.ttf"},"Source Serif Pro":{"600":"http://fonts.gstatic.com/s/sourceserifpro/v6/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf","700":"http://fonts.gstatic.com/s/sourceserifpro/v6/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf","regular":"http://fonts.gstatic.com/s/sourceserifpro/v6/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf"},"Asap":{"500":"http://fonts.gstatic.com/s/asap/v9/KFOnCniXp96aw8g9xUxlBz88MsA.ttf","600":"http://fonts.gstatic.com/s/asap/v9/KFOnCniXp96aw-Q6xUxlBz88MsA.ttf","700":"http://fonts.gstatic.com/s/asap/v9/KFOnCniXp96aw4A7xUxlBz88MsA.ttf","regular":"http://fonts.gstatic.com/s/asap/v9/KFOoCniXp96a-zwU4UROGzY.ttf","italic":"http://fonts.gstatic.com/s/asap/v9/KFOmCniXp96ayz4e5WZLCzYlKw.ttf","500italic":"http://fonts.gstatic.com/s/asap/v9/KFOlCniXp96ayz4mEU9vAx05IsDqlA.ttf","600italic":"http://fonts.gstatic.com/s/asap/v9/KFOlCniXp96ayz4mPUhvAx05IsDqlA.ttf","700italic":"http://fonts.gstatic.com/s/asap/v9/KFOlCniXp96ayz4mWUlvAx05IsDqlA.ttf"},"Shadows Into Light":{"regular":"http://fonts.gstatic.com/s/shadowsintolight/v8/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf"},"Abril Fatface":{"regular":"http://fonts.gstatic.com/s/abrilfatface/v10/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf"},"Source Code Pro":{"200":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztO0rzmmkDQ.ttf","300":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztO0rzmmkDQ.ttf","500":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztO0rzmmkDQ.ttf","600":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztO0rzmmkDQ.ttf","700":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztO0rzmmkDQ.ttf","900":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztO0rzmmkDQ.ttf","regular":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf"},"Yanone Kaffeesatz":{"200":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y9-6aknfjLm_3lMKjiMgmUUYBs04YfUPs-tNtKENeNp.ttf","300":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y9-6aknfjLm_3lMKjiMgmUUYBs04YewPc-tNtKENeNp.ttf","700":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y9-6aknfjLm_3lMKjiMgmUUYBs04YegOs-tNtKENeNp.ttf","regular":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y976aknfjLm_3lMKjiMgmUUYBs04b8cFeulHc6N.ttf"},"Barlow":{"100":"http://fonts.gstatic.com/s/barlow/v3/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf","200":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf","300":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf","500":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf","600":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf","700":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf","800":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf","900":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf","100italic":"http://fonts.gstatic.com/s/barlow/v3/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf","200italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf","300italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf","regular":"http://fonts.gstatic.com/s/barlow/v3/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf","italic":"http://fonts.gstatic.com/s/barlow/v3/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf","500italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf","600italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf","700italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf","800italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf","900italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf"},"Kanit":{"100":"http://fonts.gstatic.com/s/kanit/v4/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf","200":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf","300":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf","500":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf","600":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf","700":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf","800":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf","900":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf","100italic":"http://fonts.gstatic.com/s/kanit/v4/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf","200italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf","300italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf","regular":"http://fonts.gstatic.com/s/kanit/v4/nKKZ-Go6G5tXcoaSEQGodLxA.ttf","italic":"http://fonts.gstatic.com/s/kanit/v4/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf","500italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf","600italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf","700italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf","800italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf","900italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf"},"Acme":{"regular":"http://fonts.gstatic.com/s/acme/v8/RrQfboBx-C5_bx3Lb23lzLk.ttf"},"Bree Serif":{"regular":"http://fonts.gstatic.com/s/breeserif/v8/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf"},"Questrial":{"regular":"http://fonts.gstatic.com/s/questrial/v8/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf"},"Righteous":{"regular":"http://fonts.gstatic.com/s/righteous/v7/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf"},"Archivo Narrow":{"500":"http://fonts.gstatic.com/s/archivonarrow/v9/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla8dMgPgBu.ttf","600":"http://fonts.gstatic.com/s/archivonarrow/v9/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla8dMgPgBu.ttf","700":"http://fonts.gstatic.com/s/archivonarrow/v9/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla8dMgPgBu.ttf","regular":"http://fonts.gstatic.com/s/archivonarrow/v9/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p.ttf","italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXlw398pJxk.ttf","500italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9cCOxBu_BM.ttf","600italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9cCOxBu_BM.ttf","700italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9cCOxBu_BM.ttf"},"EB Garamond":{"500":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GyGaxwVSA_ArHC_.ttf","600":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GyqbBwVSA_ArHC_.ttf","700":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GzObRwVSA_ArHC_.ttf","800":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GzSbhwVSA_ArHC_.ttf","regular":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGUmQSNjdsmc35JDF1K5FRyQjgdYxPJ.ttf","italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGWmQSNjdsmc35JDF1K5GRwSDw_ZgPJtWk.ttf","500italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcMgWQgviqWC_O7Y.ttf","600italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcOQRQgviqWC_O7Y.ttf","700italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcIAQQgviqWC_O7Y.ttf","800italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcJwTQgviqWC_O7Y.ttf"},"Catamaran":{"100":"http://fonts.gstatic.com/s/catamaran/v5/o-0OIpQoyXQa2RxT7-5jhjRFSfiM7HBj.ttf","200":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jKhVlY9aA5Wl6PQ.ttf","300":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jThZlY9aA5Wl6PQ.ttf","500":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jFhdlY9aA5Wl6PQ.ttf","600":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jOhBlY9aA5Wl6PQ.ttf","700":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jXhFlY9aA5Wl6PQ.ttf","800":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jQhJlY9aA5Wl6PQ.ttf","900":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jZhNlY9aA5Wl6PQ.ttf","regular":"http://fonts.gstatic.com/s/catamaran/v5/o-0IIpQoyXQa2RxT7-5b4j5Ba_2c7A.ttf"},"Amatic SC":{"700":"http://fonts.gstatic.com/s/amaticsc/v12/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf","regular":"http://fonts.gstatic.com/s/amaticsc/v12/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf"},"Comfortaa":{"300":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf","500":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf","600":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf","700":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf","regular":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf"},"Exo":{"100":"http://fonts.gstatic.com/s/exo/v8/4UaMrEtFpBIaEH6m2jbu5rXI.ttf","200":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIavF-G8Bji76zR4w.ttf","300":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIa2FyG8Bji76zR4w.ttf","500":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIagF2G8Bji76zR4w.ttf","600":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIarFqG8Bji76zR4w.ttf","700":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIayFuG8Bji76zR4w.ttf","800":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIa1FiG8Bji76zR4w.ttf","900":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIa8FmG8Bji76zR4w.ttf","100italic":"http://fonts.gstatic.com/s/exo/v8/4UaCrEtFpBISdkbC0DLM46XI-po.ttf","200italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkZu8RLmzanB44N1.ttf","300italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYK8hLmzanB44N1.ttf","regular":"http://fonts.gstatic.com/s/exo/v8/4UaOrEtFpBIidHSi-DP-5g.ttf","italic":"http://fonts.gstatic.com/s/exo/v8/4UaMrEtFpBISdn6m2jbu5rXI.ttf","500italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkZS8xLmzanB44N1.ttf","600italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkZ-9BLmzanB44N1.ttf","700italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYa9RLmzanB44N1.ttf","800italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYG9hLmzanB44N1.ttf","900italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYi9xLmzanB44N1.ttf"},"Cairo":{"200":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalrub76M7dd8aGZk.ttf","300":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6HkvalqKbL6M7dd8aGZk.ttf","600":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalr-ar6M7dd8aGZk.ttf","700":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalqaa76M7dd8aGZk.ttf","900":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalqiab6M7dd8aGZk.ttf","regular":"http://fonts.gstatic.com/s/cairo/v5/SLXGc1nY6HkvamImRJqExst1.ttf"},"Maven Pro":{"500":"http://fonts.gstatic.com/s/mavenpro/v12/7Au4p_AqnyWWAxW2Wk3OPkctOHMC21go8A.ttf","700":"http://fonts.gstatic.com/s/mavenpro/v12/7Au4p_AqnyWWAxW2Wk3OdkEtOHMC21go8A.ttf","900":"http://fonts.gstatic.com/s/mavenpro/v12/7Au4p_AqnyWWAxW2Wk3OTkMtOHMC21go8A.ttf","regular":"http://fonts.gstatic.com/s/mavenpro/v12/7Au9p_AqnyWWAxW2Wk32ym4JMFge0g.ttf"},"Ubuntu Condensed":{"regular":"http://fonts.gstatic.com/s/ubuntucondensed/v9/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf"},"Play":{"700":"http://fonts.gstatic.com/s/play/v10/6ae84K2oVqwItm4TOpc423nTJTM.ttf","regular":"http://fonts.gstatic.com/s/play/v10/6aez4K2oVqwIjtI8Hp8Tx3A.ttf"},"Signika":{"300":"http://fonts.gstatic.com/s/signika/v9/vEFU2_JTCgwQ5ejvE_oEI3BDa0AdytM.ttf","600":"http://fonts.gstatic.com/s/signika/v9/vEFU2_JTCgwQ5ejvE44CI3BDa0AdytM.ttf","700":"http://fonts.gstatic.com/s/signika/v9/vEFU2_JTCgwQ5ejvE-oDI3BDa0AdytM.ttf","regular":"http://fonts.gstatic.com/s/signika/v9/vEFR2_JTCgwQ5ejvK1YsB3hod0k.ttf"},"Domine":{"700":"http://fonts.gstatic.com/s/domine/v6/L0x_DFMnlVwD4h3pAN-CTQJIg3uuXg.ttf","regular":"http://fonts.gstatic.com/s/domine/v6/L0x8DFMnlVwD4h3RvPCmRSlUig.ttf"},"Fira Sans Condensed":{"100":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf","200":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf","300":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf","500":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf","600":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf","700":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf","800":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf","900":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf","100italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf","200italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf","300italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf","regular":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf","italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf","500italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf","600italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf","700italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf","800italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf","900italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf"},"Rajdhani":{"300":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf","500":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf","600":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf","700":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf","regular":"http://fonts.gstatic.com/s/rajdhani/v8/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf"},"Permanent Marker":{"regular":"http://fonts.gstatic.com/s/permanentmarker/v8/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf"},"Cinzel":{"700":"http://fonts.gstatic.com/s/cinzel/v8/8vIK7ww63mVu7gtzTUHeFGxbO_zo-w.ttf","900":"http://fonts.gstatic.com/s/cinzel/v8/8vIK7ww63mVu7gtzdUPeFGxbO_zo-w.ttf","regular":"http://fonts.gstatic.com/s/cinzel/v8/8vIJ7ww63mVu7gtL8W76HEdHMg.ttf"},"Patua One":{"regular":"http://fonts.gstatic.com/s/patuaone/v9/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf"},"Amiri":{"700":"http://fonts.gstatic.com/s/amiri/v12/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf","regular":"http://fonts.gstatic.com/s/amiri/v12/J7aRnpd8CGxBHqUpvrIw74NL.ttf","italic":"http://fonts.gstatic.com/s/amiri/v12/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf","700italic":"http://fonts.gstatic.com/s/amiri/v12/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf"},"Vollkorn":{"600":"http://fonts.gstatic.com/s/vollkorn/v9/0yb6GDoxxrvAnPhYGxH2TGg-hhQ8_C_3.ttf","700":"http://fonts.gstatic.com/s/vollkorn/v9/0yb6GDoxxrvAnPhYGxGSTWg-hhQ8_C_3.ttf","900":"http://fonts.gstatic.com/s/vollkorn/v9/0yb6GDoxxrvAnPhYGxGqT2g-hhQ8_C_3.ttf","regular":"http://fonts.gstatic.com/s/vollkorn/v9/0yb9GDoxxrvAnPhYGykuYkw2rQg1.ttf","italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb7GDoxxrvAnPhYGxksaEgUqBg15TY.ttf","600italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb4GDoxxrvAnPhYGxksUJA6jBAe-T_34DM.ttf","700italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb4GDoxxrvAnPhYGxksUPQ7jBAe-T_34DM.ttf","900italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb4GDoxxrvAnPhYGxksUMw5jBAe-T_34DM.ttf"},"Francois One":{"regular":"http://fonts.gstatic.com/s/francoisone/v13/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf"},"Ropa Sans":{"regular":"http://fonts.gstatic.com/s/ropasans/v8/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf","italic":"http://fonts.gstatic.com/s/ropasans/v8/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf"},"News Cycle":{"700":"http://fonts.gstatic.com/s/newscycle/v15/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf","regular":"http://fonts.gstatic.com/s/newscycle/v15/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf"},"Prompt":{"100":"http://fonts.gstatic.com/s/prompt/v3/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf","200":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf","300":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf","500":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf","600":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf","700":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf","800":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf","900":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf","100italic":"http://fonts.gstatic.com/s/prompt/v3/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf","200italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf","300italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf","regular":"http://fonts.gstatic.com/s/prompt/v3/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf","italic":"http://fonts.gstatic.com/s/prompt/v3/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf","500italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf","600italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf","700italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf","800italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf","900italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf"},"Noticia Text":{"700":"http://fonts.gstatic.com/s/noticiatext/v8/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf","regular":"http://fonts.gstatic.com/s/noticiatext/v8/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf","italic":"http://fonts.gstatic.com/s/noticiatext/v8/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf","700italic":"http://fonts.gstatic.com/s/noticiatext/v8/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf"},"Crete Round":{"regular":"http://fonts.gstatic.com/s/creteround/v7/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf","italic":"http://fonts.gstatic.com/s/creteround/v7/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf"},"Overpass":{"100":"http://fonts.gstatic.com/s/overpass/v3/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf","200":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf","300":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf","600":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf","700":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf","800":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf","900":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf","100italic":"http://fonts.gstatic.com/s/overpass/v3/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf","200italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf","300italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf","regular":"http://fonts.gstatic.com/s/overpass/v3/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf","italic":"http://fonts.gstatic.com/s/overpass/v3/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf","600italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf","700italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf","800italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf","900italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"},"Gloria Hallelujah":{"regular":"http://fonts.gstatic.com/s/gloriahallelujah/v10/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf"},"Rokkitt":{"100":"http://fonts.gstatic.com/s/rokkitt/v13/qFdG35qfgYFjGy5hmCWCc_TOyh4Qig.ttf","200":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmImjU97gxhcJk1s.ttf","300":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmO2gU97gxhcJk1s.ttf","500":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmLWhU97gxhcJk1s.ttf","600":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmJmmU97gxhcJk1s.ttf","700":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmP2nU97gxhcJk1s.ttf","800":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmOGkU97gxhcJk1s.ttf","900":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmMWlU97gxhcJk1s.ttf","regular":"http://fonts.gstatic.com/s/rokkitt/v13/qFdE35qfgYFjGy5hoEGId9bL2h4.ttf"},"Hind Madurai":{"300":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf","500":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf","600":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf","700":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf","regular":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf"},"Barlow Condensed":{"100":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf","200":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf","300":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf","500":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf","600":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf","700":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf","800":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf","900":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf","100italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf","200italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf","300italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf","regular":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf","italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf","500italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf","600italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf","700italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf","800italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf","900italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf"},"Satisfy":{"regular":"http://fonts.gstatic.com/s/satisfy/v9/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf"},"Assistant":{"200":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7p0ScA5cZbCjItw.ttf","300":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7w0ecA5cZbCjItw.ttf","600":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7t0GcA5cZbCjItw.ttf","700":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk700CcA5cZbCjItw.ttf","800":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7z0OcA5cZbCjItw.ttf","regular":"http://fonts.gstatic.com/s/assistant/v3/2sDcZGJYnIjSi6H75xkDb2-4C7wFZQ.ttf"},"Alegreya":{"500":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSoS5I3JyJ98KhtH.ttf","700":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpa4o3JyJ98KhtH.ttf","800":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpG4Y3JyJ98KhtH.ttf","900":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpi4I3JyJ98KhtH.ttf","regular":"http://fonts.gstatic.com/s/alegreya/v12/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf","italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaHrEBBsBhlBjvfkSLkx63j5pN1MwI.ttf","500italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_1nKwpteLwtHJlc.ttf","700italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_xHMwpteLwtHJlc.ttf","800italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_w3PwpteLwtHJlc.ttf","900italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_ynOwpteLwtHJlc.ttf"},"IBM Plex Sans":{"100":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf","200":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf","300":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf","500":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf","600":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf","700":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf"},"Gothic A1":{"100":"http://fonts.gstatic.com/s/gothica1/v7/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf","200":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf","300":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf","500":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf","600":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf","700":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf","800":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf","900":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf","regular":"http://fonts.gstatic.com/s/gothica1/v7/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf"},"Noto Sans SC":{"100":"http://fonts.gstatic.com/s/notosanssc/v8/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf","300":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf","500":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf","700":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf","900":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf","regular":"http://fonts.gstatic.com/s/notosanssc/v8/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf"},"Cuprum":{"700":"http://fonts.gstatic.com/s/cuprum/v10/dg4n_pLmvrkcOkBFnc5nj5YpQwM-gg.ttf","regular":"http://fonts.gstatic.com/s/cuprum/v10/dg4k_pLmvrkcOkB9IeFDh701Sg.ttf","italic":"http://fonts.gstatic.com/s/cuprum/v10/dg4m_pLmvrkcOkBNI-tHpbglShon.ttf","700italic":"http://fonts.gstatic.com/s/cuprum/v10/dg4h_pLmvrkcOkBNI9P7ipwtYQYugjW4.ttf"},"Courgette":{"regular":"http://fonts.gstatic.com/s/courgette/v6/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf"},"Old Standard TT":{"700":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf","regular":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf","italic":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf"},"ABeeZee":{"regular":"http://fonts.gstatic.com/s/abeezee/v12/esDR31xSG-6AGleN6tKukbcHCpE.ttf","italic":"http://fonts.gstatic.com/s/abeezee/v12/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf"},"PT Sans Caption":{"700":"http://fonts.gstatic.com/s/ptsanscaption/v11/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf","regular":"http://fonts.gstatic.com/s/ptsanscaption/v11/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf"},"Alegreya Sans":{"100":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf","300":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf","500":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf","700":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf","800":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf","900":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf","regular":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf","italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf"},"Concert One":{"regular":"http://fonts.gstatic.com/s/concertone/v9/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf"},"Caveat":{"700":"http://fonts.gstatic.com/s/caveat/v5/Wnz5HAc5bAfYB2Qz3RM9oiTQNAuxjA.ttf","regular":"http://fonts.gstatic.com/s/caveat/v5/Wnz6HAc5bAfYB2QLYTwZqg_MPQ.ttf"},"Alfa Slab One":{"regular":"http://fonts.gstatic.com/s/alfaslabone/v8/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf"},"Cardo":{"700":"http://fonts.gstatic.com/s/cardo/v10/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf","regular":"http://fonts.gstatic.com/s/cardo/v10/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf","italic":"http://fonts.gstatic.com/s/cardo/v10/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf"},"Kaushan Script":{"regular":"http://fonts.gstatic.com/s/kaushanscript/v7/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"},"Cantarell":{"700":"http://fonts.gstatic.com/s/cantarell/v8/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf","regular":"http://fonts.gstatic.com/s/cantarell/v8/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf","italic":"http://fonts.gstatic.com/s/cantarell/v8/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf","700italic":"http://fonts.gstatic.com/s/cantarell/v8/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf"},"Archivo Black":{"regular":"http://fonts.gstatic.com/s/archivoblack/v8/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf"},"Tinos":{"700":"http://fonts.gstatic.com/s/tinos/v12/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf","regular":"http://fonts.gstatic.com/s/tinos/v12/buE4poGnedXvwgX8dGVh8TI-.ttf","italic":"http://fonts.gstatic.com/s/tinos/v12/buE2poGnedXvwjX-fmFD9CI-4NU.ttf","700italic":"http://fonts.gstatic.com/s/tinos/v12/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf"},"Lalezar":{"regular":"http://fonts.gstatic.com/s/lalezar/v5/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf"},"Cormorant Garamond":{"300":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf","500":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf","600":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf","700":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf","300italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf","regular":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf","italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf","500italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf","600italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf","700italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf"},"Great Vibes":{"regular":"http://fonts.gstatic.com/s/greatvibes/v6/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf"},"Fredoka One":{"regular":"http://fonts.gstatic.com/s/fredokaone/v6/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf"},"Didact Gothic":{"regular":"http://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf"},"Fira Sans Extra Condensed":{"100":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf","200":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf","300":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf","500":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf","600":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf","700":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf","800":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf","900":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf","100italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf","200italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf","300italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf","regular":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf","italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf","500italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf","600italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf","700italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf","800italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf","900italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf"},"Orbitron":{"500":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QJIVAhxoNFxW0Hz.ttf","700":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QIAUghxoNFxW0Hz.ttf","900":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QI4UAhxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/orbitron/v10/yMJRMIlzdpvBhQQL_Tq8fSx5i814.ttf"},"Kalam":{"300":"http://fonts.gstatic.com/s/kalam/v9/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf","700":"http://fonts.gstatic.com/s/kalam/v9/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf","regular":"http://fonts.gstatic.com/s/kalam/v9/YA9dr0Wd4kDdMuhWMibDszkB.ttf"},"Martel":{"200":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf","300":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf","600":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf","700":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf","800":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf","900":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf","regular":"http://fonts.gstatic.com/s/martel/v3/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf"},"Lobster Two":{"700":"http://fonts.gstatic.com/s/lobstertwo/v11/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf","regular":"http://fonts.gstatic.com/s/lobstertwo/v11/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf","italic":"http://fonts.gstatic.com/s/lobstertwo/v11/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf","700italic":"http://fonts.gstatic.com/s/lobstertwo/v11/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf"},"Cookie":{"regular":"http://fonts.gstatic.com/s/cookie/v10/syky-y18lb0tSbfNlQCT9tPdpw.ttf"},"Frank Ruhl Libre":{"300":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf","500":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf","700":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf","900":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf","regular":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf"},"Pathway Gothic One":{"regular":"http://fonts.gstatic.com/s/pathwaygothicone/v7/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf"},"Volkhov":{"700":"http://fonts.gstatic.com/s/volkhov/v10/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf","regular":"http://fonts.gstatic.com/s/volkhov/v10/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf","italic":"http://fonts.gstatic.com/s/volkhov/v10/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf","700italic":"http://fonts.gstatic.com/s/volkhov/v10/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf"},"Barlow Semi Condensed":{"100":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf","200":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf","300":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf","500":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf","600":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf","700":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf","800":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf","900":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf","100italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf","200italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf","300italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf","regular":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf","italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf","500italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf","600italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf","700italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf","800italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf","900italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf"},"Quattrocento Sans":{"700":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf","regular":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf","italic":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf","700italic":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf"},"Luckiest Guy":{"regular":"http://fonts.gstatic.com/s/luckiestguy/v9/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf"},"Viga":{"regular":"http://fonts.gstatic.com/s/viga/v7/xMQbuFFdSaiX_QIjD4e2OX8.ttf"},"Russo One":{"regular":"http://fonts.gstatic.com/s/russoone/v7/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf"},"Zilla Slab":{"300":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf","500":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf","600":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf","700":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf","300italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf","regular":"http://fonts.gstatic.com/s/zillaslab/v4/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf","italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf","500italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf","600italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf","700italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf"},"Arapey":{"regular":"http://fonts.gstatic.com/s/arapey/v7/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf","italic":"http://fonts.gstatic.com/s/arapey/v7/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf"},"Nanum Myeongjo":{"700":"http://fonts.gstatic.com/s/nanummyeongjo/v14/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf","800":"http://fonts.gstatic.com/s/nanummyeongjo/v14/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf","regular":"http://fonts.gstatic.com/s/nanummyeongjo/v14/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf"},"Tangerine":{"700":"http://fonts.gstatic.com/s/tangerine/v10/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf","regular":"http://fonts.gstatic.com/s/tangerine/v10/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf"},"Chivo":{"300":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf","700":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf","900":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf","300italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf","regular":"http://fonts.gstatic.com/s/chivo/v10/va9I4kzIxd1KFoBvS-J3kbDP.ttf","italic":"http://fonts.gstatic.com/s/chivo/v10/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf","700italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf","900italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf"},"Special Elite":{"regular":"http://fonts.gstatic.com/s/specialelite/v9/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf"},"Monda":{"700":"http://fonts.gstatic.com/s/monda/v8/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf","regular":"http://fonts.gstatic.com/s/monda/v8/TK3tWkYFABsmjvpmNBsLvPdG.ttf"},"Sacramento":{"regular":"http://fonts.gstatic.com/s/sacramento/v6/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf"},"Tajawal":{"200":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf","300":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf","500":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf","700":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf","800":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf","900":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf","regular":"http://fonts.gstatic.com/s/tajawal/v2/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf"},"Saira Semi Condensed":{"100":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf","200":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf","300":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf","500":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf","600":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf","700":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf","800":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf","900":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf"},"Playfair Display SC":{"700":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf","900":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf"},"Poiret One":{"regular":"http://fonts.gstatic.com/s/poiretone/v7/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf"},"Hind Vadodara":{"300":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf","500":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf","600":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf","700":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf","regular":"http://fonts.gstatic.com/s/hindvadodara/v5/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf"},"Quattrocento":{"700":"http://fonts.gstatic.com/s/quattrocento/v10/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf","regular":"http://fonts.gstatic.com/s/quattrocento/v10/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf"},"M PLUS 1p":{"100":"http://fonts.gstatic.com/s/mplus1p/v17/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf","300":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf","500":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf","700":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf","800":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf","900":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf","regular":"http://fonts.gstatic.com/s/mplus1p/v17/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf"},"BenchNine":{"300":"http://fonts.gstatic.com/s/benchnine/v7/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf","700":"http://fonts.gstatic.com/s/benchnine/v7/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf","regular":"http://fonts.gstatic.com/s/benchnine/v7/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf"},"Hind Guntur":{"300":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf","500":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf","600":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf","700":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf","regular":"http://fonts.gstatic.com/s/hindguntur/v4/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf"},"Patrick Hand":{"regular":"http://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf"},"IBM Plex Serif":{"100":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf","200":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf","300":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf","500":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf","600":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf","700":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf","regular":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf","italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf"},"Cabin Condensed":{"500":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf","600":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf","700":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf","regular":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf"},"Khand":{"300":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf","500":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf","600":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf","700":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf","regular":"http://fonts.gstatic.com/s/khand/v7/TwMA-IINQlQQ0YpVWHU_TBqO.ttf"},"Taviraj":{"100":"http://fonts.gstatic.com/s/taviraj/v4/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf","200":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf","300":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf","500":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf","600":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf","700":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf","800":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf","900":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf","100italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf","200italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf","300italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf","regular":"http://fonts.gstatic.com/s/taviraj/v4/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf","italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf","500italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf","600italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf","700italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf","800italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf","900italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf"},"Ultra":{"regular":"http://fonts.gstatic.com/s/ultra/v11/zOLy4prXmrtY-tT6yLOD6NxF.ttf"},"Passion One":{"700":"http://fonts.gstatic.com/s/passionone/v9/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf","900":"http://fonts.gstatic.com/s/passionone/v9/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf","regular":"http://fonts.gstatic.com/s/passionone/v9/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf"},"Istok Web":{"700":"http://fonts.gstatic.com/s/istokweb/v13/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf","regular":"http://fonts.gstatic.com/s/istokweb/v13/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf","italic":"http://fonts.gstatic.com/s/istokweb/v13/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf","700italic":"http://fonts.gstatic.com/s/istokweb/v13/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf"},"Handlee":{"regular":"http://fonts.gstatic.com/s/handlee/v7/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf"},"Neucha":{"regular":"http://fonts.gstatic.com/s/neucha/v10/q5uGsou0JOdh94bvugNsCxVEgA.ttf"},"Josefin Slab":{"100":"http://fonts.gstatic.com/s/josefinslab/v9/lW-nwjwOK3Ps5GSJlNNkMalvyQ6qBM7oPxMX.ttf","300":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvASyKLuDkNgoO7g.ttf","600":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLuDkNgoO7g.ttf","700":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvESuKLuDkNgoO7g.ttf","100italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-lwjwOK3Ps5GSJlNNkMalnrzbODsrKOgMX95A.ttf","300italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrgFA8e7onu.ttf","regular":"http://fonts.gstatic.com/s/josefinslab/v9/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf","italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-nwjwOK3Ps5GSJlNNkMalnrw6qBM7oPxMX.ttf","600italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurgFA8e7onu.ttf","700italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rgFA8e7onu.ttf"},"Sawarabi Mincho":{"regular":"http://fonts.gstatic.com/s/sawarabimincho/v9/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf"},"Gudea":{"700":"http://fonts.gstatic.com/s/gudea/v8/neIIzCqgsI0mp9gz26WGHK06UY30.ttf","regular":"http://fonts.gstatic.com/s/gudea/v8/neIFzCqgsI0mp-CP9IGON7Ez.ttf","italic":"http://fonts.gstatic.com/s/gudea/v8/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf"},"Sanchez":{"regular":"http://fonts.gstatic.com/s/sanchez/v6/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf","italic":"http://fonts.gstatic.com/s/sanchez/v6/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf"},"Prata":{"regular":"http://fonts.gstatic.com/s/prata/v9/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf"},"Neuton":{"200":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf","300":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf","700":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf","800":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf","regular":"http://fonts.gstatic.com/s/neuton/v11/UMBTrPtMoH62xUZyyII7civlBw.ttf","italic":"http://fonts.gstatic.com/s/neuton/v11/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf"},"Boogaloo":{"regular":"http://fonts.gstatic.com/s/boogaloo/v10/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf"},"Saira":{"100":"http://fonts.gstatic.com/s/saira/v3/mem-Ya2wxmKQyNFETZY_VrUfTck.ttf","200":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNHobLYVeLkWVNBt.ttf","300":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGMb7YVeLkWVNBt.ttf","500":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNHUbrYVeLkWVNBt.ttf","600":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNH4abYVeLkWVNBt.ttf","700":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGcaLYVeLkWVNBt.ttf","800":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGAa7YVeLkWVNBt.ttf","900":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGkarYVeLkWVNBt.ttf","regular":"http://fonts.gstatic.com/s/saira/v3/memwYa2wxmKQyOkgR5IdU6Uf.ttf"},"Merienda":{"700":"http://fonts.gstatic.com/s/merienda/v7/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf","regular":"http://fonts.gstatic.com/s/merienda/v7/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf"},"Philosopher":{"700":"http://fonts.gstatic.com/s/philosopher/v10/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf","regular":"http://fonts.gstatic.com/s/philosopher/v10/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf","italic":"http://fonts.gstatic.com/s/philosopher/v10/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf","700italic":"http://fonts.gstatic.com/s/philosopher/v10/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf"},"Yantramanav":{"100":"http://fonts.gstatic.com/s/yantramanav/v4/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf","300":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf","500":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf","700":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf","900":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf","regular":"http://fonts.gstatic.com/s/yantramanav/v4/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf"},"Monoton":{"regular":"http://fonts.gstatic.com/s/monoton/v8/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf"},"Gochi Hand":{"regular":"http://fonts.gstatic.com/s/gochihand/v9/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf"},"Changa":{"200":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcsqb2bUsT5rZhaZg.ttf","300":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcszb6bUsT5rZhaZg.ttf","500":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcslb-bUsT5rZhaZg.ttf","600":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcsubibUsT5rZhaZg.ttf","700":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcs3bmbUsT5rZhaZg.ttf","800":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcswbqbUsT5rZhaZg.ttf","regular":"http://fonts.gstatic.com/s/changa/v6/2-cm9JNi2YuVOUcUYZa_Wu_lpA.ttf"},"Signika Negative":{"300":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipHD6z_iXAs.ttf","600":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipHD6z_iXAs.ttf","700":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipHD6z_iXAs.ttf","regular":"http://fonts.gstatic.com/s/signikanegative/v9/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf"},"Marck Script":{"regular":"http://fonts.gstatic.com/s/marckscript/v9/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf"},"Allerta Stencil":{"regular":"http://fonts.gstatic.com/s/allertastencil/v9/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf"},"Pragati Narrow":{"700":"http://fonts.gstatic.com/s/pragatinarrow/v4/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf","regular":"http://fonts.gstatic.com/s/pragatinarrow/v4/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf"},"Yrsa":{"300":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf","500":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf","600":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf","700":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf","regular":"http://fonts.gstatic.com/s/yrsa/v4/wlp-gwnQFlxs5QvV-IwQwWc.ttf"},"Carter One":{"regular":"http://fonts.gstatic.com/s/carterone/v10/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf"},"Pontano Sans":{"regular":"http://fonts.gstatic.com/s/pontanosans/v6/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf"},"Asap Condensed":{"500":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf","600":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf","700":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf","regular":"http://fonts.gstatic.com/s/asapcondensed/v3/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf","italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf","500italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf","600italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf","700italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf"},"Unica One":{"regular":"http://fonts.gstatic.com/s/unicaone/v6/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf"},"Sigmar One":{"regular":"http://fonts.gstatic.com/s/sigmarone/v9/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf"},"Hammersmith One":{"regular":"http://fonts.gstatic.com/s/hammersmithone/v9/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf"},"Vidaloka":{"regular":"http://fonts.gstatic.com/s/vidaloka/v11/7cHrv4c3ipenMKlEass8yn4hnCci.ttf"},"Montserrat Alternates":{"100":"http://fonts.gstatic.com/s/montserratalternates/v10/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf","200":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf","300":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf","500":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf","600":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf","700":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf","800":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf","900":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf","100italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf","200italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf","300italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf","regular":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf","italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf","500italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf","600italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf","700italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf","800italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf","900italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf"},"Ruda":{"700":"http://fonts.gstatic.com/s/ruda/v10/k3kQo8YQJOpFosM4Td7iL0nAMaM.ttf","900":"http://fonts.gstatic.com/s/ruda/v10/k3kQo8YQJOpFovs6Td7iL0nAMaM.ttf","regular":"http://fonts.gstatic.com/s/ruda/v10/k3kfo8YQJOpFmn8XadbJM0A.ttf"},"Saira Extra Condensed":{"100":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf","200":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf","300":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf","500":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf","600":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf","700":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf","800":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf","900":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf","regular":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf"},"Economica":{"700":"http://fonts.gstatic.com/s/economica/v6/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf","regular":"http://fonts.gstatic.com/s/economica/v6/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf","italic":"http://fonts.gstatic.com/s/economica/v6/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf","700italic":"http://fonts.gstatic.com/s/economica/v6/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf"},"Armata":{"regular":"http://fonts.gstatic.com/s/armata/v10/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf"},"Advent Pro":{"100":"http://fonts.gstatic.com/s/adventpro/v9/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf","200":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf","300":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf","500":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf","600":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf","700":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf","regular":"http://fonts.gstatic.com/s/adventpro/v9/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf"},"Bangers":{"regular":"http://fonts.gstatic.com/s/bangers/v11/FeVQS0BTqb0h60ACL5la2bxii28.ttf"},"Pridi":{"200":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf","300":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf","500":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf","600":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf","700":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf","regular":"http://fonts.gstatic.com/s/pridi/v4/2sDQZG5JnZLfkfWao2krbl29.ttf"},"Audiowide":{"regular":"http://fonts.gstatic.com/s/audiowide/v7/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf"},"Sorts Mill Goudy":{"regular":"http://fonts.gstatic.com/s/sortsmillgoudy/v8/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf","italic":"http://fonts.gstatic.com/s/sortsmillgoudy/v8/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf"},"Yellowtail":{"regular":"http://fonts.gstatic.com/s/yellowtail/v9/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf"},"Archivo":{"500":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdSrLC0HrLaqM6Q4.ttf","600":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdQbMC0HrLaqM6Q4.ttf","700":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdWLNC0HrLaqM6Q4.ttf","regular":"http://fonts.gstatic.com/s/archivo/v4/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf","italic":"http://fonts.gstatic.com/s/archivo/v4/k3kSo8UDI-1M0wlSfdzoK2vFIaOV8A.ttf","500italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQ30LhKYiJ-Q7m8w.ttf","600italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQ80XhKYiJ-Q7m8w.ttf","700italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQl0ThKYiJ-Q7m8w.ttf"},"Gentium Basic":{"700":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf","regular":"http://fonts.gstatic.com/s/gentiumbasic/v10/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf","italic":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf"},"Playball":{"regular":"http://fonts.gstatic.com/s/playball/v8/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf"},"Architects Daughter":{"regular":"http://fonts.gstatic.com/s/architectsdaughter/v9/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf"},"Amaranth":{"700":"http://fonts.gstatic.com/s/amaranth/v9/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf","regular":"http://fonts.gstatic.com/s/amaranth/v9/KtkuALODe433f0j1zPnCF9GqwnzW.ttf","italic":"http://fonts.gstatic.com/s/amaranth/v9/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf","700italic":"http://fonts.gstatic.com/s/amaranth/v9/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf"},"Noto Serif JP":{"200":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf","300":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf","500":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf","600":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf","700":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf","900":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf","regular":"http://fonts.gstatic.com/s/notoserifjp/v6/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf"},"Varela":{"regular":"http://fonts.gstatic.com/s/varela/v9/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf"},"Bad Script":{"regular":"http://fonts.gstatic.com/s/badscript/v7/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf"},"Glegoo":{"700":"http://fonts.gstatic.com/s/glegoo/v8/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf","regular":"http://fonts.gstatic.com/s/glegoo/v8/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf"},"Schoolbell":{"regular":"http://fonts.gstatic.com/s/schoolbell/v9/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf"},"Alice":{"regular":"http://fonts.gstatic.com/s/alice/v10/OpNCnoEEmtHa6FcJpA_chzJ0.ttf"},"Staatliches":{"regular":"http://fonts.gstatic.com/s/staatliches/v2/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf"},"Kreon":{"300":"http://fonts.gstatic.com/s/kreon/v13/t5tjIRIUKY-TFH1sUU23hqLgzCHu.ttf","700":"http://fonts.gstatic.com/s/kreon/v13/t5tjIRIUKY-TFH18Vk23hqLgzCHu.ttf","regular":"http://fonts.gstatic.com/s/kreon/v13/t5tuIRIUKY-TFEXAeWm_rb7p.ttf"},"Adamina":{"regular":"http://fonts.gstatic.com/s/adamina/v12/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf"},"Gentium Book Basic":{"700":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf","regular":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf","italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf"},"PT Mono":{"regular":"http://fonts.gstatic.com/s/ptmono/v6/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf"},"Rock Salt":{"regular":"http://fonts.gstatic.com/s/rocksalt/v9/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf"},"Enriqueta":{"700":"http://fonts.gstatic.com/s/enriqueta/v7/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf","regular":"http://fonts.gstatic.com/s/enriqueta/v7/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf"},"Press Start 2P":{"regular":"http://fonts.gstatic.com/s/pressstart2p/v7/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf"},"Julius Sans One":{"regular":"http://fonts.gstatic.com/s/juliussansone/v7/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf"},"Paytone One":{"regular":"http://fonts.gstatic.com/s/paytoneone/v11/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf"},"Unna":{"700":"http://fonts.gstatic.com/s/unna/v12/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf","regular":"http://fonts.gstatic.com/s/unna/v12/AYCEpXzofN0NCpgBlGHCWFM.ttf","italic":"http://fonts.gstatic.com/s/unna/v12/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf","700italic":"http://fonts.gstatic.com/s/unna/v12/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf"},"Sintony":{"700":"http://fonts.gstatic.com/s/sintony/v6/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf","regular":"http://fonts.gstatic.com/s/sintony/v6/XoHm2YDqR7-98cVUITQnu98ojjs.ttf"},"Rasa":{"300":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdg52sgC7S9XdZN8.ttf","500":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdlZ3sgC7S9XdZN8.ttf","600":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdnpwsgC7S9XdZN8.ttf","700":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdh5xsgC7S9XdZN8.ttf","regular":"http://fonts.gstatic.com/s/rasa/v4/xn7vYHIn1mWmTqJelgiQV9w.ttf"},"Ubuntu Mono":{"700":"http://fonts.gstatic.com/s/ubuntumono/v8/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf","regular":"http://fonts.gstatic.com/s/ubuntumono/v8/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf","italic":"http://fonts.gstatic.com/s/ubuntumono/v8/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf","700italic":"http://fonts.gstatic.com/s/ubuntumono/v8/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf"},"Covered By Your Grace":{"regular":"http://fonts.gstatic.com/s/coveredbyyourgrace/v8/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf"},"Damion":{"regular":"http://fonts.gstatic.com/s/damion/v8/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf"},"Cousine":{"700":"http://fonts.gstatic.com/s/cousine/v13/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf","regular":"http://fonts.gstatic.com/s/cousine/v13/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf","italic":"http://fonts.gstatic.com/s/cousine/v13/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf","700italic":"http://fonts.gstatic.com/s/cousine/v13/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf"},"Arbutus Slab":{"regular":"http://fonts.gstatic.com/s/arbutusslab/v7/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf"},"Sarala":{"700":"http://fonts.gstatic.com/s/sarala/v3/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf","regular":"http://fonts.gstatic.com/s/sarala/v3/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf"},"Palanquin":{"100":"http://fonts.gstatic.com/s/palanquin/v4/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf","200":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf","300":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf","500":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf","600":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf","700":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf","regular":"http://fonts.gstatic.com/s/palanquin/v4/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf"},"Actor":{"regular":"http://fonts.gstatic.com/s/actor/v8/wEOzEBbCkc5cO3ekXygtUMIO.ttf"},"Fugaz One":{"regular":"http://fonts.gstatic.com/s/fugazone/v8/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf"},"Rambla":{"700":"http://fonts.gstatic.com/s/rambla/v6/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf","regular":"http://fonts.gstatic.com/s/rambla/v6/snfrs0ip98hx6mr0I7IONthkwQ.ttf","italic":"http://fonts.gstatic.com/s/rambla/v6/snfps0ip98hx6mrEIbgKFN10wYKa.ttf","700italic":"http://fonts.gstatic.com/s/rambla/v6/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf"},"Days One":{"regular":"http://fonts.gstatic.com/s/daysone/v8/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf"},"Mitr":{"200":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf","300":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf","500":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf","600":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf","700":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf","regular":"http://fonts.gstatic.com/s/mitr/v4/pxiLypw5ucZFyTsyMJj_b1o.ttf"},"Allura":{"regular":"http://fonts.gstatic.com/s/allura/v7/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf"},"El Messiri":{"500":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6On6jJyrYYWOMluQ.ttf","600":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6OlKkJyrYYWOMluQ.ttf","700":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6OjalJyrYYWOMluQ.ttf","regular":"http://fonts.gstatic.com/s/elmessiri/v5/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf"},"Antic Slab":{"regular":"http://fonts.gstatic.com/s/anticslab/v7/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf"},"Parisienne":{"regular":"http://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf"},"Homemade Apple":{"regular":"http://fonts.gstatic.com/s/homemadeapple/v9/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf"},"Shadows Into Light Two":{"regular":"http://fonts.gstatic.com/s/shadowsintolighttwo/v6/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf"},"Italianno":{"regular":"http://fonts.gstatic.com/s/italianno/v8/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf"},"Oleo Script":{"700":"http://fonts.gstatic.com/s/oleoscript/v7/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf","regular":"http://fonts.gstatic.com/s/oleoscript/v7/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf"},"Alegreya Sans SC":{"100":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf","300":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf","500":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf","700":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf","800":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf","900":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf","regular":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf","italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf"},"Baloo":{"regular":"http://fonts.gstatic.com/s/baloo/v4/6xKhdSpJJ92I9PWIAG_5LWwJ.ttf"},"Nothing You Could Do":{"regular":"http://fonts.gstatic.com/s/nothingyoucoulddo/v8/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf"},"Cormorant":{"300":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf","500":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf","600":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf","700":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf","300italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf","regular":"http://fonts.gstatic.com/s/cormorant/v7/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf","italic":"http://fonts.gstatic.com/s/cormorant/v7/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf","500italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf","600italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf","700italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf"},"Lusitana":{"700":"http://fonts.gstatic.com/s/lusitana/v6/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf","regular":"http://fonts.gstatic.com/s/lusitana/v6/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf"},"Karma":{"300":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf","500":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf","600":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf","700":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf","regular":"http://fonts.gstatic.com/s/karma/v9/va9I4kzAzMZRGIBvS-J3kbDP.ttf"},"Allerta":{"regular":"http://fonts.gstatic.com/s/allerta/v9/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf"},"Share Tech Mono":{"regular":"http://fonts.gstatic.com/s/sharetechmono/v8/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf"},"Sawarabi Gothic":{"regular":"http://fonts.gstatic.com/s/sawarabigothic/v7/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf"},"Khula":{"300":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf","600":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf","700":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf","800":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf","regular":"http://fonts.gstatic.com/s/khula/v4/OpNCnoEOns3V7FcJpA_chzJ0.ttf"},"Jura":{"300":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVW9rdCxo0JTVVPw.ttf","500":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVTdqdCxo0JTVVPw.ttf","600":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVRttdCxo0JTVVPw.ttf","700":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVX9sdCxo0JTVVPw.ttf","regular":"http://fonts.gstatic.com/s/jura/v10/z7NbdRfiaC4VbcNDUCRDzJ0.ttf"},"Scada":{"700":"http://fonts.gstatic.com/s/scada/v7/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf","regular":"http://fonts.gstatic.com/s/scada/v7/RLpxK5Pv5qumeWJoxzUobkvv.ttf","italic":"http://fonts.gstatic.com/s/scada/v7/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf","700italic":"http://fonts.gstatic.com/s/scada/v7/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf"},"Aguafina Script":{"regular":"http://fonts.gstatic.com/s/aguafinascript/v7/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf"},"Marcellus":{"regular":"http://fonts.gstatic.com/s/marcellus/v6/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf"},"Molengo":{"regular":"http://fonts.gstatic.com/s/molengo/v9/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf"},"Chewy":{"regular":"http://fonts.gstatic.com/s/chewy/v10/uK_94ruUb-k-wk5xIDMfO-ed.ttf"},"Spectral":{"200":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf","300":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf","500":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf","600":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf","700":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf","800":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf","200italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf","300italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf","regular":"http://fonts.gstatic.com/s/spectral/v5/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf","italic":"http://fonts.gstatic.com/s/spectral/v5/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf","500italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf","600italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf","700italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf","800italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf"},"Pinyon Script":{"regular":"http://fonts.gstatic.com/s/pinyonscript/v8/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf"},"Mr Dafoe":{"regular":"http://fonts.gstatic.com/s/mrdafoe/v7/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf"},"Cantata One":{"regular":"http://fonts.gstatic.com/s/cantataone/v8/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf"},"Hanuman":{"700":"http://fonts.gstatic.com/s/hanuman/v12/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/hanuman/v12/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf"},"PT Serif Caption":{"regular":"http://fonts.gstatic.com/s/ptserifcaption/v10/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf","italic":"http://fonts.gstatic.com/s/ptserifcaption/v10/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf"},"Jaldi":{"700":"http://fonts.gstatic.com/s/jaldi/v5/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf","regular":"http://fonts.gstatic.com/s/jaldi/v5/or3sQ67z0_CI30NUZpD_B6g8.ttf"},"Alex Brush":{"regular":"http://fonts.gstatic.com/s/alexbrush/v10/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf"},"Rancho":{"regular":"http://fonts.gstatic.com/s/rancho/v9/46kulbzmXjLaqZRlbWXgd0RY1g.ttf"},"Bevan":{"regular":"http://fonts.gstatic.com/s/bevan/v10/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf"},"Scheherazade":{"700":"http://fonts.gstatic.com/s/scheherazade/v16/YA9Lr0yF4ETZN60keViq1kQYC7yMjt3V_dB0Yw.ttf","regular":"http://fonts.gstatic.com/s/scheherazade/v16/YA9Ur0yF4ETZN60keViq1kQgt5OohvbJ9A.ttf"},"Encode Sans Condensed":{"100":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf","200":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf","300":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf","500":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf","600":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf","700":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf","800":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf","900":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf","regular":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf"},"Michroma":{"regular":"http://fonts.gstatic.com/s/michroma/v9/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf"},"Pangolin":{"regular":"http://fonts.gstatic.com/s/pangolin/v4/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf"},"Niconne":{"regular":"http://fonts.gstatic.com/s/niconne/v8/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf"},"Abhaya Libre":{"500":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf","600":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf","700":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf","800":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf","regular":"http://fonts.gstatic.com/s/abhayalibre/v4/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf"},"Lustria":{"regular":"http://fonts.gstatic.com/s/lustria/v6/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf"},"Fredericka the Great":{"regular":"http://fonts.gstatic.com/s/frederickathegreat/v7/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf"},"Spinnaker":{"regular":"http://fonts.gstatic.com/s/spinnaker/v10/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf"},"Nanum Gothic Coding":{"700":"http://fonts.gstatic.com/s/nanumgothiccoding/v13/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf","regular":"http://fonts.gstatic.com/s/nanumgothiccoding/v13/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf"},"Forum":{"regular":"http://fonts.gstatic.com/s/forum/v9/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf"},"Basic":{"regular":"http://fonts.gstatic.com/s/basic/v8/xfu_0WLxV2_XKQN34lDVyR7D.ttf"},"Nobile":{"500":"http://fonts.gstatic.com/s/nobile/v10/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf","700":"http://fonts.gstatic.com/s/nobile/v10/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf","regular":"http://fonts.gstatic.com/s/nobile/v10/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf","italic":"http://fonts.gstatic.com/s/nobile/v10/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf","500italic":"http://fonts.gstatic.com/s/nobile/v10/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf","700italic":"http://fonts.gstatic.com/s/nobile/v10/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf"},"Belleza":{"regular":"http://fonts.gstatic.com/s/belleza/v7/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf"},"Reenie Beanie":{"regular":"http://fonts.gstatic.com/s/reeniebeanie/v9/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf"},"Candal":{"regular":"http://fonts.gstatic.com/s/candal/v8/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf"},"Leckerli One":{"regular":"http://fonts.gstatic.com/s/leckerlione/v9/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf"},"Nanum Pen Script":{"regular":"http://fonts.gstatic.com/s/nanumpenscript/v14/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf"},"Black Ops One":{"regular":"http://fonts.gstatic.com/s/blackopsone/v10/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf"},"Average":{"regular":"http://fonts.gstatic.com/s/average/v7/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf"},"Radley":{"regular":"http://fonts.gstatic.com/s/radley/v13/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf","italic":"http://fonts.gstatic.com/s/radley/v13/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf"},"Syncopate":{"700":"http://fonts.gstatic.com/s/syncopate/v10/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf","regular":"http://fonts.gstatic.com/s/syncopate/v10/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf"},"Magra":{"700":"http://fonts.gstatic.com/s/magra/v7/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf","regular":"http://fonts.gstatic.com/s/magra/v7/uK_94ruaZus72k5xIDMfO-ed.ttf"},"Lemonada":{"300":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8PindGu2bje-RpH.ttf","600":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8OWm9Gu2bje-RpH.ttf","700":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8PymtGu2bje-RpH.ttf","regular":"http://fonts.gstatic.com/s/lemonada/v6/0QIjMXFD9oygTWy_R_tOtfWm8qTX.ttf"},"Prosto One":{"regular":"http://fonts.gstatic.com/s/prostoone/v7/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf"},"Sarabun":{"100":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf","200":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf","300":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf","500":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf","600":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf","700":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf","800":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf","100italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf","200italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf","300italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf","regular":"http://fonts.gstatic.com/s/sarabun/v6/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf","italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf","500italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf","600italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf","700italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf","800italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf"},"Marcellus SC":{"regular":"http://fonts.gstatic.com/s/marcellussc/v6/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf"},"Electrolize":{"regular":"http://fonts.gstatic.com/s/electrolize/v7/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf"},"Quantico":{"700":"http://fonts.gstatic.com/s/quantico/v8/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf","regular":"http://fonts.gstatic.com/s/quantico/v8/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf","italic":"http://fonts.gstatic.com/s/quantico/v8/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf","700italic":"http://fonts.gstatic.com/s/quantico/v8/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf"},"Sunflower":{"300":"http://fonts.gstatic.com/s/sunflower/v8/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf","500":"http://fonts.gstatic.com/s/sunflower/v8/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf","700":"http://fonts.gstatic.com/s/sunflower/v8/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf"},"Aldrich":{"regular":"http://fonts.gstatic.com/s/aldrich/v9/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf"},"Share":{"700":"http://fonts.gstatic.com/s/share/v9/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf","regular":"http://fonts.gstatic.com/s/share/v9/i7dEIFliZjKNF5VNHLq2cV5d.ttf","italic":"http://fonts.gstatic.com/s/share/v9/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf","700italic":"http://fonts.gstatic.com/s/share/v9/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf"},"Coda":{"800":"http://fonts.gstatic.com/s/coda/v14/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf","regular":"http://fonts.gstatic.com/s/coda/v14/SLXHc1jY5nQ8JUIMapaN39I.ttf"},"Biryani":{"200":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf","300":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf","600":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf","700":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf","800":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf","900":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf","regular":"http://fonts.gstatic.com/s/biryani/v4/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf"},"Kameron":{"700":"http://fonts.gstatic.com/s/kameron/v9/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf","regular":"http://fonts.gstatic.com/s/kameron/v9/vm82dR7vXErQxuznsL4wL-XIYH8.ttf"},"M PLUS Rounded 1c":{"100":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf","300":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf","500":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf","700":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf","800":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf","900":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf","regular":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf"},"Yesteryear":{"regular":"http://fonts.gstatic.com/s/yesteryear/v7/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf"},"Lilita One":{"regular":"http://fonts.gstatic.com/s/lilitaone/v6/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf"},"Tenor Sans":{"regular":"http://fonts.gstatic.com/s/tenorsans/v10/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf"},"Rochester":{"regular":"http://fonts.gstatic.com/s/rochester/v9/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf"},"Antic":{"regular":"http://fonts.gstatic.com/s/antic/v10/TuGfUVB8XY5DRaZLodgzydtk.ttf"},"Knewave":{"regular":"http://fonts.gstatic.com/s/knewave/v7/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"},"Shojumaru":{"regular":"http://fonts.gstatic.com/s/shojumaru/v6/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf"},"Caveat Brush":{"regular":"http://fonts.gstatic.com/s/caveatbrush/v4/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf"},"Bungee":{"regular":"http://fonts.gstatic.com/s/bungee/v4/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf"},"Cinzel Decorative":{"700":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf","900":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf","regular":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf"},"Overlock":{"700":"http://fonts.gstatic.com/s/overlock/v8/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf","900":"http://fonts.gstatic.com/s/overlock/v8/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf","regular":"http://fonts.gstatic.com/s/overlock/v8/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf","italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf","700italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf","900italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf"},"Space Mono":{"700":"http://fonts.gstatic.com/s/spacemono/v4/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf","regular":"http://fonts.gstatic.com/s/spacemono/v4/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf","italic":"http://fonts.gstatic.com/s/spacemono/v4/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf","700italic":"http://fonts.gstatic.com/s/spacemono/v4/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf"},"Just Another Hand":{"regular":"http://fonts.gstatic.com/s/justanotherhand/v10/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf"},"Gruppo":{"regular":"http://fonts.gstatic.com/s/gruppo/v9/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf"},"Fauna One":{"regular":"http://fonts.gstatic.com/s/faunaone/v6/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf"},"Berkshire Swash":{"regular":"http://fonts.gstatic.com/s/berkshireswash/v7/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf"},"Cabin Sketch":{"700":"http://fonts.gstatic.com/s/cabinsketch/v12/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf","regular":"http://fonts.gstatic.com/s/cabinsketch/v12/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf"},"Itim":{"regular":"http://fonts.gstatic.com/s/itim/v3/0nknC9ziJOYewARKkc7ZdwU.ttf"},"Reem Kufi":{"regular":"http://fonts.gstatic.com/s/reemkufi/v6/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf"},"Rufina":{"700":"http://fonts.gstatic.com/s/rufina/v6/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf","regular":"http://fonts.gstatic.com/s/rufina/v6/Yq6V-LyURyLy-aKyoxRktOdClg.ttf"},"Lateef":{"regular":"http://fonts.gstatic.com/s/lateef/v14/hESw6XVnNCxEvkbMpheEZo_H_w.ttf"},"Changa One":{"regular":"http://fonts.gstatic.com/s/changaone/v11/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf","italic":"http://fonts.gstatic.com/s/changaone/v11/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf"},"Oranienbaum":{"regular":"http://fonts.gstatic.com/s/oranienbaum/v7/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf"},"Coda Caption":{"800":"http://fonts.gstatic.com/s/codacaption/v12/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf"},"Squada One":{"regular":"http://fonts.gstatic.com/s/squadaone/v7/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf"},"Buenard":{"700":"http://fonts.gstatic.com/s/buenard/v10/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf","regular":"http://fonts.gstatic.com/s/buenard/v10/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf"},"Laila":{"300":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf","500":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf","600":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf","700":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf","regular":"http://fonts.gstatic.com/s/laila/v5/LYjMdG_8nE8jDIRdiidIrEIu.ttf"},"Contrail One":{"regular":"http://fonts.gstatic.com/s/contrailone/v8/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf"},"Aclonica":{"regular":"http://fonts.gstatic.com/s/aclonica/v9/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf"},"Puritan":{"700":"http://fonts.gstatic.com/s/puritan/v10/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf","regular":"http://fonts.gstatic.com/s/puritan/v10/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf","italic":"http://fonts.gstatic.com/s/puritan/v10/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf","700italic":"http://fonts.gstatic.com/s/puritan/v10/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf"},"Telex":{"regular":"http://fonts.gstatic.com/s/telex/v7/ieVw2Y1fKWmIO9fTB1piKFIf.ttf"},"Alef":{"700":"http://fonts.gstatic.com/s/alef/v10/FeVQS0NQpLYglo50L5la2bxii28.ttf","regular":"http://fonts.gstatic.com/s/alef/v10/FeVfS0NQpLYgrjJbC5FxxbU.ttf"},"Norican":{"regular":"http://fonts.gstatic.com/s/norican/v7/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf"},"Markazi Text":{"500":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf","600":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf","700":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf","regular":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf"},"Marmelad":{"regular":"http://fonts.gstatic.com/s/marmelad/v8/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf"},"Arizonia":{"regular":"http://fonts.gstatic.com/s/arizonia/v9/neIIzCemt4A5qa7mv6WGHK06UY30.ttf"},"Nanum Brush Script":{"regular":"http://fonts.gstatic.com/s/nanumbrushscript/v16/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf"},"Grand Hotel":{"regular":"http://fonts.gstatic.com/s/grandhotel/v6/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf"},"Trirong":{"100":"http://fonts.gstatic.com/s/trirong/v4/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf","200":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf","300":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf","500":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf","600":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf","700":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf","800":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf","900":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf","100italic":"http://fonts.gstatic.com/s/trirong/v4/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf","200italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf","300italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf","regular":"http://fonts.gstatic.com/s/trirong/v4/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf","italic":"http://fonts.gstatic.com/s/trirong/v4/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf","500italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf","600italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf","700italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf","800italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf","900italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf"},"Love Ya Like A Sister":{"regular":"http://fonts.gstatic.com/s/loveyalikeasister/v9/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf"},"VT323":{"regular":"http://fonts.gstatic.com/s/vt323/v10/pxiKyp0ihIEF2hsYHpT2dkNE.ttf"},"Yeseva One":{"regular":"http://fonts.gstatic.com/s/yesevaone/v13/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf"},"Annie Use Your Telescope":{"regular":"http://fonts.gstatic.com/s/annieuseyourtelescope/v9/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf"},"Lekton":{"700":"http://fonts.gstatic.com/s/lekton/v9/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf","regular":"http://fonts.gstatic.com/s/lekton/v9/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf","italic":"http://fonts.gstatic.com/s/lekton/v9/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf"},"Fira Mono":{"500":"http://fonts.gstatic.com/s/firamono/v7/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf","700":"http://fonts.gstatic.com/s/firamono/v7/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf","regular":"http://fonts.gstatic.com/s/firamono/v7/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf"},"Coming Soon":{"regular":"http://fonts.gstatic.com/s/comingsoon/v9/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf"},"Carme":{"regular":"http://fonts.gstatic.com/s/carme/v9/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf"},"Halant":{"300":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf","500":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf","600":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf","700":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf","regular":"http://fonts.gstatic.com/s/halant/v6/u-4-0qaujRI2PbsX39Jmky12eg.ttf"},"Slabo 13px":{"regular":"http://fonts.gstatic.com/s/slabo13px/v6/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf"},"Shrikhand":{"regular":"http://fonts.gstatic.com/s/shrikhand/v4/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf"},"Average Sans":{"regular":"http://fonts.gstatic.com/s/averagesans/v7/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf"},"Baloo Bhaina":{"regular":"http://fonts.gstatic.com/s/baloobhaina/v4/Noa16Uzzzp2FIkfhq5vm9thxPAR9mhHobg.ttf"},"Eczar":{"500":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf","600":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf","700":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf","800":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf","regular":"http://fonts.gstatic.com/s/eczar/v7/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf"},"Voltaire":{"regular":"http://fonts.gstatic.com/s/voltaire/v8/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf"},"Herr Von Muellerhoff":{"regular":"http://fonts.gstatic.com/s/herrvonmuellerhoff/v8/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf"},"Racing Sans One":{"regular":"http://fonts.gstatic.com/s/racingsansone/v6/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf"},"Petit Formal Script":{"regular":"http://fonts.gstatic.com/s/petitformalscript/v6/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf"},"Ovo":{"regular":"http://fonts.gstatic.com/s/ovo/v10/yYLl0h7Wyfzjy4Q5_3WVxA.ttf"},"Carrois Gothic":{"regular":"http://fonts.gstatic.com/s/carroisgothic/v9/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf"},"Jockey One":{"regular":"http://fonts.gstatic.com/s/jockeyone/v8/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf"},"Alegreya SC":{"500":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf","700":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf","800":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf","900":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf","regular":"http://fonts.gstatic.com/s/alegreyasc/v10/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf","italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf"},"Arsenal":{"700":"http://fonts.gstatic.com/s/arsenal/v3/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf","regular":"http://fonts.gstatic.com/s/arsenal/v3/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf","italic":"http://fonts.gstatic.com/s/arsenal/v3/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf","700italic":"http://fonts.gstatic.com/s/arsenal/v3/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf"},"Encode Sans":{"100":"http://fonts.gstatic.com/s/encodesans/v3/LDI0apOFNxEwR-Bd1O9uYPvIeeLkl7Iw6yg.ttf","200":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPtkWMLOub458jGL.ttf","300":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsAW8LOub458jGL.ttf","500":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPtYWsLOub458jGL.ttf","600":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPt0XcLOub458jGL.ttf","700":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsQXMLOub458jGL.ttf","800":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsMX8LOub458jGL.ttf","900":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsoXsLOub458jGL.ttf","regular":"http://fonts.gstatic.com/s/encodesans/v3/LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw.ttf"},"Nixie One":{"regular":"http://fonts.gstatic.com/s/nixieone/v9/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf"},"Saira Condensed":{"100":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf","200":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf","300":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf","500":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf","600":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf","700":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf","800":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf","900":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf","regular":"http://fonts.gstatic.com/s/sairacondensed/v4/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf"},"Martel Sans":{"200":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf","300":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf","600":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf","700":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf","800":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf","900":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf","regular":"http://fonts.gstatic.com/s/martelsans/v5/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf"},"Tulpen One":{"regular":"http://fonts.gstatic.com/s/tulpenone/v8/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf"},"Bowlby One SC":{"regular":"http://fonts.gstatic.com/s/bowlbyonesc/v10/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf"},"Bungee Inline":{"regular":"http://fonts.gstatic.com/s/bungeeinline/v4/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf"},"Judson":{"700":"http://fonts.gstatic.com/s/judson/v11/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf","regular":"http://fonts.gstatic.com/s/judson/v11/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf","italic":"http://fonts.gstatic.com/s/judson/v11/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf"},"Marvel":{"700":"http://fonts.gstatic.com/s/marvel/v8/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf","regular":"http://fonts.gstatic.com/s/marvel/v8/nwpVtKeoNgBV0qaIkV7ED366zg.ttf","italic":"http://fonts.gstatic.com/s/marvel/v8/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf","700italic":"http://fonts.gstatic.com/s/marvel/v8/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf"},"Calligraffitti":{"regular":"http://fonts.gstatic.com/s/calligraffitti/v10/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf"},"GFS Didot":{"regular":"http://fonts.gstatic.com/s/gfsdidot/v8/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf"},"Gilda Display":{"regular":"http://fonts.gstatic.com/s/gildadisplay/v6/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf"},"Anonymous Pro":{"700":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf","regular":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf","italic":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf","700italic":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf"},"Graduate":{"regular":"http://fonts.gstatic.com/s/graduate/v6/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf"},"Mada":{"200":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf","300":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf","500":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf","600":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf","700":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf","900":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf","regular":"http://fonts.gstatic.com/s/mada/v7/7Auwp_0qnzeSTTXMLCrX0kU.ttf"},"Coustard":{"900":"http://fonts.gstatic.com/s/coustard/v9/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf","regular":"http://fonts.gstatic.com/s/coustard/v9/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf"},"Cambo":{"regular":"http://fonts.gstatic.com/s/cambo/v7/IFSqHeNEk8FJk416ok7xkPm8.ttf"},"Gabriela":{"regular":"http://fonts.gstatic.com/s/gabriela/v7/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf"},"Maitree":{"200":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf","300":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf","500":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf","600":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf","700":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf","regular":"http://fonts.gstatic.com/s/maitree/v3/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf"},"Arima Madurai":{"100":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf","200":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf","300":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf","500":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf","700":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf","800":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf","900":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf","regular":"http://fonts.gstatic.com/s/arimamadurai/v4/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf"},"IBM Plex Mono":{"100":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf","200":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf","300":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf","500":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf","600":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf","700":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf","regular":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf","italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf"},"Encode Sans Expanded":{"100":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf","200":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf","300":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf","500":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf","600":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf","700":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf","800":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf","900":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf","regular":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf"},"Copse":{"regular":"http://fonts.gstatic.com/s/copse/v8/11hPGpDKz1rGb0djHkihUb-A.ttf"},"Oxygen Mono":{"regular":"http://fonts.gstatic.com/s/oxygenmono/v6/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf"},"Merienda One":{"regular":"http://fonts.gstatic.com/s/meriendaone/v9/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf"},"Rosario":{"700":"http://fonts.gstatic.com/s/rosario/v13/xfu00WDhWW_fOEoY0OjY6AbouLfbK64.ttf","regular":"http://fonts.gstatic.com/s/rosario/v13/xfux0WDhWW_fOEoY6FT3zA7DpL4.ttf","italic":"http://fonts.gstatic.com/s/rosario/v13/xfuz0WDhWW_fOEoY2Fb9yCzGtL7CMg.ttf","700italic":"http://fonts.gstatic.com/s/rosario/v13/xfu20WDhWW_fOEoY2FbFdAPivJXeO67ISw.ttf"},"Caudex":{"700":"http://fonts.gstatic.com/s/caudex/v8/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf","regular":"http://fonts.gstatic.com/s/caudex/v8/esDQ311QOP6BJUrIyviAnb4eEw.ttf","italic":"http://fonts.gstatic.com/s/caudex/v8/esDS311QOP6BJUr4yPKEv7sOE4in.ttf","700italic":"http://fonts.gstatic.com/s/caudex/v8/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf"},"Titan One":{"regular":"http://fonts.gstatic.com/s/titanone/v6/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf"},"Delius":{"regular":"http://fonts.gstatic.com/s/delius/v8/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf"},"Londrina Solid":{"100":"http://fonts.gstatic.com/s/londrinasolid/v8/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf","300":"http://fonts.gstatic.com/s/londrinasolid/v8/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf","900":"http://fonts.gstatic.com/s/londrinasolid/v8/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf","regular":"http://fonts.gstatic.com/s/londrinasolid/v8/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf"},"Raleway Dots":{"regular":"http://fonts.gstatic.com/s/ralewaydots/v6/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf"},"Aladin":{"regular":"http://fonts.gstatic.com/s/aladin/v7/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf"},"Metrophobic":{"regular":"http://fonts.gstatic.com/s/metrophobic/v11/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf"},"Cutive Mono":{"regular":"http://fonts.gstatic.com/s/cutivemono/v7/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf"},"Sniglet":{"800":"http://fonts.gstatic.com/s/sniglet/v10/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf","regular":"http://fonts.gstatic.com/s/sniglet/v10/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf"},"Mukta Malar":{"200":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf","300":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf","500":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf","600":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf","700":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf","800":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf","regular":"http://fonts.gstatic.com/s/muktamalar/v5/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf"},"Ceviche One":{"regular":"http://fonts.gstatic.com/s/cevicheone/v9/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf"},"Sue Ellen Francisco":{"regular":"http://fonts.gstatic.com/s/sueellenfrancisco/v9/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf"},"Homenaje":{"regular":"http://fonts.gstatic.com/s/homenaje/v8/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf"},"Kosugi Maru":{"regular":"http://fonts.gstatic.com/s/kosugimaru/v5/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf"},"Bubblegum Sans":{"regular":"http://fonts.gstatic.com/s/bubblegumsans/v7/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf"},"Pattaya":{"regular":"http://fonts.gstatic.com/s/pattaya/v4/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf"},"Allan":{"700":"http://fonts.gstatic.com/s/allan/v11/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf","regular":"http://fonts.gstatic.com/s/allan/v11/ea8XadU7WuTxEtb2P9SF8nZE.ttf"},"Freckle Face":{"regular":"http://fonts.gstatic.com/s/freckleface/v7/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf"},"Goudy Bookletter 1911":{"regular":"http://fonts.gstatic.com/s/goudybookletter1911/v8/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf"},"Noto Serif SC":{"200":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf","300":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf","500":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf","600":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf","700":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf","900":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf","regular":"http://fonts.gstatic.com/s/notoserifsc/v5/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf"},"Capriola":{"regular":"http://fonts.gstatic.com/s/capriola/v6/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf"},"Suranna":{"regular":"http://fonts.gstatic.com/s/suranna/v6/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf"},"Kelly Slab":{"regular":"http://fonts.gstatic.com/s/kellyslab/v9/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf"},"Mr De Haviland":{"regular":"http://fonts.gstatic.com/s/mrdehaviland/v7/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf"},"Doppio One":{"regular":"http://fonts.gstatic.com/s/doppioone/v6/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf"},"Secular One":{"regular":"http://fonts.gstatic.com/s/secularone/v3/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf"},"Baloo Bhaijaan":{"regular":"http://fonts.gstatic.com/s/baloobhaijaan/v5/RWmRoKCU5fcqq8fOWNzFLqSjx4ECJmVjC0-V.ttf"},"Suez One":{"regular":"http://fonts.gstatic.com/s/suezone/v3/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf"},"Ramabhadra":{"regular":"http://fonts.gstatic.com/s/ramabhadra/v8/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf"},"David Libre":{"500":"http://fonts.gstatic.com/s/davidlibre/v3/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf","700":"http://fonts.gstatic.com/s/davidlibre/v3/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf","regular":"http://fonts.gstatic.com/s/davidlibre/v3/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf"},"Do Hyeon":{"regular":"http://fonts.gstatic.com/s/dohyeon/v10/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf"},"Battambang":{"700":"http://fonts.gstatic.com/s/battambang/v12/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf","regular":"http://fonts.gstatic.com/s/battambang/v12/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf"},"Tauri":{"regular":"http://fonts.gstatic.com/s/tauri/v7/TwMA-IISS0AM3IpVWHU_TBqO.ttf"},"Mali":{"200":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf","300":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf","500":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf","600":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf","700":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf","200italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf","300italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf","regular":"http://fonts.gstatic.com/s/mali/v2/N0ba2SRONuN4eCrODlxxOd8.ttf","italic":"http://fonts.gstatic.com/s/mali/v2/N0bU2SRONuN4SCjECn50Kd_PmA.ttf","500italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf","600italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf","700italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf"},"Kristi":{"regular":"http://fonts.gstatic.com/s/kristi/v10/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf"},"Faster One":{"regular":"http://fonts.gstatic.com/s/fasterone/v10/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf"},"Noto Serif KR":{"200":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf","300":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf","500":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf","600":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf","700":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf","900":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf","regular":"http://fonts.gstatic.com/s/notoserifkr/v5/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf"},"Gurajada":{"regular":"http://fonts.gstatic.com/s/gurajada/v6/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf"},"Bentham":{"regular":"http://fonts.gstatic.com/s/bentham/v9/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf"},"Trocchi":{"regular":"http://fonts.gstatic.com/s/trocchi/v7/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf"},"Anaheim":{"regular":"http://fonts.gstatic.com/s/anaheim/v6/8vII7w042Wp87g4G0UTUEE5eK_w.ttf"},"Duru Sans":{"regular":"http://fonts.gstatic.com/s/durusans/v12/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf"},"Emilys Candy":{"regular":"http://fonts.gstatic.com/s/emilyscandy/v6/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf"},"Swanky and Moo Moo":{"regular":"http://fonts.gstatic.com/s/swankyandmoomoo/v8/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf"},"Palanquin Dark":{"500":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf","600":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf","700":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf","regular":"http://fonts.gstatic.com/s/palanquindark/v5/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf"},"Black Han Sans":{"regular":"http://fonts.gstatic.com/s/blackhansans/v7/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf"},"Balthazar":{"regular":"http://fonts.gstatic.com/s/balthazar/v8/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf"},"Wendy One":{"regular":"http://fonts.gstatic.com/s/wendyone/v7/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf"},"Amiko":{"600":"http://fonts.gstatic.com/s/amiko/v3/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf","700":"http://fonts.gstatic.com/s/amiko/v3/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf","regular":"http://fonts.gstatic.com/s/amiko/v3/WwkQxPq1DFK04tqlc17MMZgJ.ttf"},"Cutive":{"regular":"http://fonts.gstatic.com/s/cutive/v10/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf"},"Niramit":{"200":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf","300":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf","500":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf","600":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf","700":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf","200italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf","300italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf","regular":"http://fonts.gstatic.com/s/niramit/v3/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf","italic":"http://fonts.gstatic.com/s/niramit/v3/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf","500italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf","600italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf","700italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf"},"Rye":{"regular":"http://fonts.gstatic.com/s/rye/v6/r05XGLJT86YDFpTsXOqx4w.ttf"},"Cambay":{"700":"http://fonts.gstatic.com/s/cambay/v5/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf","regular":"http://fonts.gstatic.com/s/cambay/v5/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf","italic":"http://fonts.gstatic.com/s/cambay/v5/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf","700italic":"http://fonts.gstatic.com/s/cambay/v5/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf"},"Miriam Libre":{"700":"http://fonts.gstatic.com/s/miriamlibre/v5/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf","regular":"http://fonts.gstatic.com/s/miriamlibre/v5/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf"},"Pompiere":{"regular":"http://fonts.gstatic.com/s/pompiere/v8/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf"},"IM Fell Double Pica":{"regular":"http://fonts.gstatic.com/s/imfelldoublepica/v8/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf","italic":"http://fonts.gstatic.com/s/imfelldoublepica/v8/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf"},"Poly":{"regular":"http://fonts.gstatic.com/s/poly/v9/MQpb-W6wKNitRLCAq2Lpris.ttf","italic":"http://fonts.gstatic.com/s/poly/v9/MQpV-W6wKNitdLKKr0DsviuGWA.ttf"},"Six Caps":{"regular":"http://fonts.gstatic.com/s/sixcaps/v9/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf"},"Patrick Hand SC":{"regular":"http://fonts.gstatic.com/s/patrickhandsc/v6/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf"},"Averia Serif Libre":{"300":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf","700":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf","300italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf","regular":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf","italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf","700italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf"},"Happy Monkey":{"regular":"http://fonts.gstatic.com/s/happymonkey/v7/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf"},"Andada":{"regular":"http://fonts.gstatic.com/s/andada/v10/uK_y4riWaego3w9RCh0TMv6EXw.ttf"},"Athiti":{"200":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf","300":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf","500":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf","600":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf","700":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf","regular":"http://fonts.gstatic.com/s/athiti/v3/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf"},"Give You Glory":{"regular":"http://fonts.gstatic.com/s/giveyouglory/v8/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf"},"Alike":{"regular":"http://fonts.gstatic.com/s/alike/v11/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf"},"Bai Jamjuree":{"200":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf","300":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf","500":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf","600":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf","700":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf","200italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf","300italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf","regular":"http://fonts.gstatic.com/s/baijamjuree/v2/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf","italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf","500italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf","600italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf","700italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf"},"Mukta Vaani":{"200":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf","300":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf","500":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf","600":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf","700":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf","800":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf","regular":"http://fonts.gstatic.com/s/muktavaani/v6/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf"},"Overpass Mono":{"300":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf","600":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf","700":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf","regular":"http://fonts.gstatic.com/s/overpassmono/v4/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf"},"Federo":{"regular":"http://fonts.gstatic.com/s/federo/v10/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf"},"Carrois Gothic SC":{"regular":"http://fonts.gstatic.com/s/carroisgothicsc/v8/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf"},"Faustina":{"500":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVdMPulCjHMmTGFt.ttf","600":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVdgOelCjHMmTGFt.ttf","700":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVcEOOlCjHMmTGFt.ttf","regular":"http://fonts.gstatic.com/s/faustina/v3/XLYlIZPxYpJfTbZAFW-4F81Kp28v.ttf","italic":"http://fonts.gstatic.com/s/faustina/v3/XLYjIZPxYpJfTbZAFV-6Hcloon8vVXg.ttf","500italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JT1BhncESXFtUsM.ttf","600italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JRFGhncESXFtUsM.ttf","700italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JXVHhncESXFtUsM.ttf"},"Cedarville Cursive":{"regular":"http://fonts.gstatic.com/s/cedarvillecursive/v10/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf"},"Convergence":{"regular":"http://fonts.gstatic.com/s/convergence/v7/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf"},"Corben":{"700":"http://fonts.gstatic.com/s/corben/v12/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf","regular":"http://fonts.gstatic.com/s/corben/v12/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf"},"Skranji":{"700":"http://fonts.gstatic.com/s/skranji/v6/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf","regular":"http://fonts.gstatic.com/s/skranji/v6/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf"},"Chelsea Market":{"regular":"http://fonts.gstatic.com/s/chelseamarket/v6/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf"},"Seaweed Script":{"regular":"http://fonts.gstatic.com/s/seaweedscript/v6/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf"},"Oregano":{"regular":"http://fonts.gstatic.com/s/oregano/v6/If2IXTPxciS3H4S2kZffPznO3yM.ttf","italic":"http://fonts.gstatic.com/s/oregano/v6/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf"},"Qwigley":{"regular":"http://fonts.gstatic.com/s/qwigley/v8/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf"},"Chonburi":{"regular":"http://fonts.gstatic.com/s/chonburi/v3/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf"},"Inder":{"regular":"http://fonts.gstatic.com/s/inder/v7/w8gUH2YoQe8_4vq6pw-P3U4O.ttf"},"Fanwood Text":{"regular":"http://fonts.gstatic.com/s/fanwoodtext/v8/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf","italic":"http://fonts.gstatic.com/s/fanwoodtext/v8/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf"},"Rationale":{"regular":"http://fonts.gstatic.com/s/rationale/v10/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf"},"Artifika":{"regular":"http://fonts.gstatic.com/s/artifika/v9/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf"},"Sriracha":{"regular":"http://fonts.gstatic.com/s/sriracha/v3/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf"},"Vesper Libre":{"500":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf","700":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf","900":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf","regular":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf"},"Lily Script One":{"regular":"http://fonts.gstatic.com/s/lilyscriptone/v6/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf"},"Montez":{"regular":"http://fonts.gstatic.com/s/montez/v9/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf"},"Andika":{"regular":"http://fonts.gstatic.com/s/andika/v10/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf"},"IM Fell DW Pica":{"regular":"http://fonts.gstatic.com/s/imfelldwpica/v8/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf","italic":"http://fonts.gstatic.com/s/imfelldwpica/v8/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf"},"Mate":{"regular":"http://fonts.gstatic.com/s/mate/v7/m8JdjftRd7WZ2z28WoXSaLU.ttf","italic":"http://fonts.gstatic.com/s/mate/v7/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf"},"Proza Libre":{"500":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf","600":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf","700":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf","800":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf","regular":"http://fonts.gstatic.com/s/prozalibre/v3/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf","italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf","500italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf","600italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf","700italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf","800italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf"},"Sumana":{"700":"http://fonts.gstatic.com/s/sumana/v3/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf","regular":"http://fonts.gstatic.com/s/sumana/v3/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf"},"Amethysta":{"regular":"http://fonts.gstatic.com/s/amethysta/v7/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf"},"Rouge Script":{"regular":"http://fonts.gstatic.com/s/rougescript/v7/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf"},"Cormorant Infant":{"300":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf","500":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf","600":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf","700":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf","300italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf","regular":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf","italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf","500italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf","600italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf","700italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf"},"IM Fell English":{"regular":"http://fonts.gstatic.com/s/imfellenglish/v8/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf","italic":"http://fonts.gstatic.com/s/imfellenglish/v8/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf"},"Baloo Bhai":{"regular":"http://fonts.gstatic.com/s/baloobhai/v4/ZgNWjP5GM7bCUdmXgWyVjGXEM4COoE4.ttf"},"Encode Sans Semi Expanded":{"100":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf","300":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf","500":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf","600":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf","700":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf","800":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf","900":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf"},"Limelight":{"regular":"http://fonts.gstatic.com/s/limelight/v9/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf"},"IM Fell English SC":{"regular":"http://fonts.gstatic.com/s/imfellenglishsc/v8/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf"},"Spicy Rice":{"regular":"http://fonts.gstatic.com/s/spicyrice/v7/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf"},"Crafty Girls":{"regular":"http://fonts.gstatic.com/s/craftygirls/v8/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf"},"Expletus Sans":{"500":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6kFUHPIFaU.ttf","600":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6kFUHPIFaU.ttf","700":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6kFUHPIFaU.ttf","regular":"http://fonts.gstatic.com/s/expletussans/v12/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf","italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpnK5v5_bqufTYdnhFzDj2ddfsYv4MrXHrRDA.ttf","500italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVFHNBaVImA.ttf","600italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVFHNBaVImA.ttf","700italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVFHNBaVImA.ttf"},"Podkova":{"500":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYGrQAoqKAyLzfWo.ttf","600":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYEbXAoqKAyLzfWo.ttf","700":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYCLWAoqKAyLzfWo.ttf","800":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYD7VAoqKAyLzfWo.ttf","regular":"http://fonts.gstatic.com/s/podkova/v12/K2FxfZ1EmftJSV9VWJ75JoKhHys.ttf"},"Short Stack":{"regular":"http://fonts.gstatic.com/s/shortstack/v8/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf"},"Sofia":{"regular":"http://fonts.gstatic.com/s/sofia/v7/8QIHdirahM3j_vu-sowsrqjk.ttf"},"Gravitas One":{"regular":"http://fonts.gstatic.com/s/gravitasone/v8/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf"},"La Belle Aurore":{"regular":"http://fonts.gstatic.com/s/labelleaurore/v9/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf"},"Baumans":{"regular":"http://fonts.gstatic.com/s/baumans/v8/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf"},"Mirza":{"500":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtIpAeO4mafBomDi.ttf","600":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtIFBuO4mafBomDi.ttf","700":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtJhB-O4mafBomDi.ttf","regular":"http://fonts.gstatic.com/s/mirza/v6/co3ImWlikiN5EurdKMewsrvI.ttf"},"Mallanna":{"regular":"http://fonts.gstatic.com/s/mallanna/v6/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf"},"Poller One":{"regular":"http://fonts.gstatic.com/s/pollerone/v8/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf"},"Quando":{"regular":"http://fonts.gstatic.com/s/quando/v7/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf"},"Denk One":{"regular":"http://fonts.gstatic.com/s/denkone/v6/dg4m_pzhrqcFb2IzROtHpbglShon.ttf"},"IBM Plex Sans Condensed":{"100":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf","200":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf","300":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf","500":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf","600":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf","700":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf"},"Lemon":{"regular":"http://fonts.gstatic.com/s/lemon/v7/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf"},"Fondamento":{"regular":"http://fonts.gstatic.com/s/fondamento/v9/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf","italic":"http://fonts.gstatic.com/s/fondamento/v9/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf"},"Rammetto One":{"regular":"http://fonts.gstatic.com/s/rammettoone/v7/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf"},"Wallpoet":{"regular":"http://fonts.gstatic.com/s/wallpoet/v10/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf"},"Vast Shadow":{"regular":"http://fonts.gstatic.com/s/vastshadow/v8/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf"},"Koulen":{"regular":"http://fonts.gstatic.com/s/koulen/v12/AMOQz46as3KIBPeWgnA9kuYMUg.ttf"},"Walter Turncoat":{"regular":"http://fonts.gstatic.com/s/walterturncoat/v9/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf"},"Mouse Memoirs":{"regular":"http://fonts.gstatic.com/s/mousememoirs/v6/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf"},"Oleo Script Swash Caps":{"700":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v6/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf","regular":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v6/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf"},"Sansita":{"700":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf","800":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf","900":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf","regular":"http://fonts.gstatic.com/s/sansita/v3/QldONTRRphEb_-V7HBm7TXFf3qw.ttf","italic":"http://fonts.gstatic.com/s/sansita/v3/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf","700italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf","800italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf","900italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf"},"Galada":{"regular":"http://fonts.gstatic.com/s/galada/v4/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf"},"Clicker Script":{"regular":"http://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf"},"Rozha One":{"regular":"http://fonts.gstatic.com/s/rozhaone/v6/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf"},"Bilbo Swash Caps":{"regular":"http://fonts.gstatic.com/s/bilboswashcaps/v11/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf"},"Kadwa":{"700":"http://fonts.gstatic.com/s/kadwa/v3/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/kadwa/v3/rnCm-x5V0g7iphTHRcc2s2XH.ttf"},"UnifrakturMaguntia":{"regular":"http://fonts.gstatic.com/s/unifrakturmaguntia/v9/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf"},"Meddon":{"regular":"http://fonts.gstatic.com/s/meddon/v11/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf"},"Cormorant SC":{"300":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf","500":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf","600":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf","700":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf","regular":"http://fonts.gstatic.com/s/cormorantsc/v7/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf"},"Rubik Mono One":{"regular":"http://fonts.gstatic.com/s/rubikmonoone/v7/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf"},"Brawler":{"regular":"http://fonts.gstatic.com/s/brawler/v9/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf"},"Wire One":{"regular":"http://fonts.gstatic.com/s/wireone/v9/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf"},"Strait":{"regular":"http://fonts.gstatic.com/s/strait/v6/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf"},"Kurale":{"regular":"http://fonts.gstatic.com/s/kurale/v4/4iCs6KV9e9dXjho6eAT3v02QFg.ttf"},"Prociono":{"regular":"http://fonts.gstatic.com/s/prociono/v8/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf"},"Cantora One":{"regular":"http://fonts.gstatic.com/s/cantoraone/v8/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf"},"Megrim":{"regular":"http://fonts.gstatic.com/s/megrim/v9/46kulbz5WjvLqJZlbWXgd0RY1g.ttf"},"Mako":{"regular":"http://fonts.gstatic.com/s/mako/v10/H4coBX6Mmc_Z0ST09g478Lo.ttf"},"Vibur":{"regular":"http://fonts.gstatic.com/s/vibur/v9/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf"},"Harmattan":{"regular":"http://fonts.gstatic.com/s/harmattan/v5/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf"},"Averia Libre":{"300":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf","700":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf","300italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf","regular":"http://fonts.gstatic.com/s/averialibre/v7/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf","italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf","700italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf"},"Waiting for the Sunrise":{"regular":"http://fonts.gstatic.com/s/waitingforthesunrise/v9/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf"},"Bungee Shade":{"regular":"http://fonts.gstatic.com/s/bungeeshade/v4/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf"},"Imprima":{"regular":"http://fonts.gstatic.com/s/imprima/v7/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf"},"Cherry Swash":{"700":"http://fonts.gstatic.com/s/cherryswash/v7/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf","regular":"http://fonts.gstatic.com/s/cherryswash/v7/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf"},"Loved by the King":{"regular":"http://fonts.gstatic.com/s/lovedbytheking/v8/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf"},"Spectral SC":{"200":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf","300":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf","500":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf","600":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf","700":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf","800":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf","200italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf","300italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf","regular":"http://fonts.gstatic.com/s/spectralsc/v4/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf","italic":"http://fonts.gstatic.com/s/spectralsc/v4/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf","500italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf","600italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf","700italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf","800italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf"},"McLaren":{"regular":"http://fonts.gstatic.com/s/mclaren/v6/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf"},"Bowlby One":{"regular":"http://fonts.gstatic.com/s/bowlbyone/v10/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf"},"Zeyada":{"regular":"http://fonts.gstatic.com/s/zeyada/v8/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf"},"Scope One":{"regular":"http://fonts.gstatic.com/s/scopeone/v5/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf"},"The Girl Next Door":{"regular":"http://fonts.gstatic.com/s/thegirlnextdoor/v9/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf"},"Unkempt":{"700":"http://fonts.gstatic.com/s/unkempt/v10/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf","regular":"http://fonts.gstatic.com/s/unkempt/v10/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf"},"Medula One":{"regular":"http://fonts.gstatic.com/s/medulaone/v8/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf"},"Stardos Stencil":{"700":"http://fonts.gstatic.com/s/stardosstencil/v8/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf","regular":"http://fonts.gstatic.com/s/stardosstencil/v8/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf"},"Gafata":{"regular":"http://fonts.gstatic.com/s/gafata/v7/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf"},"Belgrano":{"regular":"http://fonts.gstatic.com/s/belgrano/v9/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf"},"Italiana":{"regular":"http://fonts.gstatic.com/s/italiana/v7/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf"},"Iceland":{"regular":"http://fonts.gstatic.com/s/iceland/v7/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf"},"Bellefair":{"regular":"http://fonts.gstatic.com/s/bellefair/v4/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf"},"Finger Paint":{"regular":"http://fonts.gstatic.com/s/fingerpaint/v8/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf"},"Spirax":{"regular":"http://fonts.gstatic.com/s/spirax/v7/buE3poKgYNLy0F3cXktt-Csn-Q.ttf"},"Tienne":{"700":"http://fonts.gstatic.com/s/tienne/v11/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf","900":"http://fonts.gstatic.com/s/tienne/v11/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf","regular":"http://fonts.gstatic.com/s/tienne/v11/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf"},"Just Me Again Down Here":{"regular":"http://fonts.gstatic.com/s/justmeagaindownhere/v10/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf"},"Krona One":{"regular":"http://fonts.gstatic.com/s/kronaone/v7/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf"},"Libre Barcode 39":{"regular":"http://fonts.gstatic.com/s/librebarcode39/v8/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf"},"Princess Sofia":{"regular":"http://fonts.gstatic.com/s/princesssofia/v7/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf"},"Orienta":{"regular":"http://fonts.gstatic.com/s/orienta/v6/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf"},"Delius Swash Caps":{"regular":"http://fonts.gstatic.com/s/deliusswashcaps/v10/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf"},"Vampiro One":{"regular":"http://fonts.gstatic.com/s/vampiroone/v9/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf"},"Aref Ruqaa":{"700":"http://fonts.gstatic.com/s/arefruqaa/v7/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf","regular":"http://fonts.gstatic.com/s/arefruqaa/v7/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf"},"Padauk":{"700":"http://fonts.gstatic.com/s/padauk/v5/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf","regular":"http://fonts.gstatic.com/s/padauk/v5/RrQRboJg-id7OnbBa0_g3LlYbg.ttf"},"Amita":{"700":"http://fonts.gstatic.com/s/amita/v4/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf","regular":"http://fonts.gstatic.com/s/amita/v4/HhyaU5si9Om7PQlvAfSKEZZL.ttf"},"Mrs Saint Delafield":{"regular":"http://fonts.gstatic.com/s/mrssaintdelafield/v6/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf"},"Noto Serif TC":{"200":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf","300":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf","500":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf","600":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf","700":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf","900":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf","regular":"http://fonts.gstatic.com/s/notoseriftc/v5/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf"},"Atma":{"300":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf","500":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf","600":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf","700":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf","regular":"http://fonts.gstatic.com/s/atma/v4/uK_84rqWc-Eom25bDj8WIv4.ttf"},"Alike Angular":{"regular":"http://fonts.gstatic.com/s/alikeangular/v9/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf"},"Salsa":{"regular":"http://fonts.gstatic.com/s/salsa/v8/gNMKW3FiRpKj-imY8ncKEZez.ttf"},"Chakra Petch":{"300":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf","500":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf","600":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf","700":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf","300italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf","regular":"http://fonts.gstatic.com/s/chakrapetch/v2/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf","italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf","500italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf","600italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf","700italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf"},"Holtwood One SC":{"regular":"http://fonts.gstatic.com/s/holtwoodonesc/v9/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf"},"Codystar":{"300":"http://fonts.gstatic.com/s/codystar/v6/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf","regular":"http://fonts.gstatic.com/s/codystar/v6/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf"},"Ledger":{"regular":"http://fonts.gstatic.com/s/ledger/v6/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf"},"Nova Square":{"regular":"http://fonts.gstatic.com/s/novasquare/v11/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf"},"Charm":{"700":"http://fonts.gstatic.com/s/charm/v3/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf","regular":"http://fonts.gstatic.com/s/charm/v3/7cHmv4oii5K0MeYvIe804WIo.ttf"},"Fontdiner Swanky":{"regular":"http://fonts.gstatic.com/s/fontdinerswanky/v9/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf"},"Dawning of a New Day":{"regular":"http://fonts.gstatic.com/s/dawningofanewday/v9/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf"},"Rakkas":{"regular":"http://fonts.gstatic.com/s/rakkas/v6/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf"},"Fjord One":{"regular":"http://fonts.gstatic.com/s/fjordone/v7/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf"},"Averia Sans Libre":{"300":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf","700":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf","300italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf","regular":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf","italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf","700italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf"},"Euphoria Script":{"regular":"http://fonts.gstatic.com/s/euphoriascript/v7/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf"},"Baloo Paaji":{"regular":"http://fonts.gstatic.com/s/baloopaaji/v5/8AttGsyxM5KQQU-Y4MTwVZnToxvQBiot.ttf"},"Montserrat Subrayada":{"700":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf"},"Headland One":{"regular":"http://fonts.gstatic.com/s/headlandone/v6/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf"},"Hanalei Fill":{"regular":"http://fonts.gstatic.com/s/hanaleifill/v7/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf"},"Aleo":{"300":"http://fonts.gstatic.com/s/aleo/v2/c4mg1nF8G8_syKbr9DVDno985KM.ttf","700":"http://fonts.gstatic.com/s/aleo/v2/c4mg1nF8G8_syLbs9DVDno985KM.ttf","300italic":"http://fonts.gstatic.com/s/aleo/v2/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf","regular":"http://fonts.gstatic.com/s/aleo/v2/c4mv1nF8G8_s8ArD0D1ogoY.ttf","italic":"http://fonts.gstatic.com/s/aleo/v2/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf","700italic":"http://fonts.gstatic.com/s/aleo/v2/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"},"Katibeh":{"regular":"http://fonts.gstatic.com/s/katibeh/v6/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf"},"Life Savers":{"700":"http://fonts.gstatic.com/s/lifesavers/v8/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf","regular":"http://fonts.gstatic.com/s/lifesavers/v8/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf"},"Baloo Chettan":{"regular":"http://fonts.gstatic.com/s/baloochettan/v4/0QImMXRN8o2gTC2YTr4665DA07z8_ApHqqk.ttf"},"Sarpanch":{"500":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf","600":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf","700":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf","800":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf","900":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf","regular":"http://fonts.gstatic.com/s/sarpanch/v4/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf"},"Mandali":{"regular":"http://fonts.gstatic.com/s/mandali/v7/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf"},"Frijole":{"regular":"http://fonts.gstatic.com/s/frijole/v7/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf"},"Kotta One":{"regular":"http://fonts.gstatic.com/s/kottaone/v6/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf"},"Over the Rainbow":{"regular":"http://fonts.gstatic.com/s/overtherainbow/v9/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf"},"Almendra":{"700":"http://fonts.gstatic.com/s/almendra/v11/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf","regular":"http://fonts.gstatic.com/s/almendra/v11/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf","italic":"http://fonts.gstatic.com/s/almendra/v11/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf","700italic":"http://fonts.gstatic.com/s/almendra/v11/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf"},"Arya":{"700":"http://fonts.gstatic.com/s/arya/v4/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf","regular":"http://fonts.gstatic.com/s/arya/v4/ga6CawNG-HJd9Ub1-beqdFE.ttf"},"Nova Mono":{"regular":"http://fonts.gstatic.com/s/novamono/v9/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf"},"Port Lligat Slab":{"regular":"http://fonts.gstatic.com/s/portlligatslab/v7/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf"},"Habibi":{"regular":"http://fonts.gstatic.com/s/habibi/v7/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf"},"Kranky":{"regular":"http://fonts.gstatic.com/s/kranky/v9/hESw6XVgJzlPsFnMpheEZo_H_w.ttf"},"Metamorphous":{"regular":"http://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf"},"Voces":{"regular":"http://fonts.gstatic.com/s/voces/v8/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf"},"Uncial Antiqua":{"regular":"http://fonts.gstatic.com/s/uncialantiqua/v6/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf"},"Quintessential":{"regular":"http://fonts.gstatic.com/s/quintessential/v6/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf"},"Baloo Tamma":{"regular":"http://fonts.gstatic.com/s/balootamma/v5/JTUTjIk68Cy27gWhOWIghE5B5Arr-s50.ttf"},"Jua":{"regular":"http://fonts.gstatic.com/s/jua/v7/co3KmW9ljjAjc-DZCsKgsg.ttf"},"Engagement":{"regular":"http://fonts.gstatic.com/s/engagement/v8/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf"},"Kosugi":{"regular":"http://fonts.gstatic.com/s/kosugi/v5/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf"},"Shanti":{"regular":"http://fonts.gstatic.com/s/shanti/v10/t5thIREMM4uSDgzgU0ezpKfwzA.ttf"},"Chicle":{"regular":"http://fonts.gstatic.com/s/chicle/v7/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf"},"Sedgwick Ave":{"regular":"http://fonts.gstatic.com/s/sedgwickave/v4/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf"},"Encode Sans Semi Condensed":{"100":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf","300":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf","500":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf","600":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf","700":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf","800":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf","900":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf"},"Crushed":{"regular":"http://fonts.gstatic.com/s/crushed/v9/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf"},"Numans":{"regular":"http://fonts.gstatic.com/s/numans/v8/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf"},"Share Tech":{"regular":"http://fonts.gstatic.com/s/sharetech/v8/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf"},"Germania One":{"regular":"http://fonts.gstatic.com/s/germaniaone/v6/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf"},"Esteban":{"regular":"http://fonts.gstatic.com/s/esteban/v7/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf"},"Khmer":{"regular":"http://fonts.gstatic.com/s/khmer/v11/MjQImit_vPPwpF-BpN2EeYmD.ttf"},"Taprom":{"regular":"http://fonts.gstatic.com/s/taprom/v10/UcCn3F82JHycULbFQyk3-0kvHg.ttf"},"BioRhyme":{"200":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf","300":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf","700":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf","800":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf","regular":"http://fonts.gstatic.com/s/biorhyme/v3/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf"},"Antic Didone":{"regular":"http://fonts.gstatic.com/s/anticdidone/v7/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf"},"Eater":{"regular":"http://fonts.gstatic.com/s/eater/v7/mtG04_FCK7bOvpu2u3FwsXsR.ttf"},"Nova Round":{"regular":"http://fonts.gstatic.com/s/novaround/v10/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf"},"Gugi":{"regular":"http://fonts.gstatic.com/s/gugi/v7/A2BVn5dXywshVA6A9DEfgqM.ttf"},"Dekko":{"regular":"http://fonts.gstatic.com/s/dekko/v5/46khlb_wWjfSrttFR0vsfl1B.ttf"},"Mukta Mahee":{"200":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf","300":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf","500":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf","600":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf","700":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf","800":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf","regular":"http://fonts.gstatic.com/s/muktamahee/v4/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf"},"Creepster":{"regular":"http://fonts.gstatic.com/s/creepster/v7/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf"},"Cormorant Upright":{"300":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf","500":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf","600":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf","700":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf","regular":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf"},"Pirata One":{"regular":"http://fonts.gstatic.com/s/pirataone/v7/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf"},"Baloo Thambi":{"regular":"http://fonts.gstatic.com/s/baloothambi/v4/va9B4kXJzNhTFoA7CYcS8sHuQR37fF3Wlg.ttf"},"Yatra One":{"regular":"http://fonts.gstatic.com/s/yatraone/v5/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf"},"Cherry Cream Soda":{"regular":"http://fonts.gstatic.com/s/cherrycreamsoda/v9/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf"},"Slackey":{"regular":"http://fonts.gstatic.com/s/slackey/v9/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf"},"Chau Philomene One":{"regular":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf","italic":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf"},"Milonga":{"regular":"http://fonts.gstatic.com/s/milonga/v6/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf"},"Elsie":{"900":"http://fonts.gstatic.com/s/elsie/v8/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf","regular":"http://fonts.gstatic.com/s/elsie/v8/BCanqZABrez54yYu9slAeLgX.ttf"},"Nosifer":{"regular":"http://fonts.gstatic.com/s/nosifer/v7/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf"},"NTR":{"regular":"http://fonts.gstatic.com/s/ntr/v6/RLpzK5Xy0ZjiGGhs5TA4bg.ttf"},"Condiment":{"regular":"http://fonts.gstatic.com/s/condiment/v6/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf"},"Dynalight":{"regular":"http://fonts.gstatic.com/s/dynalight/v7/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf"},"Geo":{"regular":"http://fonts.gstatic.com/s/geo/v10/CSRz4zRZlufVL3BmQjlCbQ.ttf","italic":"http://fonts.gstatic.com/s/geo/v10/CSRx4zRZluflLXpiYDxSbf8r.ttf"},"Timmana":{"regular":"http://fonts.gstatic.com/s/timmana/v3/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf"},"Mogra":{"regular":"http://fonts.gstatic.com/s/mogra/v5/f0X40eSs8c95TBo4DvLmxtnG.ttf"},"Mountains of Christmas":{"700":"http://fonts.gstatic.com/s/mountainsofchristmas/v11/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf","regular":"http://fonts.gstatic.com/s/mountainsofchristmas/v11/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf"},"Ramaraja":{"regular":"http://fonts.gstatic.com/s/ramaraja/v3/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf"},"Buda":{"300":"http://fonts.gstatic.com/s/buda/v9/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf"},"Mate SC":{"regular":"http://fonts.gstatic.com/s/matesc/v7/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf"},"Delius Unicase":{"700":"http://fonts.gstatic.com/s/deliusunicase/v12/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf","regular":"http://fonts.gstatic.com/s/deliusunicase/v12/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf"},"Sarina":{"regular":"http://fonts.gstatic.com/s/sarina/v7/-F6wfjF3ITQwasLhLkDUriBQxw.ttf"},"Nokora":{"700":"http://fonts.gstatic.com/s/nokora/v12/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf","regular":"http://fonts.gstatic.com/s/nokora/v12/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf"},"Flamenco":{"300":"http://fonts.gstatic.com/s/flamenco/v9/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf","regular":"http://fonts.gstatic.com/s/flamenco/v9/neIIzCehqYguo67ssaWGHK06UY30.ttf"},"Kite One":{"regular":"http://fonts.gstatic.com/s/kiteone/v6/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf"},"Sail":{"regular":"http://fonts.gstatic.com/s/sail/v9/DPEjYwiBxwYJFBTDADYAbvw.ttf"},"Krub":{"200":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf","300":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf","500":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf","600":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf","700":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf","200italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf","300italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf","regular":"http://fonts.gstatic.com/s/krub/v2/sZlLdRyC6CRYXkYQDLlTW6E.ttf","italic":"http://fonts.gstatic.com/s/krub/v2/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf","500italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf","600italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf","700italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf"},"Asul":{"700":"http://fonts.gstatic.com/s/asul/v8/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf","regular":"http://fonts.gstatic.com/s/asul/v8/VuJ-dNjKxYr46fMFXK78JIg.ttf"},"Chela One":{"regular":"http://fonts.gstatic.com/s/chelaone/v7/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf"},"Kumar One":{"regular":"http://fonts.gstatic.com/s/kumarone/v3/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf"},"Sancreek":{"regular":"http://fonts.gstatic.com/s/sancreek/v9/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf"},"Cagliostro":{"regular":"http://fonts.gstatic.com/s/cagliostro/v7/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf"},"Coiny":{"regular":"http://fonts.gstatic.com/s/coiny/v4/gyByhwU1K989PXwbElSvO5Tc.ttf"},"Fenix":{"regular":"http://fonts.gstatic.com/s/fenix/v6/XoHo2YL_S7-g5ostKzAFvs8o.ttf"},"Stint Ultra Condensed":{"regular":"http://fonts.gstatic.com/s/stintultracondensed/v7/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf"},"Nova Slim":{"regular":"http://fonts.gstatic.com/s/novaslim/v10/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf"},"Dorsa":{"regular":"http://fonts.gstatic.com/s/dorsa/v9/yYLn0hjd0OGwqo493XCFxAnQ.ttf"},"Paprika":{"regular":"http://fonts.gstatic.com/s/paprika/v6/8QIJdijZitv49rDfuIgOq7jkAOw.ttf"},"Ribeye":{"regular":"http://fonts.gstatic.com/s/ribeye/v7/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf"},"Donegal One":{"regular":"http://fonts.gstatic.com/s/donegalone/v6/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf"},"Peralta":{"regular":"http://fonts.gstatic.com/s/peralta/v6/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf"},"Manuale":{"500":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPALt58Ht9a8GYeA.ttf","600":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPC7q58Ht9a8GYeA.ttf","700":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPErr58Ht9a8GYeA.ttf","regular":"http://fonts.gstatic.com/s/manuale/v3/f0X20eas_8Z-TFZdBPbEw8nG6aY.ttf","italic":"http://fonts.gstatic.com/s/manuale/v3/f0X00eas_8Z-TFZdNPTOx-vD-aYfeA.ttf","500italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2M8Ln8Y0DceA0OQ.ttf","600italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2H8Xn8Y0DceA0OQ.ttf","700italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2e8Tn8Y0DceA0OQ.ttf"},"Ruslan Display":{"regular":"http://fonts.gstatic.com/s/ruslandisplay/v9/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf"},"Gaegu":{"300":"http://fonts.gstatic.com/s/gaegu/v7/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf","700":"http://fonts.gstatic.com/s/gaegu/v7/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf","regular":"http://fonts.gstatic.com/s/gaegu/v7/TuGfUVB6Up9NU6ZLodgzydtk.ttf"},"Amarante":{"regular":"http://fonts.gstatic.com/s/amarante/v6/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf"},"Mystery Quest":{"regular":"http://fonts.gstatic.com/s/mysteryquest/v6/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf"},"K2D":{"100":"http://fonts.gstatic.com/s/k2d/v2/J7aRnpF2V0ErE6UpvrIw74NL.ttf","200":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Erv4QJlJw85ppSGw.ttf","300":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Er24cJlJw85ppSGw.ttf","500":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Erg4YJlJw85ppSGw.ttf","600":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Err4EJlJw85ppSGw.ttf","700":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Ery4AJlJw85ppSGw.ttf","800":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Er14MJlJw85ppSGw.ttf","100italic":"http://fonts.gstatic.com/s/k2d/v2/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf","200italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf","300italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf","regular":"http://fonts.gstatic.com/s/k2d/v2/J7aTnpF2V0ETd68tnLcg7w.ttf","italic":"http://fonts.gstatic.com/s/k2d/v2/J7aRnpF2V0EjdaUpvrIw74NL.ttf","500italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf","600italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf","700italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf","800italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf"},"Averia Gruesa Libre":{"regular":"http://fonts.gstatic.com/s/averiagruesalibre/v7/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf"},"Stint Ultra Expanded":{"regular":"http://fonts.gstatic.com/s/stintultraexpanded/v6/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf"},"Farsan":{"regular":"http://fonts.gstatic.com/s/farsan/v4/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf"},"Simonetta":{"900":"http://fonts.gstatic.com/s/simonetta/v8/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf","regular":"http://fonts.gstatic.com/s/simonetta/v8/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf","italic":"http://fonts.gstatic.com/s/simonetta/v8/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf","900italic":"http://fonts.gstatic.com/s/simonetta/v8/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf"},"Inknut Antiqua":{"300":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf","500":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf","600":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf","700":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf","800":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf","900":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf","regular":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf"},"Rosarivo":{"regular":"http://fonts.gstatic.com/s/rosarivo/v6/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf","italic":"http://fonts.gstatic.com/s/rosarivo/v6/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf"},"Maiden Orange":{"regular":"http://fonts.gstatic.com/s/maidenorange/v9/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf"},"Londrina Outline":{"regular":"http://fonts.gstatic.com/s/londrinaoutline/v9/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf"},"Ranchers":{"regular":"http://fonts.gstatic.com/s/ranchers/v6/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf"},"League Script":{"regular":"http://fonts.gstatic.com/s/leaguescript/v9/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf"},"Bubbler One":{"regular":"http://fonts.gstatic.com/s/bubblerone/v7/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf"},"IM Fell Great Primer":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf","italic":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf"},"Englebert":{"regular":"http://fonts.gstatic.com/s/englebert/v6/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf"},"Fascinate Inline":{"regular":"http://fonts.gstatic.com/s/fascinateinline/v8/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf"},"Meera Inimai":{"regular":"http://fonts.gstatic.com/s/meerainimai/v3/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf"},"Trade Winds":{"regular":"http://fonts.gstatic.com/s/tradewinds/v7/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf"},"Akronim":{"regular":"http://fonts.gstatic.com/s/akronim/v8/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf"},"Junge":{"regular":"http://fonts.gstatic.com/s/junge/v6/gokgH670Gl1lUqAdvhB7SnKm.ttf"},"Croissant One":{"regular":"http://fonts.gstatic.com/s/croissantone/v6/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf"},"Revalia":{"regular":"http://fonts.gstatic.com/s/revalia/v6/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf"},"Fresca":{"regular":"http://fonts.gstatic.com/s/fresca/v7/6ae94K--SKgCzbM2Gr0W13DKPA.ttf"},"Marko One":{"regular":"http://fonts.gstatic.com/s/markoone/v8/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf"},"Plaster":{"regular":"http://fonts.gstatic.com/s/plaster/v10/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf"},"Ruluko":{"regular":"http://fonts.gstatic.com/s/ruluko/v6/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf"},"Stalemate":{"regular":"http://fonts.gstatic.com/s/stalemate/v6/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf"},"Overlock SC":{"regular":"http://fonts.gstatic.com/s/overlocksc/v7/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf"},"Angkor":{"regular":"http://fonts.gstatic.com/s/angkor/v11/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf"},"IM Fell French Canon":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf","italic":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf"},"Text Me One":{"regular":"http://fonts.gstatic.com/s/textmeone/v6/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf"},"Port Lligat Sans":{"regular":"http://fonts.gstatic.com/s/portlligatsans/v7/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf"},"Lovers Quarrel":{"regular":"http://fonts.gstatic.com/s/loversquarrel/v6/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf"},"ZCOOL QingKe HuangYou":{"regular":"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v4/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf"},"Pavanam":{"regular":"http://fonts.gstatic.com/s/pavanam/v3/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf"},"Bilbo":{"regular":"http://fonts.gstatic.com/s/bilbo/v8/o-0EIpgpwWwZ210hpIRz4wxE.ttf"},"Major Mono Display":{"regular":"http://fonts.gstatic.com/s/majormonodisplay/v2/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf"},"Sura":{"700":"http://fonts.gstatic.com/s/sura/v3/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf","regular":"http://fonts.gstatic.com/s/sura/v3/SZc23FL5PbyzFf5UWzXtjUM.ttf"},"Nova Flat":{"regular":"http://fonts.gstatic.com/s/novaflat/v10/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf"},"Stoke":{"300":"http://fonts.gstatic.com/s/stoke/v8/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf","regular":"http://fonts.gstatic.com/s/stoke/v8/z7NadRb7aTMfKONpfihK1YTV.ttf"},"Joti One":{"regular":"http://fonts.gstatic.com/s/jotione/v7/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf"},"Kodchasan":{"200":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf","300":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf","500":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf","600":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf","700":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf","200italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf","300italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf","regular":"http://fonts.gstatic.com/s/kodchasan/v2/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf","italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf","500italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf","600italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf","700italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf"},"Sirin Stencil":{"regular":"http://fonts.gstatic.com/s/sirinstencil/v7/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf"},"Sonsie One":{"regular":"http://fonts.gstatic.com/s/sonsieone/v7/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf"},"Linden Hill":{"regular":"http://fonts.gstatic.com/s/lindenhill/v8/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf","italic":"http://fonts.gstatic.com/s/lindenhill/v8/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf"},"Noto Sans HK":{"100":"http://fonts.gstatic.com/s/notosanshk/v4/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf","300":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf","500":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf","700":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf","900":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf","regular":"http://fonts.gstatic.com/s/notosanshk/v4/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf"},"Elsie Swash Caps":{"900":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf","regular":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf"},"Mina":{"700":"http://fonts.gstatic.com/s/mina/v2/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf","regular":"http://fonts.gstatic.com/s/mina/v2/-nFzOGc18vARrz9j7i3y65o.ttf"},"Julee":{"regular":"http://fonts.gstatic.com/s/julee/v8/TuGfUVB3RpZPQ6ZLodgzydtk.ttf"},"Inika":{"700":"http://fonts.gstatic.com/s/inika/v7/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/inika/v7/rnCm-x5X3QP-phTHRcc2s2XH.ttf"},"Monsieur La Doulaise":{"regular":"http://fonts.gstatic.com/s/monsieurladoulaise/v7/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf"},"Kavoon":{"regular":"http://fonts.gstatic.com/s/kavoon/v7/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf"},"Ranga":{"700":"http://fonts.gstatic.com/s/ranga/v4/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf","regular":"http://fonts.gstatic.com/s/ranga/v4/C8ct4cYisGb28p6CLDwZwmGE.ttf"},"Baloo Tammudu":{"regular":"http://fonts.gstatic.com/s/balootammudu/v5/mFT3Wb8Qza7c_Z5HTsC_5nxW8EpQl9RWxD8.ttf"},"IM Fell DW Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldwpicasc/v8/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf"},"Glass Antiqua":{"regular":"http://fonts.gstatic.com/s/glassantiqua/v6/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf"},"Autour One":{"regular":"http://fonts.gstatic.com/s/autourone/v8/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf"},"Diplomata":{"regular":"http://fonts.gstatic.com/s/diplomata/v10/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf"},"Dangrek":{"regular":"http://fonts.gstatic.com/s/dangrek/v10/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf"},"Petrona":{"regular":"http://fonts.gstatic.com/s/petrona/v7/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf"},"Griffy":{"regular":"http://fonts.gstatic.com/s/griffy/v7/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf"},"B612 Mono":{"700":"http://fonts.gstatic.com/s/b612mono/v3/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf","regular":"http://fonts.gstatic.com/s/b612mono/v3/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf","italic":"http://fonts.gstatic.com/s/b612mono/v3/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf","700italic":"http://fonts.gstatic.com/s/b612mono/v3/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf"},"Dokdo":{"regular":"http://fonts.gstatic.com/s/dokdo/v7/esDf315XNuCBLxLo4NaMlKcH.ttf"},"Redressed":{"regular":"http://fonts.gstatic.com/s/redressed/v9/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf"},"Wellfleet":{"regular":"http://fonts.gstatic.com/s/wellfleet/v6/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf"},"Della Respira":{"regular":"http://fonts.gstatic.com/s/dellarespira/v6/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf"},"Galdeano":{"regular":"http://fonts.gstatic.com/s/galdeano/v8/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf"},"Modak":{"regular":"http://fonts.gstatic.com/s/modak/v4/EJRYQgs1XtIEsnMH8BVZ76KU.ttf"},"Eagle Lake":{"regular":"http://fonts.gstatic.com/s/eaglelake/v6/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf"},"Jim Nightshade":{"regular":"http://fonts.gstatic.com/s/jimnightshade/v6/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf"},"Offside":{"regular":"http://fonts.gstatic.com/s/offside/v6/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf"},"Content":{"700":"http://fonts.gstatic.com/s/content/v11/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf","regular":"http://fonts.gstatic.com/s/content/v11/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf"},"Ravi Prakash":{"regular":"http://fonts.gstatic.com/s/raviprakash/v5/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf"},"Miniver":{"regular":"http://fonts.gstatic.com/s/miniver/v7/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf"},"Song Myung":{"regular":"http://fonts.gstatic.com/s/songmyung/v7/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf"},"Henny Penny":{"regular":"http://fonts.gstatic.com/s/hennypenny/v6/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf"},"UnifrakturCook":{"700":"http://fonts.gstatic.com/s/unifrakturcook/v10/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf"},"Sree Krushnadevaraya":{"regular":"http://fonts.gstatic.com/s/sreekrushnadevaraya/v6/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf"},"Bahiana":{"regular":"http://fonts.gstatic.com/s/bahiana/v3/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf"},"Cormorant Unicase":{"300":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf","500":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf","600":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf","700":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf","regular":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf"},"Macondo Swash Caps":{"regular":"http://fonts.gstatic.com/s/macondoswashcaps/v6/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf"},"Margarine":{"regular":"http://fonts.gstatic.com/s/margarine/v7/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf"},"Barrio":{"regular":"http://fonts.gstatic.com/s/barrio/v3/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf"},"Trykker":{"regular":"http://fonts.gstatic.com/s/trykker/v7/KtktALyWZJXudUPzhNnoOd2j22U.ttf"},"Tillana":{"500":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf","600":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf","700":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf","800":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/tillana/v4/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf"},"Baloo Da":{"regular":"http://fonts.gstatic.com/s/balooda/v4/LhWmMVnXOfIZO795FXkfSvtVM8mZ.ttf"},"Monofett":{"regular":"http://fonts.gstatic.com/s/monofett/v8/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf"},"Lancelot":{"regular":"http://fonts.gstatic.com/s/lancelot/v8/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf"},"Moul":{"regular":"http://fonts.gstatic.com/s/moul/v10/nuF2D__FSo_3E-RYiJCy-00.ttf"},"Ruthie":{"regular":"http://fonts.gstatic.com/s/ruthie/v9/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf"},"Rhodium Libre":{"regular":"http://fonts.gstatic.com/s/rhodiumlibre/v3/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf"},"Chenla":{"regular":"http://fonts.gstatic.com/s/chenla/v11/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf"},"Montaga":{"regular":"http://fonts.gstatic.com/s/montaga/v6/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf"},"Chathura":{"100":"http://fonts.gstatic.com/s/chathura/v4/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf","300":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf","700":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf","800":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf","regular":"http://fonts.gstatic.com/s/chathura/v4/_gP71R7-rzUuVjim418goUC5S-Zy.ttf"},"KoHo":{"200":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf","300":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf","500":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf","600":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf","700":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf","200italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf","300italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf","regular":"http://fonts.gstatic.com/s/koho/v2/K2F-fZ5fmddNBikefJbSOos.ttf","italic":"http://fonts.gstatic.com/s/koho/v2/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf","500italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf","600italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf","700italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf"},"Kantumruy":{"300":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf","700":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf","regular":"http://fonts.gstatic.com/s/kantumruy/v5/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf"},"Bokor":{"regular":"http://fonts.gstatic.com/s/bokor/v11/m8JcjfpeeaqTiR2WdInbcaxE.ttf"},"IM Fell Great Primer SC":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimersc/v8/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf"},"MedievalSharp":{"regular":"http://fonts.gstatic.com/s/medievalsharp/v11/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf"},"Rum Raisin":{"regular":"http://fonts.gstatic.com/s/rumraisin/v6/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf"},"Dr Sugiyama":{"regular":"http://fonts.gstatic.com/s/drsugiyama/v8/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf"},"Underdog":{"regular":"http://fonts.gstatic.com/s/underdog/v7/CHygV-jCElj7diMroVSiU14GN2Il.ttf"},"Iceberg":{"regular":"http://fonts.gstatic.com/s/iceberg/v6/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf"},"Meie Script":{"regular":"http://fonts.gstatic.com/s/meiescript/v6/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf"},"Ruge Boogie":{"regular":"http://fonts.gstatic.com/s/rugeboogie/v9/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf"},"Siemreap":{"regular":"http://fonts.gstatic.com/s/siemreap/v11/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf"},"Odor Mean Chey":{"regular":"http://fonts.gstatic.com/s/odormeanchey/v10/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf"},"Sahitya":{"700":"http://fonts.gstatic.com/s/sahitya/v3/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf","regular":"http://fonts.gstatic.com/s/sahitya/v3/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf"},"Chango":{"regular":"http://fonts.gstatic.com/s/chango/v7/2V0cKI0OB5U7WaJyz324TFUaAw.ttf"},"Jacques Francois Shadow":{"regular":"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v7/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf"},"Asar":{"regular":"http://fonts.gstatic.com/s/asar/v6/sZlLdRyI6TBIXkYQDLlTW6E.ttf"},"New Rocker":{"regular":"http://fonts.gstatic.com/s/newrocker/v7/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf"},"Smythe":{"regular":"http://fonts.gstatic.com/s/smythe/v9/MwQ3bhT01--coT1BOLh_uGInjA.ttf"},"Purple Purse":{"regular":"http://fonts.gstatic.com/s/purplepurse/v7/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf"},"Mrs Sheppards":{"regular":"http://fonts.gstatic.com/s/mrssheppards/v7/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf"},"Poor Story":{"regular":"http://fonts.gstatic.com/s/poorstory/v7/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf"},"Miltonian Tattoo":{"regular":"http://fonts.gstatic.com/s/miltoniantattoo/v14/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf"},"Snippet":{"regular":"http://fonts.gstatic.com/s/snippet/v8/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf"},"Oldenburg":{"regular":"http://fonts.gstatic.com/s/oldenburg/v6/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf"},"Charmonman":{"700":"http://fonts.gstatic.com/s/charmonman/v2/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf","regular":"http://fonts.gstatic.com/s/charmonman/v2/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf"},"Smokum":{"regular":"http://fonts.gstatic.com/s/smokum/v9/TK3iWkUbAhopmrdGHjUHte5fKg.ttf"},"Metal Mania":{"regular":"http://fonts.gstatic.com/s/metalmania/v8/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf"},"Zilla Slab Highlight":{"700":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf","regular":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf"},"Modern Antiqua":{"regular":"http://fonts.gstatic.com/s/modernantiqua/v8/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf"},"Arbutus":{"regular":"http://fonts.gstatic.com/s/arbutus/v8/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf"},"Asset":{"regular":"http://fonts.gstatic.com/s/asset/v9/SLXGc1na-mM4cWImRJqExst1.ttf"},"Bigshot One":{"regular":"http://fonts.gstatic.com/s/bigshotone/v9/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf"},"Stylish":{"regular":"http://fonts.gstatic.com/s/stylish/v7/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf"},"Original Surfer":{"regular":"http://fonts.gstatic.com/s/originalsurfer/v7/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf"},"Caesar Dressing":{"regular":"http://fonts.gstatic.com/s/caesardressing/v7/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf"},"Snowburst One":{"regular":"http://fonts.gstatic.com/s/snowburstone/v6/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf"},"Ewert":{"regular":"http://fonts.gstatic.com/s/ewert/v6/va9I4kzO2tFODYBvS-J3kbDP.ttf"},"Nova Script":{"regular":"http://fonts.gstatic.com/s/novascript/v11/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf"},"Suwannaphum":{"regular":"http://fonts.gstatic.com/s/suwannaphum/v12/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf"},"Diplomata SC":{"regular":"http://fonts.gstatic.com/s/diplomatasc/v7/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf"},"Irish Grover":{"regular":"http://fonts.gstatic.com/s/irishgrover/v9/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf"},"Thasadith":{"700":"http://fonts.gstatic.com/s/thasadith/v2/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf","regular":"http://fonts.gstatic.com/s/thasadith/v2/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf","italic":"http://fonts.gstatic.com/s/thasadith/v2/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf","700italic":"http://fonts.gstatic.com/s/thasadith/v2/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf"},"Felipa":{"regular":"http://fonts.gstatic.com/s/felipa/v6/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf"},"Galindo":{"regular":"http://fonts.gstatic.com/s/galindo/v6/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf"},"IM Fell French Canon SC":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v8/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf"},"Molle":{"italic":"http://fonts.gstatic.com/s/molle/v7/E21n_dL5hOXFhWEsXzgmVydREus.ttf"},"Ribeye Marrow":{"regular":"http://fonts.gstatic.com/s/ribeyemarrow/v8/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf"},"Atomic Age":{"regular":"http://fonts.gstatic.com/s/atomicage/v11/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf"},"Libre Barcode 128":{"regular":"http://fonts.gstatic.com/s/librebarcode128/v8/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf"},"Keania One":{"regular":"http://fonts.gstatic.com/s/keaniaone/v6/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf"},"Bayon":{"regular":"http://fonts.gstatic.com/s/bayon/v12/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf"},"Goblin One":{"regular":"http://fonts.gstatic.com/s/goblinone/v8/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf"},"Devonshire":{"regular":"http://fonts.gstatic.com/s/devonshire/v7/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf"},"Jomhuria":{"regular":"http://fonts.gstatic.com/s/jomhuria/v6/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf"},"Kirang Haerang":{"regular":"http://fonts.gstatic.com/s/kiranghaerang/v7/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf"},"Kavivanar":{"regular":"http://fonts.gstatic.com/s/kavivanar/v4/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf"},"Piedra":{"regular":"http://fonts.gstatic.com/s/piedra/v7/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf"},"IM Fell Double Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldoublepicasc/v8/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf"},"Flavors":{"regular":"http://fonts.gstatic.com/s/flavors/v7/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf"},"Kdam Thmor":{"regular":"http://fonts.gstatic.com/s/kdamthmor/v6/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf"},"ZCOOL XiaoWei":{"regular":"http://fonts.gstatic.com/s/zcoolxiaowei/v4/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf"},"Freehand":{"regular":"http://fonts.gstatic.com/s/freehand/v10/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf"},"Lakki Reddy":{"regular":"http://fonts.gstatic.com/s/lakkireddy/v5/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf"},"Almendra Display":{"regular":"http://fonts.gstatic.com/s/almendradisplay/v9/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf"},"Londrina Shadow":{"regular":"http://fonts.gstatic.com/s/londrinashadow/v8/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf"},"ZCOOL KuaiLe":{"regular":"http://fonts.gstatic.com/s/zcoolkuaile/v4/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf"},"Sunshiney":{"regular":"http://fonts.gstatic.com/s/sunshiney/v9/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf"},"East Sea Dokdo":{"regular":"http://fonts.gstatic.com/s/eastseadokdo/v7/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf"},"Almendra SC":{"regular":"http://fonts.gstatic.com/s/almendrasc/v9/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf"},"Miss Fajardose":{"regular":"http://fonts.gstatic.com/s/missfajardose/v8/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf"},"Vollkorn SC":{"600":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf","700":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf","900":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf","regular":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf"},"Romanesco":{"regular":"http://fonts.gstatic.com/s/romanesco/v7/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf"},"Libre Barcode 39 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39text/v8/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf"},"Jacques Francois":{"regular":"http://fonts.gstatic.com/s/jacquesfrancois/v6/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf"},"Macondo":{"regular":"http://fonts.gstatic.com/s/macondo/v7/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf"},"Srisakdi":{"700":"http://fonts.gstatic.com/s/srisakdi/v2/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/srisakdi/v2/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf"},"Fahkwang":{"200":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf","300":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf","500":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf","600":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf","700":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf","200italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf","300italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf","regular":"http://fonts.gstatic.com/s/fahkwang/v2/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf","italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf","500italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf","600italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf","700italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf"},"Gorditas":{"700":"http://fonts.gstatic.com/s/gorditas/v6/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf","regular":"http://fonts.gstatic.com/s/gorditas/v6/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf"},"Kenia":{"regular":"http://fonts.gstatic.com/s/kenia/v10/jizURE5PuHQH9qCONUGswfGM.ttf"},"Astloch":{"700":"http://fonts.gstatic.com/s/astloch/v9/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf","regular":"http://fonts.gstatic.com/s/astloch/v9/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf"},"Tenali Ramakrishna":{"regular":"http://fonts.gstatic.com/s/tenaliramakrishna/v5/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf"},"Trochut":{"700":"http://fonts.gstatic.com/s/trochut/v6/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf","regular":"http://fonts.gstatic.com/s/trochut/v6/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf","italic":"http://fonts.gstatic.com/s/trochut/v6/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf"},"Jolly Lodger":{"regular":"http://fonts.gstatic.com/s/jollylodger/v6/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf"},"GFS Neohellenic":{"700":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf","regular":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf","italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf","700italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf"},"Seymour One":{"regular":"http://fonts.gstatic.com/s/seymourone/v6/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf"},"Londrina Sketch":{"regular":"http://fonts.gstatic.com/s/londrinasketch/v7/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf"},"Geostar Fill":{"regular":"http://fonts.gstatic.com/s/geostarfill/v9/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf"},"Miltonian":{"regular":"http://fonts.gstatic.com/s/miltonian/v12/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf"},"Nova Cut":{"regular":"http://fonts.gstatic.com/s/novacut/v10/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf"},"Butterfly Kids":{"regular":"http://fonts.gstatic.com/s/butterflykids/v7/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf"},"Risque":{"regular":"http://fonts.gstatic.com/s/risque/v6/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf"},"Nova Oval":{"regular":"http://fonts.gstatic.com/s/novaoval/v10/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf"},"Bungee Outline":{"regular":"http://fonts.gstatic.com/s/bungeeoutline/v4/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf"},"Fascinate":{"regular":"http://fonts.gstatic.com/s/fascinate/v7/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf"},"Supermercado One":{"regular":"http://fonts.gstatic.com/s/supermercadoone/v8/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf"},"Kumar One Outline":{"regular":"http://fonts.gstatic.com/s/kumaroneoutline/v4/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf"},"Passero One":{"regular":"http://fonts.gstatic.com/s/passeroone/v10/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf"},"Sedgwick Ave Display":{"regular":"http://fonts.gstatic.com/s/sedgwickavedisplay/v4/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf"},"Combo":{"regular":"http://fonts.gstatic.com/s/combo/v7/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf"},"Unlock":{"regular":"http://fonts.gstatic.com/s/unlock/v8/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf"},"Libre Barcode 39 Extended Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39extendedtext/v7/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf"},"B612":{"700":"http://fonts.gstatic.com/s/b612/v3/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf","regular":"http://fonts.gstatic.com/s/b612/v3/3JnySDDxiSz32jm4GDigUXw.ttf","italic":"http://fonts.gstatic.com/s/b612/v3/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf","700italic":"http://fonts.gstatic.com/s/b612/v3/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf"},"Metal":{"regular":"http://fonts.gstatic.com/s/metal/v11/lW-wwjUJIXTo7i3nnoQAUdN2.ttf"},"Libre Barcode 39 Extended":{"regular":"http://fonts.gstatic.com/s/librebarcode39extended/v7/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf"},"Emblema One":{"regular":"http://fonts.gstatic.com/s/emblemaone/v7/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf"},"Black And White Picture":{"regular":"http://fonts.gstatic.com/s/blackandwhitepicture/v7/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf"},"Gidugu":{"regular":"http://fonts.gstatic.com/s/gidugu/v5/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf"},"Cute Font":{"regular":"http://fonts.gstatic.com/s/cutefont/v7/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf"},"Butcherman":{"regular":"http://fonts.gstatic.com/s/butcherman/v10/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf"},"Sofadi One":{"regular":"http://fonts.gstatic.com/s/sofadione/v7/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf"},"Bigelow Rules":{"regular":"http://fonts.gstatic.com/s/bigelowrules/v7/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf"},"Preahvihear":{"regular":"http://fonts.gstatic.com/s/preahvihear/v10/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf"},"Sevillana":{"regular":"http://fonts.gstatic.com/s/sevillana/v7/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf"},"Mr Bedfort":{"regular":"http://fonts.gstatic.com/s/mrbedfort/v7/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf"},"Bungee Hairline":{"regular":"http://fonts.gstatic.com/s/bungeehairline/v4/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf"},"Gamja Flower":{"regular":"http://fonts.gstatic.com/s/gamjaflower/v7/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf"},"Fruktur":{"regular":"http://fonts.gstatic.com/s/fruktur/v11/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf"},"Aubrey":{"regular":"http://fonts.gstatic.com/s/aubrey/v11/q5uGsou7NPBw-p7vugNsCxVEgA.ttf"},"Bonbon":{"regular":"http://fonts.gstatic.com/s/bonbon/v10/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf"},"Erica One":{"regular":"http://fonts.gstatic.com/s/ericaone/v9/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf"},"Suravaram":{"regular":"http://fonts.gstatic.com/s/suravaram/v5/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf"},"Geostar":{"regular":"http://fonts.gstatic.com/s/geostar/v9/sykz-yx4n701VLOftSq9-trEvlQ.ttf"},"Federant":{"regular":"http://fonts.gstatic.com/s/federant/v10/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf"},"Peddana":{"regular":"http://fonts.gstatic.com/s/peddana/v6/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf"},"Fasthand":{"regular":"http://fonts.gstatic.com/s/fasthand/v9/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf"},"Hanalei":{"regular":"http://fonts.gstatic.com/s/hanalei/v9/E21n_dD8iufIjBRHXzgmVydREus.ttf"},"Stalinist One":{"regular":"http://fonts.gstatic.com/s/stalinistone/v20/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf"},"Libre Barcode 128 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode128text/v8/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf"},"Dhurjati":{"regular":"http://fonts.gstatic.com/s/dhurjati/v6/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf"},"Moulpali":{"regular":"http://fonts.gstatic.com/s/moulpali/v11/H4ckBXKMl9HagUWymyY6wr-wg763.ttf"},"BioRhyme Expanded":{"200":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf","300":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf","700":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf","800":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf","regular":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf"},"Hi Melody":{"regular":"http://fonts.gstatic.com/s/himelody/v7/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf"},"Yeon Sung":{"regular":"http://fonts.gstatic.com/s/yeonsung/v7/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf"},"Warnes":{"regular":"http://fonts.gstatic.com/s/warnes/v8/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf"},"Notable":{"regular":"http://fonts.gstatic.com/s/notable/v3/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf"}}
1
+ {"Roboto":{"100":"http://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf","300":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf","500":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf","700":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf","900":"http://fonts.gstatic.com/s/roboto/v19/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf","100italic":"http://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf","300italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf","regular":"http://fonts.gstatic.com/s/roboto/v19/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf","italic":"http://fonts.gstatic.com/s/roboto/v19/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf","500italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf","700italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf","900italic":"http://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"},"Open Sans":{"300":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8-VeJoCqeDjg.ttf","600":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirk-VeJoCqeDjg.ttf","700":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rg-VeJoCqeDjg.ttf","800":"http://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf","300italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV-hsKKKTjrPW.ttf","regular":"http://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-U1UpcaXcl0Aw.ttf","italic":"http://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUJ0ef8xkA76a.ttf","600italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUehsKKKTjrPW.ttf","700italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUOhsKKKTjrPW.ttf","800italic":"http://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U-hsKKKTjrPW.ttf"},"Lato":{"100":"http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf","300":"http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf","700":"http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf","900":"http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf","100italic":"http://fonts.gstatic.com/s/lato/v15/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf","300italic":"http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf","regular":"http://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHvxk6XweuBCY.ttf","italic":"http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf","700italic":"http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf","900italic":"http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"},"Montserrat":{"100":"http://fonts.gstatic.com/s/montserrat/v13/JTUQjIg1_i6t8kCHKm45_QphziTn89dtpQ.ttf","200":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_aZA7g7J_950vCo.ttf","300":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_cJD7g7J_950vCo.ttf","500":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_ZpC7g7J_950vCo.ttf","600":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_bZF7g7J_950vCo.ttf","700":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_dJE7g7J_950vCo.ttf","800":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_c5H7g7J_950vCo.ttf","900":"http://fonts.gstatic.com/s/montserrat/v13/JTURjIg1_i6t8kCHKm45_epG7g7J_950vCo.ttf","100italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUOjIg1_i6t8kCHKm459WxZqi7j0dJ9pTOi.ttf","200italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZBg_D-_xxrCq7qg.ttf","300italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZYgzD-_xxrCq7qg.ttf","regular":"http://fonts.gstatic.com/s/montserrat/v13/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf","italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUQjIg1_i6t8kCHKm459WxhziTn89dtpQ.ttf","500italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZOg3D-_xxrCq7qg.ttf","600italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZFgrD-_xxrCq7qg.ttf","700italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZcgvD-_xxrCq7qg.ttf","800italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZbgjD-_xxrCq7qg.ttf","900italic":"http://fonts.gstatic.com/s/montserrat/v13/JTUPjIg1_i6t8kCHKm459WxZSgnD-_xxrCq7qg.ttf"},"Roboto Condensed":{"300":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf","700":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf","300italic":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf","regular":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf","italic":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf","700italic":"http://fonts.gstatic.com/s/robotocondensed/v17/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf"},"Oswald":{"200":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf","300":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf","500":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf","600":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf","700":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf","regular":"http://fonts.gstatic.com/s/oswald/v23/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf"},"Source Sans Pro":{"200":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf","300":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf","600":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf","700":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf","900":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf","200italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf","300italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf","regular":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf","italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf","600italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf","700italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf","900italic":"http://fonts.gstatic.com/s/sourcesanspro/v12/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf"},"Raleway":{"100":"http://fonts.gstatic.com/s/raleway/v13/1Ptsg8zYS_SKggPNwE4ISotrDfGGxA.ttf","200":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwOIpaqFFAfif3Vo.ttf","300":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwIYqaqFFAfif3Vo.ttf","500":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwN4raqFFAfif3Vo.ttf","600":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwPIsaqFFAfif3Vo.ttf","700":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwJYtaqFFAfif3Vo.ttf","800":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwIouaqFFAfif3Vo.ttf","900":"http://fonts.gstatic.com/s/raleway/v13/1Ptrg8zYS_SKggPNwK4vaqFFAfif3Vo.ttf","100italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptqg8zYS_SKggPNyCgwLoFvL_SWxEMT.ttf","200italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwgqBPBdqazVoK4A.ttf","300italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgw5qNPBdqazVoK4A.ttf","regular":"http://fonts.gstatic.com/s/raleway/v13/1Ptug8zYS_SKggPN-CoCTqluHfE.ttf","italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptsg8zYS_SKggPNyCgISotrDfGGxA.ttf","500italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwvqJPBdqazVoK4A.ttf","600italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwkqVPBdqazVoK4A.ttf","700italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgw9qRPBdqazVoK4A.ttf","800italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgw6qdPBdqazVoK4A.ttf","900italic":"http://fonts.gstatic.com/s/raleway/v13/1Ptpg8zYS_SKggPNyCgwzqZPBdqazVoK4A.ttf"},"Merriweather":{"300":"http://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf","700":"http://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf","900":"http://fonts.gstatic.com/s/merriweather/v20/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf","300italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf","regular":"http://fonts.gstatic.com/s/merriweather/v20/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf","italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf","700italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf","900italic":"http://fonts.gstatic.com/s/merriweather/v20/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf"},"Roboto Slab":{"100":"http://fonts.gstatic.com/s/robotoslab/v8/BngOUXZYTXPIvIBgJJSb6u-u5qCr5RCDY_k.ttf","300":"http://fonts.gstatic.com/s/robotoslab/v8/BngRUXZYTXPIvIBgJJSb6u9mxICByxyKeuDp.ttf","700":"http://fonts.gstatic.com/s/robotoslab/v8/BngRUXZYTXPIvIBgJJSb6u92w4CByxyKeuDp.ttf","regular":"http://fonts.gstatic.com/s/robotoslab/v8/BngMUXZYTXPIvIBgJJSb6tfK7KSJ4ACD.ttf"},"Roboto Mono":{"100":"http://fonts.gstatic.com/s/robotomono/v6/L0x7DF4xlVMF-BfR8bXMIjAoq3qcW7KCG1w.ttf","300":"http://fonts.gstatic.com/s/robotomono/v6/L0xkDF4xlVMF-BfR8bXMIjDgiVq2db6LAkU-.ttf","500":"http://fonts.gstatic.com/s/robotomono/v6/L0xkDF4xlVMF-BfR8bXMIjC4iFq2db6LAkU-.ttf","700":"http://fonts.gstatic.com/s/robotomono/v6/L0xkDF4xlVMF-BfR8bXMIjDwjlq2db6LAkU-.ttf","100italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xlDF4xlVMF-BfR8bXMIjhOkx6WX5CHC1wnFw.ttf","300italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xmDF4xlVMF-BfR8bXMIjhOk9a0f7qpB1U-Drg.ttf","regular":"http://fonts.gstatic.com/s/robotomono/v6/L0x5DF4xlVMF-BfR8bXMIghMoX6-XqKC.ttf","italic":"http://fonts.gstatic.com/s/robotomono/v6/L0x7DF4xlVMF-BfR8bXMIjhOq3qcW7KCG1w.ttf","500italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xmDF4xlVMF-BfR8bXMIjhOk461f7qpB1U-Drg.ttf","700italic":"http://fonts.gstatic.com/s/robotomono/v6/L0xmDF4xlVMF-BfR8bXMIjhOk8azf7qpB1U-Drg.ttf"},"Poppins":{"100":"http://fonts.gstatic.com/s/poppins/v6/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf","200":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf","300":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf","500":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf","600":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf","700":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf","800":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf","900":"http://fonts.gstatic.com/s/poppins/v6/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf","100italic":"http://fonts.gstatic.com/s/poppins/v6/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf","200italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf","300italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf","regular":"http://fonts.gstatic.com/s/poppins/v6/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf","italic":"http://fonts.gstatic.com/s/poppins/v6/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf","500italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf","600italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf","700italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf","800italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf","900italic":"http://fonts.gstatic.com/s/poppins/v6/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf"},"PT Sans":{"700":"http://fonts.gstatic.com/s/ptsans/v10/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf","regular":"http://fonts.gstatic.com/s/ptsans/v10/jizaRExUiTo99u79P0WOxOGMMDQ.ttf","italic":"http://fonts.gstatic.com/s/ptsans/v10/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf","700italic":"http://fonts.gstatic.com/s/ptsans/v10/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf"},"Noto Sans":{"700":"http://fonts.gstatic.com/s/notosans/v8/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf","regular":"http://fonts.gstatic.com/s/notosans/v8/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf","italic":"http://fonts.gstatic.com/s/notosans/v8/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf","700italic":"http://fonts.gstatic.com/s/notosans/v8/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf"},"Ubuntu":{"300":"http://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf","500":"http://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf","700":"http://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf","300italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf","regular":"http://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf","italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf","500italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf","700italic":"http://fonts.gstatic.com/s/ubuntu/v13/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf"},"Slabo 27px":{"regular":"http://fonts.gstatic.com/s/slabo27px/v5/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf"},"Open Sans Condensed":{"300":"http://fonts.gstatic.com/s/opensanscondensed/v13/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuLGRpWRyAs.ttf","700":"http://fonts.gstatic.com/s/opensanscondensed/v13/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuLGRpWRyAs.ttf","300italic":"http://fonts.gstatic.com/s/opensanscondensed/v13/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQreU2AsJSg.ttf"},"Playfair Display":{"700":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf","900":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplay/v14/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf"},"Lora":{"700":"http://fonts.gstatic.com/s/lora/v13/0QIgMX1D_JOuO7HeBttkm_mv670.ttf","regular":"http://fonts.gstatic.com/s/lora/v13/0QIvMX1D_JOuAw3xItNPh_A.ttf","italic":"http://fonts.gstatic.com/s/lora/v13/0QIhMX1D_JOuMw_7JvFKl_C28g.ttf","700italic":"http://fonts.gstatic.com/s/lora/v13/0QIiMX1D_JOuMw_Dmt5un9uq-73O-Q.ttf"},"PT Serif":{"700":"http://fonts.gstatic.com/s/ptserif/v10/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf","regular":"http://fonts.gstatic.com/s/ptserif/v10/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf","italic":"http://fonts.gstatic.com/s/ptserif/v10/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf","700italic":"http://fonts.gstatic.com/s/ptserif/v10/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf"},"Muli":{"200":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adf3nCCL8zkwMIFg.ttf","300":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adZnkCCL8zkwMIFg.ttf","600":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-ade3iCCL8zkwMIFg.ttf","700":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adYnjCCL8zkwMIFg.ttf","800":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adZXgCCL8zkwMIFg.ttf","900":"http://fonts.gstatic.com/s/muli/v13/7Au_p_0qiz-adbHhCCL8zkwMIFg.ttf","200italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-4CP2ym4JMFge0g.ttf","300italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-hCD2ym4JMFge0g.ttf","regular":"http://fonts.gstatic.com/s/muli/v13/7Auwp_0qiz-aTTXMLCrX0kU.ttf","italic":"http://fonts.gstatic.com/s/muli/v13/7Au-p_0qiz-afTfGKAjSwkUVOQ.ttf","600italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-8Cb2ym4JMFge0g.ttf","700italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-lCf2ym4JMFge0g.ttf","800italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-iCT2ym4JMFge0g.ttf","900italic":"http://fonts.gstatic.com/s/muli/v13/7Au9p_0qiz-afTf-rCX2ym4JMFge0g.ttf"},"Titillium Web":{"200":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf","300":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf","600":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf","700":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf","900":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf","200italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf","300italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf","regular":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf","italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf","600italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf","700italic":"http://fonts.gstatic.com/s/titilliumweb/v7/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf"},"Nunito":{"200":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf","300":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf","600":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf","700":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf","800":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf","900":"http://fonts.gstatic.com/s/nunito/v10/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf","200italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf","300italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf","regular":"http://fonts.gstatic.com/s/nunito/v10/XRXV3I6Li01BKof4MuyAbsrVcA.ttf","italic":"http://fonts.gstatic.com/s/nunito/v10/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf","600italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf","700italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf","800italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf","900italic":"http://fonts.gstatic.com/s/nunito/v10/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf"},"PT Sans Narrow":{"700":"http://fonts.gstatic.com/s/ptsansnarrow/v10/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf","regular":"http://fonts.gstatic.com/s/ptsansnarrow/v10/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf"},"Noto Sans JP":{"100":"http://fonts.gstatic.com/s/notosansjp/v23/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf","300":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf","500":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf","700":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf","900":"http://fonts.gstatic.com/s/notosansjp/v23/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf","regular":"http://fonts.gstatic.com/s/notosansjp/v23/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf"},"Rubik":{"300":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7Fqj1ma-2HW7ZB_.ttf","500":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7Eyjlma-2HW7ZB_.ttf","700":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7F6iFma-2HW7ZB_.ttf","900":"http://fonts.gstatic.com/s/rubik/v8/iJWHBXyIfDnIV7FCilma-2HW7ZB_.ttf","300italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nEldWY8WX06IB_18o.ttf","regular":"http://fonts.gstatic.com/s/rubik/v8/iJWKBXyIfDnIV4nGp32S0H3f.ttf","italic":"http://fonts.gstatic.com/s/rubik/v8/iJWEBXyIfDnIV7nErXmw1W3f9Ik.ttf","500italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nElY2Z8WX06IB_18o.ttf","700italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nElcWf8WX06IB_18o.ttf","900italic":"http://fonts.gstatic.com/s/rubik/v8/iJWBBXyIfDnIV7nElf2d8WX06IB_18o.ttf"},"Noto Serif":{"700":"http://fonts.gstatic.com/s/notoserif/v7/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf","regular":"http://fonts.gstatic.com/s/notoserif/v7/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf","italic":"http://fonts.gstatic.com/s/notoserif/v7/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf","700italic":"http://fonts.gstatic.com/s/notoserif/v7/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf"},"Fira Sans":{"100":"http://fonts.gstatic.com/s/firasans/v9/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf","200":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf","300":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf","500":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf","600":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf","700":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf","800":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf","900":"http://fonts.gstatic.com/s/firasans/v9/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf","100italic":"http://fonts.gstatic.com/s/firasans/v9/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf","200italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf","300italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf","regular":"http://fonts.gstatic.com/s/firasans/v9/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf","italic":"http://fonts.gstatic.com/s/firasans/v9/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf","500italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf","600italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf","700italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf","800italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf","900italic":"http://fonts.gstatic.com/s/firasans/v9/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf"},"Nanum Gothic":{"700":"http://fonts.gstatic.com/s/nanumgothic/v16/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf","800":"http://fonts.gstatic.com/s/nanumgothic/v16/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf","regular":"http://fonts.gstatic.com/s/nanumgothic/v16/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf"},"Arimo":{"700":"http://fonts.gstatic.com/s/arimo/v12/P5sBzZCDf9_T_1Wi4QREp5On0ME2.ttf","regular":"http://fonts.gstatic.com/s/arimo/v12/P5sMzZCDf9_T_20eziBMjI-u.ttf","italic":"http://fonts.gstatic.com/s/arimo/v12/P5sCzZCDf9_T_10cxCRuiZ-uydg.ttf","700italic":"http://fonts.gstatic.com/s/arimo/v12/P5sHzZCDf9_T_10c_JhBrZeF1dE2PY4.ttf"},"Work Sans":{"100":"http://fonts.gstatic.com/s/worksans/v4/QGYqz_wNahGAdqQ43Rh3H6DstfxA4OD3.ttf","200":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3s4HMn9JM6fnuKg.ttf","300":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh314LMn9JM6fnuKg.ttf","500":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3j4PMn9JM6fnuKg.ttf","600":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3o4TMn9JM6fnuKg.ttf","700":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3x4XMn9JM6fnuKg.ttf","800":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh324bMn9JM6fnuKg.ttf","900":"http://fonts.gstatic.com/s/worksans/v4/QGYpz_wNahGAdqQ43Rh3_4fMn9JM6fnuKg.ttf","regular":"http://fonts.gstatic.com/s/worksans/v4/QGYsz_wNahGAdqQ43RhPe6rol_lQ4A.ttf"},"Quicksand":{"300":"http://fonts.gstatic.com/s/quicksand/v9/6xKodSZaM9iE8KbpRA_pgHYoSMj-N4_4kQ.ttf","500":"http://fonts.gstatic.com/s/quicksand/v9/6xKodSZaM9iE8KbpRA_p2HcoSMj-N4_4kQ.ttf","700":"http://fonts.gstatic.com/s/quicksand/v9/6xKodSZaM9iE8KbpRA_pkHEoSMj-N4_4kQ.ttf","regular":"http://fonts.gstatic.com/s/quicksand/v9/6xKtdSZaM9iE8KbpRA_RLF4MQOPiPg.ttf"},"Noto Sans KR":{"100":"http://fonts.gstatic.com/s/notosanskr/v11/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf","300":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf","500":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf","700":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf","900":"http://fonts.gstatic.com/s/notosanskr/v11/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf","regular":"http://fonts.gstatic.com/s/notosanskr/v11/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf"},"Dosis":{"200":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzGnKtCCOopCTKkI.ttf","300":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzHDKdCCOopCTKkI.ttf","500":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzGbKNCCOopCTKkI.ttf","600":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzG3L9CCOopCTKkI.ttf","700":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzHTLtCCOopCTKkI.ttf","800":"http://fonts.gstatic.com/s/dosis/v8/HhyXU5sn9vOmLzHPLdCCOopCTKkI.ttf","regular":"http://fonts.gstatic.com/s/dosis/v8/HhyaU5sn9vOmLwlvAfSKEZZL.ttf"},"Heebo":{"100":"http://fonts.gstatic.com/s/heebo/v4/NGS0v5_NC0k9P9mVTbRhtKMByaw.ttf","300":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9ldb5RLmq8I0LVF.ttf","500":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9kFbpRLmq8I0LVF.ttf","700":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9lNaJRLmq8I0LVF.ttf","800":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9lRa5RLmq8I0LVF.ttf","900":"http://fonts.gstatic.com/s/heebo/v4/NGS3v5_NC0k9P9l1apRLmq8I0LVF.ttf","regular":"http://fonts.gstatic.com/s/heebo/v4/NGS6v5_NC0k9P-HxR7BDsbMB.ttf"},"Oxygen":{"300":"http://fonts.gstatic.com/s/oxygen/v8/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf","700":"http://fonts.gstatic.com/s/oxygen/v8/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf","regular":"http://fonts.gstatic.com/s/oxygen/v8/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf"},"Inconsolata":{"700":"http://fonts.gstatic.com/s/inconsolata/v17/QldXNThLqRwH-OJ1UHjlKGHiw41u7f34DYwn.ttf","regular":"http://fonts.gstatic.com/s/inconsolata/v17/QldKNThLqRwH-OJ1UHjlKFle7KlmxuHx.ttf"},"Crimson Text":{"600":"http://fonts.gstatic.com/s/crimsontext/v9/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf","700":"http://fonts.gstatic.com/s/crimsontext/v9/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf","regular":"http://fonts.gstatic.com/s/crimsontext/v9/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf","italic":"http://fonts.gstatic.com/s/crimsontext/v9/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf","600italic":"http://fonts.gstatic.com/s/crimsontext/v9/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf","700italic":"http://fonts.gstatic.com/s/crimsontext/v9/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf"},"Josefin Sans":{"100":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3EZQNVED7rKGKxtqIqX5Ecbnx9Vnksi4M7.ttf","300":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3FZQNVED7rKGKxtqIqX5Ecpl5dfFcggpoi_Q.ttf","600":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3FZQNVED7rKGKxtqIqX5Ec0lhdfFcggpoi_Q.ttf","700":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3FZQNVED7rKGKxtqIqX5EctlldfFcggpoi_Q.ttf","100italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3GZQNVED7rKGKxtqIqX5EUCEQZXH0OjpM75PE.ttf","300italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3HZQNVED7rKGKxtqIqX5EUCETRfl0koJ8y_eiS.ttf","regular":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3aZQNVED7rKGKxtqIqX5EkCnZ5dHw8iw.ttf","italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3EZQNVED7rKGKxtqIqX5EUCHx9Vnksi4M7.ttf","600italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3HZQNVED7rKGKxtqIqX5EUCESleF0koJ8y_eiS.ttf","700italic":"http://fonts.gstatic.com/s/josefinsans/v13/Qw3HZQNVED7rKGKxtqIqX5EUCETBeV0koJ8y_eiS.ttf"},"Nunito Sans":{"200":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf","300":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf","600":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf","700":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf","800":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf","900":"http://fonts.gstatic.com/s/nunitosans/v4/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf","200italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf","300italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf","regular":"http://fonts.gstatic.com/s/nunitosans/v4/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf","italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf","600italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf","700italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf","800italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf","900italic":"http://fonts.gstatic.com/s/nunitosans/v4/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf"},"Libre Baskerville":{"700":"http://fonts.gstatic.com/s/librebaskerville/v6/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf","regular":"http://fonts.gstatic.com/s/librebaskerville/v6/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf","italic":"http://fonts.gstatic.com/s/librebaskerville/v6/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf"},"Libre Franklin":{"100":"http://fonts.gstatic.com/s/librefranklin/v3/jizBREVItHgc8qDIbSTKq4XkRi182zIZj1bIkNo.ttf","200":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIzoVrBicOg.ttf","300":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi20-RIzoVrBicOg.ttf","500":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi3s-BIzoVrBicOg.ttf","600":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi3A_xIzoVrBicOg.ttf","700":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi2k_hIzoVrBicOg.ttf","800":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi24_RIzoVrBicOg.ttf","900":"http://fonts.gstatic.com/s/librefranklin/v3/jizAREVItHgc8qDIbSTKq4XkRi2c_BIzoVrBicOg.ttf","100italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizHREVItHgc8qDIbSTKq4XkRiUa41YTi3TNgNq55w.ttf","200italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq17jjNOg_oc.ttf","300italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa454xq17jjNOg_oc.ttf","regular":"http://fonts.gstatic.com/s/librefranklin/v3/jizDREVItHgc8qDIbSTKq4XkRhUY0TY7ikbI.ttf","italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizBREVItHgc8qDIbSTKq4XkRiUa2zIZj1bIkNo.ttf","500italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq17jjNOg_oc.ttf","600italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q17jjNOg_oc.ttf","700italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa4442q17jjNOg_oc.ttf","800italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q17jjNOg_oc.ttf","900italic":"http://fonts.gstatic.com/s/librefranklin/v3/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q17jjNOg_oc.ttf"},"Anton":{"regular":"http://fonts.gstatic.com/s/anton/v10/1Ptgg87LROyAm0K08i4gS7lu.ttf"},"Bitter":{"700":"http://fonts.gstatic.com/s/bitter/v14/rax_HiqOu8IVPmnzxKlMBBJek0vA8A.ttf","regular":"http://fonts.gstatic.com/s/bitter/v14/rax8HiqOu8IVPmnLeIZoDDlCmg.ttf","italic":"http://fonts.gstatic.com/s/bitter/v14/rax-HiqOu8IVPmn7eoxsLjxSmlLZ.ttf"},"Hind":{"300":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf","500":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf","600":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf","700":"http://fonts.gstatic.com/s/hind/v9/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf","regular":"http://fonts.gstatic.com/s/hind/v9/5aU69_a8oxmIRG5yBROzkDM.ttf"},"Cabin":{"500":"http://fonts.gstatic.com/s/cabin/v13/u-480qWljRw-PdfD3NhisShmeh5I.ttf","600":"http://fonts.gstatic.com/s/cabin/v13/u-480qWljRw-Pdfv29hisShmeh5I.ttf","700":"http://fonts.gstatic.com/s/cabin/v13/u-480qWljRw-PdeL2thisShmeh5I.ttf","regular":"http://fonts.gstatic.com/s/cabin/v13/u-4x0qWljRw-Pe839fxqmjRv.ttf","italic":"http://fonts.gstatic.com/s/cabin/v13/u-4_0qWljRw-Pd81__hInyRvYwc.ttf","500italic":"http://fonts.gstatic.com/s/cabin/v13/u-460qWljRw-Pd81xwxhuyxEfw5IR-Y.ttf","600italic":"http://fonts.gstatic.com/s/cabin/v13/u-460qWljRw-Pd81xyBmuyxEfw5IR-Y.ttf","700italic":"http://fonts.gstatic.com/s/cabin/v13/u-460qWljRw-Pd81x0RnuyxEfw5IR-Y.ttf"},"Fjalla One":{"regular":"http://fonts.gstatic.com/s/fjallaone/v6/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf"},"Karla":{"700":"http://fonts.gstatic.com/s/karla/v7/qkBWXvYC6trAT7zuC_m-zrpHmRzC.ttf","regular":"http://fonts.gstatic.com/s/karla/v7/qkBbXvYC6trAT4RSJN225aZO.ttf","italic":"http://fonts.gstatic.com/s/karla/v7/qkBVXvYC6trAT7RQLtmU4LZOgAU.ttf","700italic":"http://fonts.gstatic.com/s/karla/v7/qkBQXvYC6trAT7RQFmW7xL5lnAzCKNg.ttf"},"Indie Flower":{"regular":"http://fonts.gstatic.com/s/indieflower/v10/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf"},"Lobster":{"regular":"http://fonts.gstatic.com/s/lobster/v21/neILzCirqoswsqX9_oWsMqEzSJQ.ttf"},"Arvo":{"700":"http://fonts.gstatic.com/s/arvo/v11/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf","regular":"http://fonts.gstatic.com/s/arvo/v11/tDbD2oWUg0MKmSAa7Lzr7vs.ttf","italic":"http://fonts.gstatic.com/s/arvo/v11/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf","700italic":"http://fonts.gstatic.com/s/arvo/v11/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf"},"Abel":{"regular":"http://fonts.gstatic.com/s/abel/v9/MwQ5bhbm2POE6VhLPJp6qGI.ttf"},"Noto Sans TC":{"100":"http://fonts.gstatic.com/s/notosanstc/v8/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf","300":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf","500":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf","700":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf","900":"http://fonts.gstatic.com/s/notosanstc/v8/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf","regular":"http://fonts.gstatic.com/s/notosanstc/v8/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf"},"Hind Siliguri":{"300":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf","500":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf","600":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf","700":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf","regular":"http://fonts.gstatic.com/s/hindsiliguri/v5/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf"},"Teko":{"300":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf","500":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf","600":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf","700":"http://fonts.gstatic.com/s/teko/v8/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf","regular":"http://fonts.gstatic.com/s/teko/v8/LYjNdG7kmE0gTaR3pCtBtVs.ttf"},"Exo 2":{"100":"http://fonts.gstatic.com/s/exo2/v5/7cHov4okm5zmbt5LK-sW5HIohT4.ttf","200":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt7nCss8yn4hnCci.ttf","300":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6DCcs8yn4hnCci.ttf","500":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt7bCMs8yn4hnCci.ttf","600":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt73D8s8yn4hnCci.ttf","700":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6TDss8yn4hnCci.ttf","800":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6PDcs8yn4hnCci.ttf","900":"http://fonts.gstatic.com/s/exo2/v5/7cHrv4okm5zmbt6rDMs8yn4hnCci.ttf","100italic":"http://fonts.gstatic.com/s/exo2/v5/7cHqv4okm5zmbtYtE48c4FAtlT47dw.ttf","200italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtEyM9wHoDmTcibrA.ttf","300italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE0c-wHoDmTcibrA.ttf","regular":"http://fonts.gstatic.com/s/exo2/v5/7cHmv4okm5zmbuYvIe804WIo.ttf","italic":"http://fonts.gstatic.com/s/exo2/v5/7cHov4okm5zmbtYtK-sW5HIohT4.ttf","500italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtEx8_wHoDmTcibrA.ttf","600italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtEzM4wHoDmTcibrA.ttf","700italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE1c5wHoDmTcibrA.ttf","800italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE0s6wHoDmTcibrA.ttf","900italic":"http://fonts.gstatic.com/s/exo2/v5/7cHtv4okm5zmbtYtE287wHoDmTcibrA.ttf"},"Pacifico":{"regular":"http://fonts.gstatic.com/s/pacifico/v13/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf"},"Varela Round":{"regular":"http://fonts.gstatic.com/s/varelaround/v11/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf"},"Dancing Script":{"700":"http://fonts.gstatic.com/s/dancingscript/v10/If2SXTr6YS-zF4S-kcSWSVi_szpbr8QtoCIervbA.ttf","regular":"http://fonts.gstatic.com/s/dancingscript/v10/If2RXTr6YS-zF4S-kcSWSVi_swLngOAliz4X.ttf"},"Source Serif Pro":{"600":"http://fonts.gstatic.com/s/sourceserifpro/v6/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf","700":"http://fonts.gstatic.com/s/sourceserifpro/v6/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf","regular":"http://fonts.gstatic.com/s/sourceserifpro/v6/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf"},"Merriweather Sans":{"300":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD2BdWzIqY.ttf","700":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD2BdWzIqY.ttf","800":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD2BdWzIqY.ttf","300italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hN0yZqYcqw.ttf","regular":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXySDTL8wtf.ttf","italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjDp9htf1ZM.ttf","700italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hN0yZqYcqw.ttf","800italic":"http://fonts.gstatic.com/s/merriweathersans/v10/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hN0yZqYcqw.ttf"},"Mukta":{"200":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf","300":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf","500":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf","600":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf","700":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf","800":"http://fonts.gstatic.com/s/mukta/v6/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf","regular":"http://fonts.gstatic.com/s/mukta/v6/iJWKBXyXfDDVXYnGp32S0H3f.ttf"},"Asap":{"500":"http://fonts.gstatic.com/s/asap/v9/KFOnCniXp96aw8g9xUxlBz88MsA.ttf","600":"http://fonts.gstatic.com/s/asap/v9/KFOnCniXp96aw-Q6xUxlBz88MsA.ttf","700":"http://fonts.gstatic.com/s/asap/v9/KFOnCniXp96aw4A7xUxlBz88MsA.ttf","regular":"http://fonts.gstatic.com/s/asap/v9/KFOoCniXp96a-zwU4UROGzY.ttf","italic":"http://fonts.gstatic.com/s/asap/v9/KFOmCniXp96ayz4e5WZLCzYlKw.ttf","500italic":"http://fonts.gstatic.com/s/asap/v9/KFOlCniXp96ayz4mEU9vAx05IsDqlA.ttf","600italic":"http://fonts.gstatic.com/s/asap/v9/KFOlCniXp96ayz4mPUhvAx05IsDqlA.ttf","700italic":"http://fonts.gstatic.com/s/asap/v9/KFOlCniXp96ayz4mWUlvAx05IsDqlA.ttf"},"Yanone Kaffeesatz":{"200":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y9-6aknfjLm_3lMKjiMgmUUYBs04YfUPs-tNtKENeNp.ttf","300":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y9-6aknfjLm_3lMKjiMgmUUYBs04YewPc-tNtKENeNp.ttf","700":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y9-6aknfjLm_3lMKjiMgmUUYBs04YegOs-tNtKENeNp.ttf","regular":"http://fonts.gstatic.com/s/yanonekaffeesatz/v10/3y976aknfjLm_3lMKjiMgmUUYBs04b8cFeulHc6N.ttf"},"Barlow":{"100":"http://fonts.gstatic.com/s/barlow/v3/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf","200":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf","300":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf","500":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf","600":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf","700":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf","800":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf","900":"http://fonts.gstatic.com/s/barlow/v3/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf","100italic":"http://fonts.gstatic.com/s/barlow/v3/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf","200italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf","300italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf","regular":"http://fonts.gstatic.com/s/barlow/v3/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf","italic":"http://fonts.gstatic.com/s/barlow/v3/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf","500italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf","600italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf","700italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf","800italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf","900italic":"http://fonts.gstatic.com/s/barlow/v3/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf"},"Shadows Into Light":{"regular":"http://fonts.gstatic.com/s/shadowsintolight/v8/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf"},"Abril Fatface":{"regular":"http://fonts.gstatic.com/s/abrilfatface/v10/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf"},"Cairo":{"200":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalrub76M7dd8aGZk.ttf","300":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6HkvalqKbL6M7dd8aGZk.ttf","600":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalr-ar6M7dd8aGZk.ttf","700":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalqaa76M7dd8aGZk.ttf","900":"http://fonts.gstatic.com/s/cairo/v5/SLXLc1nY6Hkvalqiab6M7dd8aGZk.ttf","regular":"http://fonts.gstatic.com/s/cairo/v5/SLXGc1nY6HkvamImRJqExst1.ttf"},"Source Code Pro":{"200":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztO0rzmmkDQ.ttf","300":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztO0rzmmkDQ.ttf","500":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztO0rzmmkDQ.ttf","600":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztO0rzmmkDQ.ttf","700":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztO0rzmmkDQ.ttf","900":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztO0rzmmkDQ.ttf","regular":"http://fonts.gstatic.com/s/sourcecodepro/v9/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf"},"Catamaran":{"100":"http://fonts.gstatic.com/s/catamaran/v5/o-0OIpQoyXQa2RxT7-5jhjRFSfiM7HBj.ttf","200":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jKhVlY9aA5Wl6PQ.ttf","300":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jThZlY9aA5Wl6PQ.ttf","500":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jFhdlY9aA5Wl6PQ.ttf","600":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jOhBlY9aA5Wl6PQ.ttf","700":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jXhFlY9aA5Wl6PQ.ttf","800":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jQhJlY9aA5Wl6PQ.ttf","900":"http://fonts.gstatic.com/s/catamaran/v5/o-0NIpQoyXQa2RxT7-5jZhNlY9aA5Wl6PQ.ttf","regular":"http://fonts.gstatic.com/s/catamaran/v5/o-0IIpQoyXQa2RxT7-5b4j5Ba_2c7A.ttf"},"Kanit":{"100":"http://fonts.gstatic.com/s/kanit/v4/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf","200":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf","300":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf","500":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf","600":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf","700":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf","800":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf","900":"http://fonts.gstatic.com/s/kanit/v4/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf","100italic":"http://fonts.gstatic.com/s/kanit/v4/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf","200italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf","300italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf","regular":"http://fonts.gstatic.com/s/kanit/v4/nKKZ-Go6G5tXcoaSEQGodLxA.ttf","italic":"http://fonts.gstatic.com/s/kanit/v4/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf","500italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf","600italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf","700italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf","800italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf","900italic":"http://fonts.gstatic.com/s/kanit/v4/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf"},"Bree Serif":{"regular":"http://fonts.gstatic.com/s/breeserif/v8/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf"},"EB Garamond":{"500":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GyGaxwVSA_ArHC_.ttf","600":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GyqbBwVSA_ArHC_.ttf","700":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GzObRwVSA_ArHC_.ttf","800":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGJmQSNjdsmc35JDF1K5GzSbhwVSA_ArHC_.ttf","regular":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGUmQSNjdsmc35JDF1K5FRyQjgdYxPJ.ttf","italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGWmQSNjdsmc35JDF1K5GRwSDw_ZgPJtWk.ttf","500italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcMgWQgviqWC_O7Y.ttf","600italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcOQRQgviqWC_O7Y.ttf","700italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcIAQQgviqWC_O7Y.ttf","800italic":"http://fonts.gstatic.com/s/ebgaramond/v10/SlGLmQSNjdsmc35JDF1K5GRwcJwTQgviqWC_O7Y.ttf"},"Acme":{"regular":"http://fonts.gstatic.com/s/acme/v8/RrQfboBx-C5_bx3Lb23lzLk.ttf"},"Archivo Narrow":{"500":"http://fonts.gstatic.com/s/archivonarrow/v9/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla8dMgPgBu.ttf","600":"http://fonts.gstatic.com/s/archivonarrow/v9/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla8dMgPgBu.ttf","700":"http://fonts.gstatic.com/s/archivonarrow/v9/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla8dMgPgBu.ttf","regular":"http://fonts.gstatic.com/s/archivonarrow/v9/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p.ttf","italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXlw398pJxk.ttf","500italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9cCOxBu_BM.ttf","600italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9cCOxBu_BM.ttf","700italic":"http://fonts.gstatic.com/s/archivonarrow/v9/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9cCOxBu_BM.ttf"},"Righteous":{"regular":"http://fonts.gstatic.com/s/righteous/v7/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf"},"Questrial":{"regular":"http://fonts.gstatic.com/s/questrial/v8/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf"},"Comfortaa":{"300":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf","500":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf","600":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf","700":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf","regular":"http://fonts.gstatic.com/s/comfortaa/v22/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf"},"Exo":{"100":"http://fonts.gstatic.com/s/exo/v8/4UaMrEtFpBIaEH6m2jbu5rXI.ttf","200":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIavF-G8Bji76zR4w.ttf","300":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIa2FyG8Bji76zR4w.ttf","500":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIagF2G8Bji76zR4w.ttf","600":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIarFqG8Bji76zR4w.ttf","700":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIayFuG8Bji76zR4w.ttf","800":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIa1FiG8Bji76zR4w.ttf","900":"http://fonts.gstatic.com/s/exo/v8/4UaDrEtFpBIa8FmG8Bji76zR4w.ttf","100italic":"http://fonts.gstatic.com/s/exo/v8/4UaCrEtFpBISdkbC0DLM46XI-po.ttf","200italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkZu8RLmzanB44N1.ttf","300italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYK8hLmzanB44N1.ttf","regular":"http://fonts.gstatic.com/s/exo/v8/4UaOrEtFpBIidHSi-DP-5g.ttf","italic":"http://fonts.gstatic.com/s/exo/v8/4UaMrEtFpBISdn6m2jbu5rXI.ttf","500italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkZS8xLmzanB44N1.ttf","600italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkZ-9BLmzanB44N1.ttf","700italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYa9RLmzanB44N1.ttf","800italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYG9hLmzanB44N1.ttf","900italic":"http://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYi9xLmzanB44N1.ttf"},"Amatic SC":{"700":"http://fonts.gstatic.com/s/amaticsc/v12/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf","regular":"http://fonts.gstatic.com/s/amaticsc/v12/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf"},"Fira Sans Condensed":{"100":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf","200":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf","300":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf","500":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf","600":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf","700":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf","800":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf","900":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf","100italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf","200italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf","300italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf","regular":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf","italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf","500italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf","600italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf","700italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf","800italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf","900italic":"http://fonts.gstatic.com/s/firasanscondensed/v3/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf"},"Ubuntu Condensed":{"regular":"http://fonts.gstatic.com/s/ubuntucondensed/v9/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf"},"Maven Pro":{"500":"http://fonts.gstatic.com/s/mavenpro/v12/7Au4p_AqnyWWAxW2Wk3OPkctOHMC21go8A.ttf","700":"http://fonts.gstatic.com/s/mavenpro/v12/7Au4p_AqnyWWAxW2Wk3OdkEtOHMC21go8A.ttf","900":"http://fonts.gstatic.com/s/mavenpro/v12/7Au4p_AqnyWWAxW2Wk3OTkMtOHMC21go8A.ttf","regular":"http://fonts.gstatic.com/s/mavenpro/v12/7Au9p_AqnyWWAxW2Wk32ym4JMFge0g.ttf"},"Play":{"700":"http://fonts.gstatic.com/s/play/v10/6ae84K2oVqwItm4TOpc423nTJTM.ttf","regular":"http://fonts.gstatic.com/s/play/v10/6aez4K2oVqwIjtI8Hp8Tx3A.ttf"},"Barlow Condensed":{"100":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf","200":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf","300":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf","500":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf","600":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf","700":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf","800":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf","900":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf","100italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf","200italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf","300italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf","regular":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf","italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf","500italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf","600italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf","700italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf","800italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf","900italic":"http://fonts.gstatic.com/s/barlowcondensed/v3/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf"},"Amiri":{"700":"http://fonts.gstatic.com/s/amiri/v12/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf","regular":"http://fonts.gstatic.com/s/amiri/v12/J7aRnpd8CGxBHqUpvrIw74NL.ttf","italic":"http://fonts.gstatic.com/s/amiri/v12/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf","700italic":"http://fonts.gstatic.com/s/amiri/v12/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf"},"Rajdhani":{"300":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf","500":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf","600":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf","700":"http://fonts.gstatic.com/s/rajdhani/v8/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf","regular":"http://fonts.gstatic.com/s/rajdhani/v8/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf"},"Cinzel":{"700":"http://fonts.gstatic.com/s/cinzel/v8/8vIK7ww63mVu7gtzTUHeFGxbO_zo-w.ttf","900":"http://fonts.gstatic.com/s/cinzel/v8/8vIK7ww63mVu7gtzdUPeFGxbO_zo-w.ttf","regular":"http://fonts.gstatic.com/s/cinzel/v8/8vIJ7ww63mVu7gtL8W76HEdHMg.ttf"},"Domine":{"700":"http://fonts.gstatic.com/s/domine/v6/L0x_DFMnlVwD4h3pAN-CTQJIg3uuXg.ttf","regular":"http://fonts.gstatic.com/s/domine/v6/L0x8DFMnlVwD4h3RvPCmRSlUig.ttf"},"Signika":{"300":"http://fonts.gstatic.com/s/signika/v9/vEFU2_JTCgwQ5ejvE_oEI3BDa0AdytM.ttf","600":"http://fonts.gstatic.com/s/signika/v9/vEFU2_JTCgwQ5ejvE44CI3BDa0AdytM.ttf","700":"http://fonts.gstatic.com/s/signika/v9/vEFU2_JTCgwQ5ejvE-oDI3BDa0AdytM.ttf","regular":"http://fonts.gstatic.com/s/signika/v9/vEFR2_JTCgwQ5ejvK1YsB3hod0k.ttf"},"News Cycle":{"700":"http://fonts.gstatic.com/s/newscycle/v15/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf","regular":"http://fonts.gstatic.com/s/newscycle/v15/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf"},"Ropa Sans":{"regular":"http://fonts.gstatic.com/s/ropasans/v8/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf","italic":"http://fonts.gstatic.com/s/ropasans/v8/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf"},"Francois One":{"regular":"http://fonts.gstatic.com/s/francoisone/v13/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf"},"Permanent Marker":{"regular":"http://fonts.gstatic.com/s/permanentmarker/v8/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf"},"Crete Round":{"regular":"http://fonts.gstatic.com/s/creteround/v7/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf","italic":"http://fonts.gstatic.com/s/creteround/v7/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf"},"Assistant":{"200":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7p0ScA5cZbCjItw.ttf","300":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7w0ecA5cZbCjItw.ttf","600":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7t0GcA5cZbCjItw.ttf","700":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk700CcA5cZbCjItw.ttf","800":"http://fonts.gstatic.com/s/assistant/v3/2sDZZGJYnIjSi6H75xk7z0OcA5cZbCjItw.ttf","regular":"http://fonts.gstatic.com/s/assistant/v3/2sDcZGJYnIjSi6H75xkDb2-4C7wFZQ.ttf"},"Vollkorn":{"600":"http://fonts.gstatic.com/s/vollkorn/v9/0yb6GDoxxrvAnPhYGxH2TGg-hhQ8_C_3.ttf","700":"http://fonts.gstatic.com/s/vollkorn/v9/0yb6GDoxxrvAnPhYGxGSTWg-hhQ8_C_3.ttf","900":"http://fonts.gstatic.com/s/vollkorn/v9/0yb6GDoxxrvAnPhYGxGqT2g-hhQ8_C_3.ttf","regular":"http://fonts.gstatic.com/s/vollkorn/v9/0yb9GDoxxrvAnPhYGykuYkw2rQg1.ttf","italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb7GDoxxrvAnPhYGxksaEgUqBg15TY.ttf","600italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb4GDoxxrvAnPhYGxksUJA6jBAe-T_34DM.ttf","700italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb4GDoxxrvAnPhYGxksUPQ7jBAe-T_34DM.ttf","900italic":"http://fonts.gstatic.com/s/vollkorn/v9/0yb4GDoxxrvAnPhYGxksUMw5jBAe-T_34DM.ttf"},"Noticia Text":{"700":"http://fonts.gstatic.com/s/noticiatext/v8/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf","regular":"http://fonts.gstatic.com/s/noticiatext/v8/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf","italic":"http://fonts.gstatic.com/s/noticiatext/v8/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf","700italic":"http://fonts.gstatic.com/s/noticiatext/v8/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf"},"Overpass":{"100":"http://fonts.gstatic.com/s/overpass/v3/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf","200":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf","300":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf","600":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf","700":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf","800":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf","900":"http://fonts.gstatic.com/s/overpass/v3/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf","100italic":"http://fonts.gstatic.com/s/overpass/v3/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf","200italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf","300italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf","regular":"http://fonts.gstatic.com/s/overpass/v3/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf","italic":"http://fonts.gstatic.com/s/overpass/v3/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf","600italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf","700italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf","800italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf","900italic":"http://fonts.gstatic.com/s/overpass/v3/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"},"Satisfy":{"regular":"http://fonts.gstatic.com/s/satisfy/v9/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf"},"Gloria Hallelujah":{"regular":"http://fonts.gstatic.com/s/gloriahallelujah/v10/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf"},"Patua One":{"regular":"http://fonts.gstatic.com/s/patuaone/v9/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf"},"Hind Madurai":{"300":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf","500":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf","600":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf","700":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf","regular":"http://fonts.gstatic.com/s/hindmadurai/v4/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf"},"Cutive Mono":{"regular":"http://fonts.gstatic.com/s/cutivemono/v7/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf"},"Gothic A1":{"100":"http://fonts.gstatic.com/s/gothica1/v7/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf","200":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf","300":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf","500":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf","600":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf","700":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf","800":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf","900":"http://fonts.gstatic.com/s/gothica1/v7/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf","regular":"http://fonts.gstatic.com/s/gothica1/v7/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf"},"Prompt":{"100":"http://fonts.gstatic.com/s/prompt/v3/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf","200":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf","300":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf","500":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf","600":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf","700":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf","800":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf","900":"http://fonts.gstatic.com/s/prompt/v3/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf","100italic":"http://fonts.gstatic.com/s/prompt/v3/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf","200italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf","300italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf","regular":"http://fonts.gstatic.com/s/prompt/v3/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf","italic":"http://fonts.gstatic.com/s/prompt/v3/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf","500italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf","600italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf","700italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf","800italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf","900italic":"http://fonts.gstatic.com/s/prompt/v3/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf"},"Rokkitt":{"100":"http://fonts.gstatic.com/s/rokkitt/v13/qFdG35qfgYFjGy5hmCWCc_TOyh4Qig.ttf","200":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmImjU97gxhcJk1s.ttf","300":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmO2gU97gxhcJk1s.ttf","500":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmLWhU97gxhcJk1s.ttf","600":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmJmmU97gxhcJk1s.ttf","700":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmP2nU97gxhcJk1s.ttf","800":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmOGkU97gxhcJk1s.ttf","900":"http://fonts.gstatic.com/s/rokkitt/v13/qFdB35qfgYFjGy5hmMWlU97gxhcJk1s.ttf","regular":"http://fonts.gstatic.com/s/rokkitt/v13/qFdE35qfgYFjGy5hoEGId9bL2h4.ttf"},"Alegreya":{"500":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSoS5I3JyJ98KhtH.ttf","700":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpa4o3JyJ98KhtH.ttf","800":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpG4Y3JyJ98KhtH.ttf","900":"http://fonts.gstatic.com/s/alegreya/v12/4UaGrEBBsBhlBjvfkSpi4I3JyJ98KhtH.ttf","regular":"http://fonts.gstatic.com/s/alegreya/v12/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf","italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaHrEBBsBhlBjvfkSLkx63j5pN1MwI.ttf","500italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_1nKwpteLwtHJlc.ttf","700italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_xHMwpteLwtHJlc.ttf","800italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_w3PwpteLwtHJlc.ttf","900italic":"http://fonts.gstatic.com/s/alegreya/v12/4UaErEBBsBhlBjvfkSLk_ynOwpteLwtHJlc.ttf"},"IBM Plex Sans":{"100":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf","200":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf","300":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf","500":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf","600":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf","700":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsans/v6/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf"},"Cuprum":{"700":"http://fonts.gstatic.com/s/cuprum/v10/dg4n_pLmvrkcOkBFnc5nj5YpQwM-gg.ttf","regular":"http://fonts.gstatic.com/s/cuprum/v10/dg4k_pLmvrkcOkB9IeFDh701Sg.ttf","italic":"http://fonts.gstatic.com/s/cuprum/v10/dg4m_pLmvrkcOkBNI-tHpbglShon.ttf","700italic":"http://fonts.gstatic.com/s/cuprum/v10/dg4h_pLmvrkcOkBNI9P7ipwtYQYugjW4.ttf"},"Noto Sans SC":{"100":"http://fonts.gstatic.com/s/notosanssc/v8/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf","300":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf","500":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf","700":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf","900":"http://fonts.gstatic.com/s/notosanssc/v8/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf","regular":"http://fonts.gstatic.com/s/notosanssc/v8/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf"},"Courgette":{"regular":"http://fonts.gstatic.com/s/courgette/v6/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf"},"PT Sans Caption":{"700":"http://fonts.gstatic.com/s/ptsanscaption/v11/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf","regular":"http://fonts.gstatic.com/s/ptsanscaption/v11/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf"},"Old Standard TT":{"700":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf","regular":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf","italic":"http://fonts.gstatic.com/s/oldstandardtt/v11/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf"},"Alfa Slab One":{"regular":"http://fonts.gstatic.com/s/alfaslabone/v8/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf"},"Martel":{"200":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf","300":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf","600":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf","700":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf","800":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf","900":"http://fonts.gstatic.com/s/martel/v3/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf","regular":"http://fonts.gstatic.com/s/martel/v3/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf"},"Alegreya Sans":{"100":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf","300":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf","500":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf","700":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf","800":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf","900":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf","regular":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf","italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasans/v9/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf"},"ABeeZee":{"regular":"http://fonts.gstatic.com/s/abeezee/v12/esDR31xSG-6AGleN6tKukbcHCpE.ttf","italic":"http://fonts.gstatic.com/s/abeezee/v12/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf"},"Caveat":{"700":"http://fonts.gstatic.com/s/caveat/v5/Wnz5HAc5bAfYB2Qz3RM9oiTQNAuxjA.ttf","regular":"http://fonts.gstatic.com/s/caveat/v5/Wnz6HAc5bAfYB2QLYTwZqg_MPQ.ttf"},"Concert One":{"regular":"http://fonts.gstatic.com/s/concertone/v9/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf"},"Frank Ruhl Libre":{"300":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf","500":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf","700":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf","900":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf","regular":"http://fonts.gstatic.com/s/frankruhllibre/v4/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf"},"Cardo":{"700":"http://fonts.gstatic.com/s/cardo/v10/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf","regular":"http://fonts.gstatic.com/s/cardo/v10/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf","italic":"http://fonts.gstatic.com/s/cardo/v10/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf"},"Cormorant Garamond":{"300":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf","500":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf","600":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf","700":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf","300italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf","regular":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf","italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf","500italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf","600italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf","700italic":"http://fonts.gstatic.com/s/cormorantgaramond/v6/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf"},"Cookie":{"regular":"http://fonts.gstatic.com/s/cookie/v10/syky-y18lb0tSbfNlQCT9tPdpw.ttf"},"Kaushan Script":{"regular":"http://fonts.gstatic.com/s/kaushanscript/v7/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"},"Great Vibes":{"regular":"http://fonts.gstatic.com/s/greatvibes/v6/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf"},"Kalam":{"300":"http://fonts.gstatic.com/s/kalam/v9/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf","700":"http://fonts.gstatic.com/s/kalam/v9/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf","regular":"http://fonts.gstatic.com/s/kalam/v9/YA9dr0Wd4kDdMuhWMibDszkB.ttf"},"Didact Gothic":{"regular":"http://fonts.gstatic.com/s/didactgothic/v12/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf"},"Pathway Gothic One":{"regular":"http://fonts.gstatic.com/s/pathwaygothicone/v7/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf"},"Barlow Semi Condensed":{"100":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf","200":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf","300":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf","500":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf","600":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf","700":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf","800":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf","900":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf","100italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf","200italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf","300italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf","regular":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf","italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf","500italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf","600italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf","700italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf","800italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf","900italic":"http://fonts.gstatic.com/s/barlowsemicondensed/v4/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf"},"Tinos":{"700":"http://fonts.gstatic.com/s/tinos/v12/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf","regular":"http://fonts.gstatic.com/s/tinos/v12/buE4poGnedXvwgX8dGVh8TI-.ttf","italic":"http://fonts.gstatic.com/s/tinos/v12/buE2poGnedXvwjX-fmFD9CI-4NU.ttf","700italic":"http://fonts.gstatic.com/s/tinos/v12/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf"},"Viga":{"regular":"http://fonts.gstatic.com/s/viga/v7/xMQbuFFdSaiX_QIjD4e2OX8.ttf"},"Orbitron":{"500":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QJIVAhxoNFxW0Hz.ttf","700":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QIAUghxoNFxW0Hz.ttf","900":"http://fonts.gstatic.com/s/orbitron/v10/yMJWMIlzdpvBhQQL_QI4UAhxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/orbitron/v10/yMJRMIlzdpvBhQQL_Tq8fSx5i814.ttf"},"Special Elite":{"regular":"http://fonts.gstatic.com/s/specialelite/v9/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf"},"Fira Sans Extra Condensed":{"100":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf","200":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf","300":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf","500":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf","600":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf","700":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf","800":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf","900":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf","100italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf","200italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf","300italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf","regular":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf","italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf","500italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf","600italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf","700italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf","800italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf","900italic":"http://fonts.gstatic.com/s/firasansextracondensed/v3/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf"},"Quattrocento Sans":{"700":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf","regular":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf","italic":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf","700italic":"http://fonts.gstatic.com/s/quattrocentosans/v11/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf"},"Cantarell":{"700":"http://fonts.gstatic.com/s/cantarell/v8/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf","regular":"http://fonts.gstatic.com/s/cantarell/v8/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf","italic":"http://fonts.gstatic.com/s/cantarell/v8/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf","700italic":"http://fonts.gstatic.com/s/cantarell/v8/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf"},"Archivo Black":{"regular":"http://fonts.gstatic.com/s/archivoblack/v8/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf"},"Playfair Display SC":{"700":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf","900":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf","regular":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf","italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf","700italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf","900italic":"http://fonts.gstatic.com/s/playfairdisplaysc/v8/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf"},"Zilla Slab":{"300":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf","500":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf","600":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf","700":"http://fonts.gstatic.com/s/zillaslab/v4/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf","300italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf","regular":"http://fonts.gstatic.com/s/zillaslab/v4/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf","italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf","500italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf","600italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf","700italic":"http://fonts.gstatic.com/s/zillaslab/v4/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf"},"Lobster Two":{"700":"http://fonts.gstatic.com/s/lobstertwo/v11/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf","regular":"http://fonts.gstatic.com/s/lobstertwo/v11/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf","italic":"http://fonts.gstatic.com/s/lobstertwo/v11/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf","700italic":"http://fonts.gstatic.com/s/lobstertwo/v11/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf"},"Volkhov":{"700":"http://fonts.gstatic.com/s/volkhov/v10/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf","regular":"http://fonts.gstatic.com/s/volkhov/v10/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf","italic":"http://fonts.gstatic.com/s/volkhov/v10/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf","700italic":"http://fonts.gstatic.com/s/volkhov/v10/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf"},"Russo One":{"regular":"http://fonts.gstatic.com/s/russoone/v7/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf"},"Fredoka One":{"regular":"http://fonts.gstatic.com/s/fredokaone/v6/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf"},"Chivo":{"300":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf","700":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf","900":"http://fonts.gstatic.com/s/chivo/v10/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf","300italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf","regular":"http://fonts.gstatic.com/s/chivo/v10/va9I4kzIxd1KFoBvS-J3kbDP.ttf","italic":"http://fonts.gstatic.com/s/chivo/v10/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf","700italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf","900italic":"http://fonts.gstatic.com/s/chivo/v10/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf"},"Nanum Myeongjo":{"700":"http://fonts.gstatic.com/s/nanummyeongjo/v14/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf","800":"http://fonts.gstatic.com/s/nanummyeongjo/v14/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf","regular":"http://fonts.gstatic.com/s/nanummyeongjo/v14/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf"},"Tajawal":{"200":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf","300":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf","500":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf","700":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf","800":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf","900":"http://fonts.gstatic.com/s/tajawal/v2/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf","regular":"http://fonts.gstatic.com/s/tajawal/v2/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf"},"Tangerine":{"700":"http://fonts.gstatic.com/s/tangerine/v10/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf","regular":"http://fonts.gstatic.com/s/tangerine/v10/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf"},"Hind Guntur":{"300":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf","500":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf","600":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf","700":"http://fonts.gstatic.com/s/hindguntur/v4/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf","regular":"http://fonts.gstatic.com/s/hindguntur/v4/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf"},"Saira":{"100":"http://fonts.gstatic.com/s/saira/v3/mem-Ya2wxmKQyNFETZY_VrUfTck.ttf","200":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNHobLYVeLkWVNBt.ttf","300":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGMb7YVeLkWVNBt.ttf","500":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNHUbrYVeLkWVNBt.ttf","600":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNH4abYVeLkWVNBt.ttf","700":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGcaLYVeLkWVNBt.ttf","800":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGAa7YVeLkWVNBt.ttf","900":"http://fonts.gstatic.com/s/saira/v3/mem9Ya2wxmKQyNGkarYVeLkWVNBt.ttf","regular":"http://fonts.gstatic.com/s/saira/v3/memwYa2wxmKQyOkgR5IdU6Uf.ttf"},"Poiret One":{"regular":"http://fonts.gstatic.com/s/poiretone/v7/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf"},"Sacramento":{"regular":"http://fonts.gstatic.com/s/sacramento/v6/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf"},"Boogaloo":{"regular":"http://fonts.gstatic.com/s/boogaloo/v10/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf"},"Quattrocento":{"700":"http://fonts.gstatic.com/s/quattrocento/v10/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf","regular":"http://fonts.gstatic.com/s/quattrocento/v10/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf"},"Monda":{"700":"http://fonts.gstatic.com/s/monda/v8/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf","regular":"http://fonts.gstatic.com/s/monda/v8/TK3tWkYFABsmjvpmNBsLvPdG.ttf"},"Luckiest Guy":{"regular":"http://fonts.gstatic.com/s/luckiestguy/v9/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf"},"Passion One":{"700":"http://fonts.gstatic.com/s/passionone/v9/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf","900":"http://fonts.gstatic.com/s/passionone/v9/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf","regular":"http://fonts.gstatic.com/s/passionone/v9/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf"},"Hind Vadodara":{"300":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf","500":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf","600":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf","700":"http://fonts.gstatic.com/s/hindvadodara/v5/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf","regular":"http://fonts.gstatic.com/s/hindvadodara/v5/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf"},"Saira Extra Condensed":{"100":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf","200":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf","300":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf","500":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf","600":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf","700":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf","800":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf","900":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf","regular":"http://fonts.gstatic.com/s/sairaextracondensed/v4/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf"},"Gochi Hand":{"regular":"http://fonts.gstatic.com/s/gochihand/v9/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf"},"M PLUS 1p":{"100":"http://fonts.gstatic.com/s/mplus1p/v17/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf","300":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf","500":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf","700":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf","800":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf","900":"http://fonts.gstatic.com/s/mplus1p/v17/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf","regular":"http://fonts.gstatic.com/s/mplus1p/v17/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf"},"BenchNine":{"300":"http://fonts.gstatic.com/s/benchnine/v7/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf","700":"http://fonts.gstatic.com/s/benchnine/v7/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf","regular":"http://fonts.gstatic.com/s/benchnine/v7/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf"},"Neucha":{"regular":"http://fonts.gstatic.com/s/neucha/v10/q5uGsou0JOdh94bvugNsCxVEgA.ttf"},"IBM Plex Serif":{"100":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf","200":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf","300":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf","500":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf","600":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf","700":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf","regular":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf","italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexserif/v7/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf"},"Changa":{"200":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcsqb2bUsT5rZhaZg.ttf","300":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcszb6bUsT5rZhaZg.ttf","500":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcslb-bUsT5rZhaZg.ttf","600":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcsubibUsT5rZhaZg.ttf","700":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcs3bmbUsT5rZhaZg.ttf","800":"http://fonts.gstatic.com/s/changa/v6/2-cl9JNi2YuVOUcswbqbUsT5rZhaZg.ttf","regular":"http://fonts.gstatic.com/s/changa/v6/2-cm9JNi2YuVOUcUYZa_Wu_lpA.ttf"},"Cabin Condensed":{"500":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf","600":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf","700":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf","regular":"http://fonts.gstatic.com/s/cabincondensed/v12/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf"},"Khand":{"300":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf","500":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf","600":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf","700":"http://fonts.gstatic.com/s/khand/v7/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf","regular":"http://fonts.gstatic.com/s/khand/v7/TwMA-IINQlQQ0YpVWHU_TBqO.ttf"},"Prata":{"regular":"http://fonts.gstatic.com/s/prata/v9/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf"},"Handlee":{"regular":"http://fonts.gstatic.com/s/handlee/v7/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf"},"Lalezar":{"regular":"http://fonts.gstatic.com/s/lalezar/v5/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf"},"Ultra":{"regular":"http://fonts.gstatic.com/s/ultra/v11/zOLy4prXmrtY-tT6yLOD6NxF.ttf"},"Patrick Hand":{"regular":"http://fonts.gstatic.com/s/patrickhand/v12/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf"},"Istok Web":{"700":"http://fonts.gstatic.com/s/istokweb/v13/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf","regular":"http://fonts.gstatic.com/s/istokweb/v13/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf","italic":"http://fonts.gstatic.com/s/istokweb/v13/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf","700italic":"http://fonts.gstatic.com/s/istokweb/v13/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf"},"Josefin Slab":{"100":"http://fonts.gstatic.com/s/josefinslab/v9/lW-nwjwOK3Ps5GSJlNNkMalvyQ6qBM7oPxMX.ttf","300":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvASyKLuDkNgoO7g.ttf","600":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLuDkNgoO7g.ttf","700":"http://fonts.gstatic.com/s/josefinslab/v9/lW-mwjwOK3Ps5GSJlNNkMalvESuKLuDkNgoO7g.ttf","100italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-lwjwOK3Ps5GSJlNNkMalnrzbODsrKOgMX95A.ttf","300italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrgFA8e7onu.ttf","regular":"http://fonts.gstatic.com/s/josefinslab/v9/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf","italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-nwjwOK3Ps5GSJlNNkMalnrw6qBM7oPxMX.ttf","600italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurgFA8e7onu.ttf","700italic":"http://fonts.gstatic.com/s/josefinslab/v9/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rgFA8e7onu.ttf"},"Arapey":{"regular":"http://fonts.gstatic.com/s/arapey/v7/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf","italic":"http://fonts.gstatic.com/s/arapey/v7/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf"},"Gudea":{"700":"http://fonts.gstatic.com/s/gudea/v8/neIIzCqgsI0mp9gz26WGHK06UY30.ttf","regular":"http://fonts.gstatic.com/s/gudea/v8/neIFzCqgsI0mp-CP9IGON7Ez.ttf","italic":"http://fonts.gstatic.com/s/gudea/v8/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf"},"Sanchez":{"regular":"http://fonts.gstatic.com/s/sanchez/v6/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf","italic":"http://fonts.gstatic.com/s/sanchez/v6/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf"},"Asap Condensed":{"500":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf","600":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf","700":"http://fonts.gstatic.com/s/asapcondensed/v3/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf","regular":"http://fonts.gstatic.com/s/asapcondensed/v3/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf","italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf","500italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf","600italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf","700italic":"http://fonts.gstatic.com/s/asapcondensed/v3/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf"},"Sawarabi Mincho":{"regular":"http://fonts.gstatic.com/s/sawarabimincho/v9/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf"},"Neuton":{"200":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf","300":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf","700":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf","800":"http://fonts.gstatic.com/s/neuton/v11/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf","regular":"http://fonts.gstatic.com/s/neuton/v11/UMBTrPtMoH62xUZyyII7civlBw.ttf","italic":"http://fonts.gstatic.com/s/neuton/v11/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf"},"Merienda":{"700":"http://fonts.gstatic.com/s/merienda/v7/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf","regular":"http://fonts.gstatic.com/s/merienda/v7/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf"},"Philosopher":{"700":"http://fonts.gstatic.com/s/philosopher/v10/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf","regular":"http://fonts.gstatic.com/s/philosopher/v10/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf","italic":"http://fonts.gstatic.com/s/philosopher/v10/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf","700italic":"http://fonts.gstatic.com/s/philosopher/v10/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf"},"Allerta Stencil":{"regular":"http://fonts.gstatic.com/s/allertastencil/v9/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf"},"Ruda":{"700":"http://fonts.gstatic.com/s/ruda/v10/k3kQo8YQJOpFosM4Td7iL0nAMaM.ttf","900":"http://fonts.gstatic.com/s/ruda/v10/k3kQo8YQJOpFovs6Td7iL0nAMaM.ttf","regular":"http://fonts.gstatic.com/s/ruda/v10/k3kfo8YQJOpFmn8XadbJM0A.ttf"},"Sorts Mill Goudy":{"regular":"http://fonts.gstatic.com/s/sortsmillgoudy/v8/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf","italic":"http://fonts.gstatic.com/s/sortsmillgoudy/v8/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf"},"Bangers":{"regular":"http://fonts.gstatic.com/s/bangers/v11/FeVQS0BTqb0h60ACL5la2bxii28.ttf"},"Hammersmith One":{"regular":"http://fonts.gstatic.com/s/hammersmithone/v9/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf"},"Yantramanav":{"100":"http://fonts.gstatic.com/s/yantramanav/v4/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf","300":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf","500":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf","700":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf","900":"http://fonts.gstatic.com/s/yantramanav/v4/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf","regular":"http://fonts.gstatic.com/s/yantramanav/v4/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf"},"Pontano Sans":{"regular":"http://fonts.gstatic.com/s/pontanosans/v6/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf"},"Pragati Narrow":{"700":"http://fonts.gstatic.com/s/pragatinarrow/v4/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf","regular":"http://fonts.gstatic.com/s/pragatinarrow/v4/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf"},"Montserrat Alternates":{"100":"http://fonts.gstatic.com/s/montserratalternates/v10/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf","200":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf","300":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf","500":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf","600":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf","700":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf","800":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf","900":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf","100italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf","200italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf","300italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf","regular":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf","italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf","500italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf","600italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf","700italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf","800italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf","900italic":"http://fonts.gstatic.com/s/montserratalternates/v10/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf"},"Taviraj":{"100":"http://fonts.gstatic.com/s/taviraj/v4/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf","200":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf","300":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf","500":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf","600":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf","700":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf","800":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf","900":"http://fonts.gstatic.com/s/taviraj/v4/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf","100italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf","200italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf","300italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf","regular":"http://fonts.gstatic.com/s/taviraj/v4/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf","italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf","500italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf","600italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf","700italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf","800italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf","900italic":"http://fonts.gstatic.com/s/taviraj/v4/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf"},"Monoton":{"regular":"http://fonts.gstatic.com/s/monoton/v8/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf"},"Yrsa":{"300":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf","500":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf","600":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf","700":"http://fonts.gstatic.com/s/yrsa/v4/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf","regular":"http://fonts.gstatic.com/s/yrsa/v4/wlp-gwnQFlxs5QvV-IwQwWc.ttf"},"Signika Negative":{"300":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipHD6z_iXAs.ttf","600":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipHD6z_iXAs.ttf","700":"http://fonts.gstatic.com/s/signikanegative/v9/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipHD6z_iXAs.ttf","regular":"http://fonts.gstatic.com/s/signikanegative/v9/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf"},"Unica One":{"regular":"http://fonts.gstatic.com/s/unicaone/v6/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf"},"Sigmar One":{"regular":"http://fonts.gstatic.com/s/sigmarone/v9/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf"},"Economica":{"700":"http://fonts.gstatic.com/s/economica/v6/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf","regular":"http://fonts.gstatic.com/s/economica/v6/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf","italic":"http://fonts.gstatic.com/s/economica/v6/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf","700italic":"http://fonts.gstatic.com/s/economica/v6/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf"},"Pridi":{"200":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf","300":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf","500":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf","600":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf","700":"http://fonts.gstatic.com/s/pridi/v4/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf","regular":"http://fonts.gstatic.com/s/pridi/v4/2sDQZG5JnZLfkfWao2krbl29.ttf"},"Vidaloka":{"regular":"http://fonts.gstatic.com/s/vidaloka/v11/7cHrv4c3ipenMKlEass8yn4hnCci.ttf"},"Marck Script":{"regular":"http://fonts.gstatic.com/s/marckscript/v9/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf"},"Audiowide":{"regular":"http://fonts.gstatic.com/s/audiowide/v7/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf"},"Archivo":{"500":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdSrLC0HrLaqM6Q4.ttf","600":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdQbMC0HrLaqM6Q4.ttf","700":"http://fonts.gstatic.com/s/archivo/v4/k3kVo8UDI-1M0wlSdWLNC0HrLaqM6Q4.ttf","regular":"http://fonts.gstatic.com/s/archivo/v4/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf","italic":"http://fonts.gstatic.com/s/archivo/v4/k3kSo8UDI-1M0wlSfdzoK2vFIaOV8A.ttf","500italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQ30LhKYiJ-Q7m8w.ttf","600italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQ80XhKYiJ-Q7m8w.ttf","700italic":"http://fonts.gstatic.com/s/archivo/v4/k3kXo8UDI-1M0wlSfdzQl0ThKYiJ-Q7m8w.ttf"},"Advent Pro":{"100":"http://fonts.gstatic.com/s/adventpro/v9/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf","200":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf","300":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf","500":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf","600":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf","700":"http://fonts.gstatic.com/s/adventpro/v9/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf","regular":"http://fonts.gstatic.com/s/adventpro/v9/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf"},"Armata":{"regular":"http://fonts.gstatic.com/s/armata/v10/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf"},"Saira Semi Condensed":{"100":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf","200":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf","300":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf","500":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf","600":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf","700":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf","800":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf","900":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/sairasemicondensed/v4/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf"},"Schoolbell":{"regular":"http://fonts.gstatic.com/s/schoolbell/v9/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf"},"Varela":{"regular":"http://fonts.gstatic.com/s/varela/v9/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf"},"Press Start 2P":{"regular":"http://fonts.gstatic.com/s/pressstart2p/v7/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf"},"Noto Serif JP":{"200":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf","300":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf","500":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf","600":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf","700":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf","900":"http://fonts.gstatic.com/s/notoserifjp/v6/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf","regular":"http://fonts.gstatic.com/s/notoserifjp/v6/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf"},"Bad Script":{"regular":"http://fonts.gstatic.com/s/badscript/v7/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf"},"Yellowtail":{"regular":"http://fonts.gstatic.com/s/yellowtail/v9/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf"},"Adamina":{"regular":"http://fonts.gstatic.com/s/adamina/v12/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf"},"Kreon":{"300":"http://fonts.gstatic.com/s/kreon/v13/t5tjIRIUKY-TFH1sUU23hqLgzCHu.ttf","700":"http://fonts.gstatic.com/s/kreon/v13/t5tjIRIUKY-TFH18Vk23hqLgzCHu.ttf","regular":"http://fonts.gstatic.com/s/kreon/v13/t5tuIRIUKY-TFEXAeWm_rb7p.ttf"},"Amaranth":{"700":"http://fonts.gstatic.com/s/amaranth/v9/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf","regular":"http://fonts.gstatic.com/s/amaranth/v9/KtkuALODe433f0j1zPnCF9GqwnzW.ttf","italic":"http://fonts.gstatic.com/s/amaranth/v9/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf","700italic":"http://fonts.gstatic.com/s/amaranth/v9/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf"},"Alice":{"regular":"http://fonts.gstatic.com/s/alice/v10/OpNCnoEEmtHa6FcJpA_chzJ0.ttf"},"Gentium Basic":{"700":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf","regular":"http://fonts.gstatic.com/s/gentiumbasic/v10/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf","italic":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbasic/v10/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf"},"Staatliches":{"regular":"http://fonts.gstatic.com/s/staatliches/v2/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf"},"Architects Daughter":{"regular":"http://fonts.gstatic.com/s/architectsdaughter/v9/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf"},"Gentium Book Basic":{"700":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf","regular":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf","italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf","700italic":"http://fonts.gstatic.com/s/gentiumbookbasic/v9/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf"},"Sintony":{"700":"http://fonts.gstatic.com/s/sintony/v6/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf","regular":"http://fonts.gstatic.com/s/sintony/v6/XoHm2YDqR7-98cVUITQnu98ojjs.ttf"},"Enriqueta":{"700":"http://fonts.gstatic.com/s/enriqueta/v7/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf","regular":"http://fonts.gstatic.com/s/enriqueta/v7/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf"},"Playball":{"regular":"http://fonts.gstatic.com/s/playball/v8/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf"},"Julius Sans One":{"regular":"http://fonts.gstatic.com/s/juliussansone/v7/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf"},"PT Mono":{"regular":"http://fonts.gstatic.com/s/ptmono/v6/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf"},"Days One":{"regular":"http://fonts.gstatic.com/s/daysone/v8/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf"},"Rasa":{"300":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdg52sgC7S9XdZN8.ttf","500":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdlZ3sgC7S9XdZN8.ttf","600":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdnpwsgC7S9XdZN8.ttf","700":"http://fonts.gstatic.com/s/rasa/v4/xn7gYHIn1mWmdh5xsgC7S9XdZN8.ttf","regular":"http://fonts.gstatic.com/s/rasa/v4/xn7vYHIn1mWmTqJelgiQV9w.ttf"},"Sarala":{"700":"http://fonts.gstatic.com/s/sarala/v3/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf","regular":"http://fonts.gstatic.com/s/sarala/v3/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf"},"Spectral":{"200":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf","300":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf","500":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf","600":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf","700":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf","800":"http://fonts.gstatic.com/s/spectral/v5/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf","200italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf","300italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf","regular":"http://fonts.gstatic.com/s/spectral/v5/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf","italic":"http://fonts.gstatic.com/s/spectral/v5/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf","500italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf","600italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf","700italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf","800italic":"http://fonts.gstatic.com/s/spectral/v5/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf"},"Rock Salt":{"regular":"http://fonts.gstatic.com/s/rocksalt/v9/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf"},"Fugaz One":{"regular":"http://fonts.gstatic.com/s/fugazone/v8/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf"},"Paytone One":{"regular":"http://fonts.gstatic.com/s/paytoneone/v11/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf"},"Glegoo":{"700":"http://fonts.gstatic.com/s/glegoo/v8/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf","regular":"http://fonts.gstatic.com/s/glegoo/v8/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf"},"El Messiri":{"500":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6On6jJyrYYWOMluQ.ttf","600":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6OlKkJyrYYWOMluQ.ttf","700":"http://fonts.gstatic.com/s/elmessiri/v5/K2F3fZBRmr9vQ1pHEey6OjalJyrYYWOMluQ.ttf","regular":"http://fonts.gstatic.com/s/elmessiri/v5/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf"},"Carter One":{"regular":"http://fonts.gstatic.com/s/carterone/v10/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf"},"Damion":{"regular":"http://fonts.gstatic.com/s/damion/v8/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf"},"Alegreya Sans SC":{"100":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf","300":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf","500":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf","700":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf","800":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf","900":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf","100italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf","300italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf","regular":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf","italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasanssc/v8/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf"},"Allura":{"regular":"http://fonts.gstatic.com/s/allura/v7/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf"},"Shadows Into Light Two":{"regular":"http://fonts.gstatic.com/s/shadowsintolighttwo/v6/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf"},"Unna":{"700":"http://fonts.gstatic.com/s/unna/v12/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf","regular":"http://fonts.gstatic.com/s/unna/v12/AYCEpXzofN0NCpgBlGHCWFM.ttf","italic":"http://fonts.gstatic.com/s/unna/v12/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf","700italic":"http://fonts.gstatic.com/s/unna/v12/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf"},"Cousine":{"700":"http://fonts.gstatic.com/s/cousine/v13/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf","regular":"http://fonts.gstatic.com/s/cousine/v13/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf","italic":"http://fonts.gstatic.com/s/cousine/v13/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf","700italic":"http://fonts.gstatic.com/s/cousine/v13/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf"},"Share Tech Mono":{"regular":"http://fonts.gstatic.com/s/sharetechmono/v8/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf"},"Actor":{"regular":"http://fonts.gstatic.com/s/actor/v8/wEOzEBbCkc5cO3ekXygtUMIO.ttf"},"Arbutus Slab":{"regular":"http://fonts.gstatic.com/s/arbutusslab/v7/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf"},"Homemade Apple":{"regular":"http://fonts.gstatic.com/s/homemadeapple/v9/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf"},"Mitr":{"200":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf","300":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf","500":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf","600":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf","700":"http://fonts.gstatic.com/s/mitr/v4/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf","regular":"http://fonts.gstatic.com/s/mitr/v4/pxiLypw5ucZFyTsyMJj_b1o.ttf"},"Ubuntu Mono":{"700":"http://fonts.gstatic.com/s/ubuntumono/v8/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf","regular":"http://fonts.gstatic.com/s/ubuntumono/v8/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf","italic":"http://fonts.gstatic.com/s/ubuntumono/v8/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf","700italic":"http://fonts.gstatic.com/s/ubuntumono/v8/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf"},"Oleo Script":{"700":"http://fonts.gstatic.com/s/oleoscript/v7/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf","regular":"http://fonts.gstatic.com/s/oleoscript/v7/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf"},"Antic Slab":{"regular":"http://fonts.gstatic.com/s/anticslab/v7/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf"},"Italianno":{"regular":"http://fonts.gstatic.com/s/italianno/v8/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf"},"Covered By Your Grace":{"regular":"http://fonts.gstatic.com/s/coveredbyyourgrace/v8/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf"},"Parisienne":{"regular":"http://fonts.gstatic.com/s/parisienne/v6/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf"},"Lusitana":{"700":"http://fonts.gstatic.com/s/lusitana/v6/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf","regular":"http://fonts.gstatic.com/s/lusitana/v6/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf"},"Molengo":{"regular":"http://fonts.gstatic.com/s/molengo/v9/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf"},"PT Serif Caption":{"regular":"http://fonts.gstatic.com/s/ptserifcaption/v10/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf","italic":"http://fonts.gstatic.com/s/ptserifcaption/v10/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf"},"Marcellus":{"regular":"http://fonts.gstatic.com/s/marcellus/v6/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf"},"Bevan":{"regular":"http://fonts.gstatic.com/s/bevan/v10/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf"},"Khula":{"300":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf","600":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf","700":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf","800":"http://fonts.gstatic.com/s/khula/v4/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf","regular":"http://fonts.gstatic.com/s/khula/v4/OpNCnoEOns3V7FcJpA_chzJ0.ttf"},"Nothing You Could Do":{"regular":"http://fonts.gstatic.com/s/nothingyoucoulddo/v8/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf"},"Baloo":{"regular":"http://fonts.gstatic.com/s/baloo/v4/6xKhdSpJJ92I9PWIAG_5LWwJ.ttf"},"Aldrich":{"regular":"http://fonts.gstatic.com/s/aldrich/v9/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf"},"Cormorant":{"300":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf","500":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf","600":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf","700":"http://fonts.gstatic.com/s/cormorant/v7/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf","300italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf","regular":"http://fonts.gstatic.com/s/cormorant/v7/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf","italic":"http://fonts.gstatic.com/s/cormorant/v7/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf","500italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf","600italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf","700italic":"http://fonts.gstatic.com/s/cormorant/v7/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf"},"Karma":{"300":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf","500":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf","600":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf","700":"http://fonts.gstatic.com/s/karma/v9/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf","regular":"http://fonts.gstatic.com/s/karma/v9/va9I4kzAzMZRGIBvS-J3kbDP.ttf"},"Sawarabi Gothic":{"regular":"http://fonts.gstatic.com/s/sawarabigothic/v7/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf"},"Belleza":{"regular":"http://fonts.gstatic.com/s/belleza/v7/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf"},"Scheherazade":{"700":"http://fonts.gstatic.com/s/scheherazade/v16/YA9Lr0yF4ETZN60keViq1kQYC7yMjt3V_dB0Yw.ttf","regular":"http://fonts.gstatic.com/s/scheherazade/v16/YA9Ur0yF4ETZN60keViq1kQgt5OohvbJ9A.ttf"},"Chewy":{"regular":"http://fonts.gstatic.com/s/chewy/v10/uK_94ruUb-k-wk5xIDMfO-ed.ttf"},"Rubik Mono One":{"regular":"http://fonts.gstatic.com/s/rubikmonoone/v7/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf"},"Jura":{"300":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVW9rdCxo0JTVVPw.ttf","500":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVTdqdCxo0JTVVPw.ttf","600":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVRttdCxo0JTVVPw.ttf","700":"http://fonts.gstatic.com/s/jura/v10/z7NUdRfiaC4VVX9sdCxo0JTVVPw.ttf","regular":"http://fonts.gstatic.com/s/jura/v10/z7NbdRfiaC4VbcNDUCRDzJ0.ttf"},"Cantata One":{"regular":"http://fonts.gstatic.com/s/cantataone/v8/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf"},"Rancho":{"regular":"http://fonts.gstatic.com/s/rancho/v9/46kulbzmXjLaqZRlbWXgd0RY1g.ttf"},"Allerta":{"regular":"http://fonts.gstatic.com/s/allerta/v9/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf"},"Scada":{"700":"http://fonts.gstatic.com/s/scada/v7/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf","regular":"http://fonts.gstatic.com/s/scada/v7/RLpxK5Pv5qumeWJoxzUobkvv.ttf","italic":"http://fonts.gstatic.com/s/scada/v7/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf","700italic":"http://fonts.gstatic.com/s/scada/v7/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf"},"Leckerli One":{"regular":"http://fonts.gstatic.com/s/leckerlione/v9/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf"},"Mr Dafoe":{"regular":"http://fonts.gstatic.com/s/mrdafoe/v7/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf"},"Alex Brush":{"regular":"http://fonts.gstatic.com/s/alexbrush/v10/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf"},"Antic":{"regular":"http://fonts.gstatic.com/s/antic/v10/TuGfUVB8XY5DRaZLodgzydtk.ttf"},"Encode Sans Condensed":{"100":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf","200":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf","300":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf","500":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf","600":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf","700":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf","800":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf","900":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf","regular":"http://fonts.gstatic.com/s/encodesanscondensed/v3/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf"},"Abhaya Libre":{"500":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf","600":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf","700":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf","800":"http://fonts.gstatic.com/s/abhayalibre/v4/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf","regular":"http://fonts.gstatic.com/s/abhayalibre/v4/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf"},"Rambla":{"700":"http://fonts.gstatic.com/s/rambla/v6/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf","regular":"http://fonts.gstatic.com/s/rambla/v6/snfrs0ip98hx6mr0I7IONthkwQ.ttf","italic":"http://fonts.gstatic.com/s/rambla/v6/snfps0ip98hx6mrEIbgKFN10wYKa.ttf","700italic":"http://fonts.gstatic.com/s/rambla/v6/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf"},"Pinyon Script":{"regular":"http://fonts.gstatic.com/s/pinyonscript/v8/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf"},"Lustria":{"regular":"http://fonts.gstatic.com/s/lustria/v6/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf"},"Michroma":{"regular":"http://fonts.gstatic.com/s/michroma/v9/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf"},"Niconne":{"regular":"http://fonts.gstatic.com/s/niconne/v8/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf"},"Sunflower":{"300":"http://fonts.gstatic.com/s/sunflower/v8/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf","500":"http://fonts.gstatic.com/s/sunflower/v8/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf","700":"http://fonts.gstatic.com/s/sunflower/v8/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf"},"Spinnaker":{"regular":"http://fonts.gstatic.com/s/spinnaker/v10/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf"},"Pangolin":{"regular":"http://fonts.gstatic.com/s/pangolin/v4/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf"},"Reenie Beanie":{"regular":"http://fonts.gstatic.com/s/reeniebeanie/v9/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf"},"Radley":{"regular":"http://fonts.gstatic.com/s/radley/v13/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf","italic":"http://fonts.gstatic.com/s/radley/v13/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf"},"Basic":{"regular":"http://fonts.gstatic.com/s/basic/v8/xfu_0WLxV2_XKQN34lDVyR7D.ttf"},"Hanuman":{"700":"http://fonts.gstatic.com/s/hanuman/v12/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/hanuman/v12/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf"},"Average":{"regular":"http://fonts.gstatic.com/s/average/v7/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf"},"Nanum Gothic Coding":{"700":"http://fonts.gstatic.com/s/nanumgothiccoding/v13/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf","regular":"http://fonts.gstatic.com/s/nanumgothiccoding/v13/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf"},"Nobile":{"500":"http://fonts.gstatic.com/s/nobile/v10/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf","700":"http://fonts.gstatic.com/s/nobile/v10/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf","regular":"http://fonts.gstatic.com/s/nobile/v10/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf","italic":"http://fonts.gstatic.com/s/nobile/v10/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf","500italic":"http://fonts.gstatic.com/s/nobile/v10/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf","700italic":"http://fonts.gstatic.com/s/nobile/v10/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf"},"Black Ops One":{"regular":"http://fonts.gstatic.com/s/blackopsone/v10/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf"},"Nanum Pen Script":{"regular":"http://fonts.gstatic.com/s/nanumpenscript/v14/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf"},"Jaldi":{"700":"http://fonts.gstatic.com/s/jaldi/v5/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf","regular":"http://fonts.gstatic.com/s/jaldi/v5/or3sQ67z0_CI30NUZpD_B6g8.ttf"},"Kameron":{"700":"http://fonts.gstatic.com/s/kameron/v9/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf","regular":"http://fonts.gstatic.com/s/kameron/v9/vm82dR7vXErQxuznsL4wL-XIYH8.ttf"},"Fredericka the Great":{"regular":"http://fonts.gstatic.com/s/frederickathegreat/v7/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf"},"Coda":{"800":"http://fonts.gstatic.com/s/coda/v14/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf","regular":"http://fonts.gstatic.com/s/coda/v14/SLXHc1jY5nQ8JUIMapaN39I.ttf"},"M PLUS Rounded 1c":{"100":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf","300":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf","500":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf","700":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf","800":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf","900":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf","regular":"http://fonts.gstatic.com/s/mplusrounded1c/v9/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf"},"Forum":{"regular":"http://fonts.gstatic.com/s/forum/v9/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf"},"Caveat Brush":{"regular":"http://fonts.gstatic.com/s/caveatbrush/v4/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf"},"Lemonada":{"300":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8PindGu2bje-RpH.ttf","600":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8OWm9Gu2bje-RpH.ttf","700":"http://fonts.gstatic.com/s/lemonada/v6/0QIkMXFD9oygTWy_R8PymtGu2bje-RpH.ttf","regular":"http://fonts.gstatic.com/s/lemonada/v6/0QIjMXFD9oygTWy_R_tOtfWm8qTX.ttf"},"IBM Plex Mono":{"100":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf","200":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf","300":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf","500":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf","600":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf","700":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf","regular":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf","italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexmono/v4/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf"},"Lateef":{"regular":"http://fonts.gstatic.com/s/lateef/v14/hESw6XVnNCxEvkbMpheEZo_H_w.ttf"},"Candal":{"regular":"http://fonts.gstatic.com/s/candal/v8/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf"},"Palanquin":{"100":"http://fonts.gstatic.com/s/palanquin/v4/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf","200":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf","300":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf","500":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf","600":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf","700":"http://fonts.gstatic.com/s/palanquin/v4/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf","regular":"http://fonts.gstatic.com/s/palanquin/v4/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf"},"Cabin Sketch":{"700":"http://fonts.gstatic.com/s/cabinsketch/v12/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf","regular":"http://fonts.gstatic.com/s/cabinsketch/v12/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf"},"Syncopate":{"700":"http://fonts.gstatic.com/s/syncopate/v10/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf","regular":"http://fonts.gstatic.com/s/syncopate/v10/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf"},"Cinzel Decorative":{"700":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf","900":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf","regular":"http://fonts.gstatic.com/s/cinzeldecorative/v7/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf"},"Biryani":{"200":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf","300":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf","600":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf","700":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf","800":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf","900":"http://fonts.gstatic.com/s/biryani/v4/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf","regular":"http://fonts.gstatic.com/s/biryani/v4/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf"},"Magra":{"700":"http://fonts.gstatic.com/s/magra/v7/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf","regular":"http://fonts.gstatic.com/s/magra/v7/uK_94ruaZus72k5xIDMfO-ed.ttf"},"Quantico":{"700":"http://fonts.gstatic.com/s/quantico/v8/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf","regular":"http://fonts.gstatic.com/s/quantico/v8/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf","italic":"http://fonts.gstatic.com/s/quantico/v8/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf","700italic":"http://fonts.gstatic.com/s/quantico/v8/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf"},"Electrolize":{"regular":"http://fonts.gstatic.com/s/electrolize/v7/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf"},"Tenor Sans":{"regular":"http://fonts.gstatic.com/s/tenorsans/v10/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf"},"Share":{"700":"http://fonts.gstatic.com/s/share/v9/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf","regular":"http://fonts.gstatic.com/s/share/v9/i7dEIFliZjKNF5VNHLq2cV5d.ttf","italic":"http://fonts.gstatic.com/s/share/v9/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf","700italic":"http://fonts.gstatic.com/s/share/v9/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf"},"Berkshire Swash":{"regular":"http://fonts.gstatic.com/s/berkshireswash/v7/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf"},"Alef":{"700":"http://fonts.gstatic.com/s/alef/v10/FeVQS0NQpLYglo50L5la2bxii28.ttf","regular":"http://fonts.gstatic.com/s/alef/v10/FeVfS0NQpLYgrjJbC5FxxbU.ttf"},"Just Another Hand":{"regular":"http://fonts.gstatic.com/s/justanotherhand/v10/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf"},"Marcellus SC":{"regular":"http://fonts.gstatic.com/s/marcellussc/v6/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf"},"Oranienbaum":{"regular":"http://fonts.gstatic.com/s/oranienbaum/v7/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf"},"Rochester":{"regular":"http://fonts.gstatic.com/s/rochester/v9/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf"},"Coming Soon":{"regular":"http://fonts.gstatic.com/s/comingsoon/v9/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf"},"Overlock":{"700":"http://fonts.gstatic.com/s/overlock/v8/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf","900":"http://fonts.gstatic.com/s/overlock/v8/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf","regular":"http://fonts.gstatic.com/s/overlock/v8/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf","italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf","700italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf","900italic":"http://fonts.gstatic.com/s/overlock/v8/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf"},"Rufina":{"700":"http://fonts.gstatic.com/s/rufina/v6/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf","regular":"http://fonts.gstatic.com/s/rufina/v6/Yq6V-LyURyLy-aKyoxRktOdClg.ttf"},"Annie Use Your Telescope":{"regular":"http://fonts.gstatic.com/s/annieuseyourtelescope/v9/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf"},"Reem Kufi":{"regular":"http://fonts.gstatic.com/s/reemkufi/v6/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf"},"Voltaire":{"regular":"http://fonts.gstatic.com/s/voltaire/v8/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf"},"Lilita One":{"regular":"http://fonts.gstatic.com/s/lilitaone/v6/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf"},"Itim":{"regular":"http://fonts.gstatic.com/s/itim/v3/0nknC9ziJOYewARKkc7ZdwU.ttf"},"Buenard":{"700":"http://fonts.gstatic.com/s/buenard/v10/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf","regular":"http://fonts.gstatic.com/s/buenard/v10/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf"},"Laila":{"300":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf","500":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf","600":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf","700":"http://fonts.gstatic.com/s/laila/v5/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf","regular":"http://fonts.gstatic.com/s/laila/v5/LYjMdG_8nE8jDIRdiidIrEIu.ttf"},"Love Ya Like A Sister":{"regular":"http://fonts.gstatic.com/s/loveyalikeasister/v9/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf"},"Yesteryear":{"regular":"http://fonts.gstatic.com/s/yesteryear/v7/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf"},"Shojumaru":{"regular":"http://fonts.gstatic.com/s/shojumaru/v6/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf"},"Gruppo":{"regular":"http://fonts.gstatic.com/s/gruppo/v9/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf"},"Changa One":{"regular":"http://fonts.gstatic.com/s/changaone/v11/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf","italic":"http://fonts.gstatic.com/s/changaone/v11/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf"},"Encode Sans":{"100":"http://fonts.gstatic.com/s/encodesans/v3/LDI0apOFNxEwR-Bd1O9uYPvIeeLkl7Iw6yg.ttf","200":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPtkWMLOub458jGL.ttf","300":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsAW8LOub458jGL.ttf","500":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPtYWsLOub458jGL.ttf","600":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPt0XcLOub458jGL.ttf","700":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsQXMLOub458jGL.ttf","800":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsMX8LOub458jGL.ttf","900":"http://fonts.gstatic.com/s/encodesans/v3/LDIrapOFNxEwR-Bd1O9uYPsoXsLOub458jGL.ttf","regular":"http://fonts.gstatic.com/s/encodesans/v3/LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw.ttf"},"Arima Madurai":{"100":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf","200":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf","300":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf","500":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf","700":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf","800":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf","900":"http://fonts.gstatic.com/s/arimamadurai/v4/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf","regular":"http://fonts.gstatic.com/s/arimamadurai/v4/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf"},"Slabo 13px":{"regular":"http://fonts.gstatic.com/s/slabo13px/v6/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf"},"Space Mono":{"700":"http://fonts.gstatic.com/s/spacemono/v4/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf","regular":"http://fonts.gstatic.com/s/spacemono/v4/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf","italic":"http://fonts.gstatic.com/s/spacemono/v4/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf","700italic":"http://fonts.gstatic.com/s/spacemono/v4/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf"},"Ovo":{"regular":"http://fonts.gstatic.com/s/ovo/v10/yYLl0h7Wyfzjy4Q5_3WVxA.ttf"},"Knewave":{"regular":"http://fonts.gstatic.com/s/knewave/v7/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"},"Marmelad":{"regular":"http://fonts.gstatic.com/s/marmelad/v8/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf"},"Aclonica":{"regular":"http://fonts.gstatic.com/s/aclonica/v9/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf"},"Bungee":{"regular":"http://fonts.gstatic.com/s/bungee/v4/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf"},"Halant":{"300":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf","500":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf","600":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf","700":"http://fonts.gstatic.com/s/halant/v6/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf","regular":"http://fonts.gstatic.com/s/halant/v6/u-4-0qaujRI2PbsX39Jmky12eg.ttf"},"Fauna One":{"regular":"http://fonts.gstatic.com/s/faunaone/v6/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf"},"Squada One":{"regular":"http://fonts.gstatic.com/s/squadaone/v7/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf"},"Grand Hotel":{"regular":"http://fonts.gstatic.com/s/grandhotel/v6/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf"},"Saira Condensed":{"100":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf","200":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf","300":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf","500":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf","600":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf","700":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf","800":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf","900":"http://fonts.gstatic.com/s/sairacondensed/v4/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf","regular":"http://fonts.gstatic.com/s/sairacondensed/v4/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf"},"Prosto One":{"regular":"http://fonts.gstatic.com/s/prostoone/v7/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf"},"Sarabun":{"100":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf","200":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf","300":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf","500":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf","600":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf","700":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf","800":"http://fonts.gstatic.com/s/sarabun/v6/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf","100italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf","200italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf","300italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf","regular":"http://fonts.gstatic.com/s/sarabun/v6/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf","italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf","500italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf","600italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf","700italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf","800italic":"http://fonts.gstatic.com/s/sarabun/v6/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf"},"Carme":{"regular":"http://fonts.gstatic.com/s/carme/v9/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf"},"Martel Sans":{"200":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf","300":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf","600":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf","700":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf","800":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf","900":"http://fonts.gstatic.com/s/martelsans/v5/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf","regular":"http://fonts.gstatic.com/s/martelsans/v5/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf"},"Anonymous Pro":{"700":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf","regular":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf","italic":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf","700italic":"http://fonts.gstatic.com/s/anonymouspro/v12/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf"},"Tulpen One":{"regular":"http://fonts.gstatic.com/s/tulpenone/v8/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf"},"Markazi Text":{"500":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf","600":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf","700":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf","regular":"http://fonts.gstatic.com/s/markazitext/v5/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf"},"Marvel":{"700":"http://fonts.gstatic.com/s/marvel/v8/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf","regular":"http://fonts.gstatic.com/s/marvel/v8/nwpVtKeoNgBV0qaIkV7ED366zg.ttf","italic":"http://fonts.gstatic.com/s/marvel/v8/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf","700italic":"http://fonts.gstatic.com/s/marvel/v8/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf"},"Cambo":{"regular":"http://fonts.gstatic.com/s/cambo/v7/IFSqHeNEk8FJk416ok7xkPm8.ttf"},"Alegreya SC":{"500":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf","700":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf","800":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf","900":"http://fonts.gstatic.com/s/alegreyasc/v10/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf","regular":"http://fonts.gstatic.com/s/alegreyasc/v10/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf","italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf","500italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf","700italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf","800italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf","900italic":"http://fonts.gstatic.com/s/alegreyasc/v10/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf"},"Nanum Brush Script":{"regular":"http://fonts.gstatic.com/s/nanumbrushscript/v16/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf"},"Coda Caption":{"800":"http://fonts.gstatic.com/s/codacaption/v12/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf"},"Telex":{"regular":"http://fonts.gstatic.com/s/telex/v7/ieVw2Y1fKWmIO9fTB1piKFIf.ttf"},"Petit Formal Script":{"regular":"http://fonts.gstatic.com/s/petitformalscript/v6/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf"},"Lekton":{"700":"http://fonts.gstatic.com/s/lekton/v9/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf","regular":"http://fonts.gstatic.com/s/lekton/v9/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf","italic":"http://fonts.gstatic.com/s/lekton/v9/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf"},"Jockey One":{"regular":"http://fonts.gstatic.com/s/jockeyone/v8/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf"},"Raleway Dots":{"regular":"http://fonts.gstatic.com/s/ralewaydots/v6/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf"},"Fira Mono":{"500":"http://fonts.gstatic.com/s/firamono/v7/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf","700":"http://fonts.gstatic.com/s/firamono/v7/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf","regular":"http://fonts.gstatic.com/s/firamono/v7/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf"},"Shrikhand":{"regular":"http://fonts.gstatic.com/s/shrikhand/v4/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf"},"Trirong":{"100":"http://fonts.gstatic.com/s/trirong/v4/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf","200":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf","300":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf","500":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf","600":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf","700":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf","800":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf","900":"http://fonts.gstatic.com/s/trirong/v4/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf","100italic":"http://fonts.gstatic.com/s/trirong/v4/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf","200italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf","300italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf","regular":"http://fonts.gstatic.com/s/trirong/v4/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf","italic":"http://fonts.gstatic.com/s/trirong/v4/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf","500italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf","600italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf","700italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf","800italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf","900italic":"http://fonts.gstatic.com/s/trirong/v4/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf"},"Arizonia":{"regular":"http://fonts.gstatic.com/s/arizonia/v9/neIIzCemt4A5qa7mv6WGHK06UY30.ttf"},"Mada":{"200":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf","300":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf","500":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf","600":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf","700":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf","900":"http://fonts.gstatic.com/s/mada/v7/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf","regular":"http://fonts.gstatic.com/s/mada/v7/7Auwp_0qnzeSTTXMLCrX0kU.ttf"},"Racing Sans One":{"regular":"http://fonts.gstatic.com/s/racingsansone/v6/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf"},"Yeseva One":{"regular":"http://fonts.gstatic.com/s/yesevaone/v13/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf"},"GFS Didot":{"regular":"http://fonts.gstatic.com/s/gfsdidot/v8/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf"},"VT323":{"regular":"http://fonts.gstatic.com/s/vt323/v10/pxiKyp0ihIEF2hsYHpT2dkNE.ttf"},"Bungee Inline":{"regular":"http://fonts.gstatic.com/s/bungeeinline/v4/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf"},"Gilda Display":{"regular":"http://fonts.gstatic.com/s/gildadisplay/v6/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf"},"Nixie One":{"regular":"http://fonts.gstatic.com/s/nixieone/v9/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf"},"Carrois Gothic":{"regular":"http://fonts.gstatic.com/s/carroisgothic/v9/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf"},"Oxygen Mono":{"regular":"http://fonts.gstatic.com/s/oxygenmono/v6/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf"},"Patrick Hand SC":{"regular":"http://fonts.gstatic.com/s/patrickhandsc/v6/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf"},"Contrail One":{"regular":"http://fonts.gstatic.com/s/contrailone/v8/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf"},"Copse":{"regular":"http://fonts.gstatic.com/s/copse/v8/11hPGpDKz1rGb0djHkihUb-A.ttf"},"Arsenal":{"700":"http://fonts.gstatic.com/s/arsenal/v3/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf","regular":"http://fonts.gstatic.com/s/arsenal/v3/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf","italic":"http://fonts.gstatic.com/s/arsenal/v3/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf","700italic":"http://fonts.gstatic.com/s/arsenal/v3/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf"},"Merienda One":{"regular":"http://fonts.gstatic.com/s/meriendaone/v9/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf"},"Eczar":{"500":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf","600":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf","700":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf","800":"http://fonts.gstatic.com/s/eczar/v7/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf","regular":"http://fonts.gstatic.com/s/eczar/v7/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf"},"Coustard":{"900":"http://fonts.gstatic.com/s/coustard/v9/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf","regular":"http://fonts.gstatic.com/s/coustard/v9/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf"},"IM Fell English SC":{"regular":"http://fonts.gstatic.com/s/imfellenglishsc/v8/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf"},"Kosugi Maru":{"regular":"http://fonts.gstatic.com/s/kosugimaru/v5/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf"},"Rosario":{"700":"http://fonts.gstatic.com/s/rosario/v13/xfu00WDhWW_fOEoY0OjY6AbouLfbK64.ttf","regular":"http://fonts.gstatic.com/s/rosario/v13/xfux0WDhWW_fOEoY6FT3zA7DpL4.ttf","italic":"http://fonts.gstatic.com/s/rosario/v13/xfuz0WDhWW_fOEoY2Fb9yCzGtL7CMg.ttf","700italic":"http://fonts.gstatic.com/s/rosario/v13/xfu20WDhWW_fOEoY2FbFdAPivJXeO67ISw.ttf"},"Baloo Bhaina":{"regular":"http://fonts.gstatic.com/s/baloobhaina/v4/Noa16Uzzzp2FIkfhq5vm9thxPAR9mhHobg.ttf"},"Titan One":{"regular":"http://fonts.gstatic.com/s/titanone/v6/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf"},"Londrina Solid":{"100":"http://fonts.gstatic.com/s/londrinasolid/v8/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf","300":"http://fonts.gstatic.com/s/londrinasolid/v8/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf","900":"http://fonts.gstatic.com/s/londrinasolid/v8/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf","regular":"http://fonts.gstatic.com/s/londrinasolid/v8/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf"},"Metrophobic":{"regular":"http://fonts.gstatic.com/s/metrophobic/v11/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf"},"Pompiere":{"regular":"http://fonts.gstatic.com/s/pompiere/v8/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf"},"Ceviche One":{"regular":"http://fonts.gstatic.com/s/cevicheone/v9/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf"},"Suranna":{"regular":"http://fonts.gstatic.com/s/suranna/v6/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf"},"Norican":{"regular":"http://fonts.gstatic.com/s/norican/v7/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf"},"Allan":{"700":"http://fonts.gstatic.com/s/allan/v11/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf","regular":"http://fonts.gstatic.com/s/allan/v11/ea8XadU7WuTxEtb2P9SF8nZE.ttf"},"Freckle Face":{"regular":"http://fonts.gstatic.com/s/freckleface/v7/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf"},"Calligraffitti":{"regular":"http://fonts.gstatic.com/s/calligraffitti/v10/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf"},"Mr De Haviland":{"regular":"http://fonts.gstatic.com/s/mrdehaviland/v7/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf"},"Bowlby One SC":{"regular":"http://fonts.gstatic.com/s/bowlbyonesc/v10/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf"},"Aladin":{"regular":"http://fonts.gstatic.com/s/aladin/v7/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf"},"Bubblegum Sans":{"regular":"http://fonts.gstatic.com/s/bubblegumsans/v7/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf"},"Goudy Bookletter 1911":{"regular":"http://fonts.gstatic.com/s/goudybookletter1911/v8/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf"},"Herr Von Muellerhoff":{"regular":"http://fonts.gstatic.com/s/herrvonmuellerhoff/v8/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf"},"Caudex":{"700":"http://fonts.gstatic.com/s/caudex/v8/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf","regular":"http://fonts.gstatic.com/s/caudex/v8/esDQ311QOP6BJUrIyviAnb4eEw.ttf","italic":"http://fonts.gstatic.com/s/caudex/v8/esDS311QOP6BJUr4yPKEv7sOE4in.ttf","700italic":"http://fonts.gstatic.com/s/caudex/v8/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf"},"Delius":{"regular":"http://fonts.gstatic.com/s/delius/v8/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf"},"Noto Serif SC":{"200":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf","300":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf","500":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf","600":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf","700":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf","900":"http://fonts.gstatic.com/s/notoserifsc/v5/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf","regular":"http://fonts.gstatic.com/s/notoserifsc/v5/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf"},"Homenaje":{"regular":"http://fonts.gstatic.com/s/homenaje/v8/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf"},"Sue Ellen Francisco":{"regular":"http://fonts.gstatic.com/s/sueellenfrancisco/v9/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf"},"Mukta Malar":{"200":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf","300":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf","500":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf","600":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf","700":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf","800":"http://fonts.gstatic.com/s/muktamalar/v5/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf","regular":"http://fonts.gstatic.com/s/muktamalar/v5/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf"},"Judson":{"700":"http://fonts.gstatic.com/s/judson/v11/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf","regular":"http://fonts.gstatic.com/s/judson/v11/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf","italic":"http://fonts.gstatic.com/s/judson/v11/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf"},"Graduate":{"regular":"http://fonts.gstatic.com/s/graduate/v6/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf"},"Niramit":{"200":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf","300":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf","500":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf","600":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf","700":"http://fonts.gstatic.com/s/niramit/v3/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf","200italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf","300italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf","regular":"http://fonts.gstatic.com/s/niramit/v3/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf","italic":"http://fonts.gstatic.com/s/niramit/v3/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf","500italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf","600italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf","700italic":"http://fonts.gstatic.com/s/niramit/v3/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf"},"Pattaya":{"regular":"http://fonts.gstatic.com/s/pattaya/v4/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf"},"Maitree":{"200":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf","300":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf","500":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf","600":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf","700":"http://fonts.gstatic.com/s/maitree/v3/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf","regular":"http://fonts.gstatic.com/s/maitree/v3/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf"},"Kelly Slab":{"regular":"http://fonts.gstatic.com/s/kellyslab/v9/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf"},"Doppio One":{"regular":"http://fonts.gstatic.com/s/doppioone/v6/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf"},"Give You Glory":{"regular":"http://fonts.gstatic.com/s/giveyouglory/v8/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf"},"Capriola":{"regular":"http://fonts.gstatic.com/s/capriola/v6/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf"},"Suez One":{"regular":"http://fonts.gstatic.com/s/suezone/v3/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf"},"Happy Monkey":{"regular":"http://fonts.gstatic.com/s/happymonkey/v7/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf"},"Encode Sans Expanded":{"100":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf","200":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf","300":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf","500":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf","600":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf","700":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf","800":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf","900":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf","regular":"http://fonts.gstatic.com/s/encodesansexpanded/v3/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf"},"Puritan":{"700":"http://fonts.gstatic.com/s/puritan/v10/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf","regular":"http://fonts.gstatic.com/s/puritan/v10/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf","italic":"http://fonts.gstatic.com/s/puritan/v10/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf","700italic":"http://fonts.gstatic.com/s/puritan/v10/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf"},"Tauri":{"regular":"http://fonts.gstatic.com/s/tauri/v7/TwMA-IISS0AM3IpVWHU_TBqO.ttf"},"Do Hyeon":{"regular":"http://fonts.gstatic.com/s/dohyeon/v10/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf"},"Mali":{"200":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf","300":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf","500":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf","600":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf","700":"http://fonts.gstatic.com/s/mali/v2/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf","200italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf","300italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf","regular":"http://fonts.gstatic.com/s/mali/v2/N0ba2SRONuN4eCrODlxxOd8.ttf","italic":"http://fonts.gstatic.com/s/mali/v2/N0bU2SRONuN4SCjECn50Kd_PmA.ttf","500italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf","600italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf","700italic":"http://fonts.gstatic.com/s/mali/v2/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf"},"Trocchi":{"regular":"http://fonts.gstatic.com/s/trocchi/v7/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf"},"Balthazar":{"regular":"http://fonts.gstatic.com/s/balthazar/v8/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf"},"Duru Sans":{"regular":"http://fonts.gstatic.com/s/durusans/v12/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf"},"Noto Serif KR":{"200":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf","300":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf","500":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf","600":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf","700":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf","900":"http://fonts.gstatic.com/s/notoserifkr/v5/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf","regular":"http://fonts.gstatic.com/s/notoserifkr/v5/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf"},"IM Fell Double Pica":{"regular":"http://fonts.gstatic.com/s/imfelldoublepica/v8/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf","italic":"http://fonts.gstatic.com/s/imfelldoublepica/v8/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf"},"Cutive":{"regular":"http://fonts.gstatic.com/s/cutive/v10/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf"},"Emilys Candy":{"regular":"http://fonts.gstatic.com/s/emilyscandy/v6/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf"},"Cambay":{"700":"http://fonts.gstatic.com/s/cambay/v5/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf","regular":"http://fonts.gstatic.com/s/cambay/v5/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf","italic":"http://fonts.gstatic.com/s/cambay/v5/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf","700italic":"http://fonts.gstatic.com/s/cambay/v5/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf"},"Miriam Libre":{"700":"http://fonts.gstatic.com/s/miriamlibre/v5/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf","regular":"http://fonts.gstatic.com/s/miriamlibre/v5/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf"},"Secular One":{"regular":"http://fonts.gstatic.com/s/secularone/v3/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf"},"Faster One":{"regular":"http://fonts.gstatic.com/s/fasterone/v10/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf"},"Palanquin Dark":{"500":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf","600":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf","700":"http://fonts.gstatic.com/s/palanquindark/v5/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf","regular":"http://fonts.gstatic.com/s/palanquindark/v5/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf"},"Black Han Sans":{"regular":"http://fonts.gstatic.com/s/blackhansans/v7/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf"},"Kristi":{"regular":"http://fonts.gstatic.com/s/kristi/v10/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf"},"Average Sans":{"regular":"http://fonts.gstatic.com/s/averagesans/v7/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf"},"Wendy One":{"regular":"http://fonts.gstatic.com/s/wendyone/v7/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf"},"Rye":{"regular":"http://fonts.gstatic.com/s/rye/v6/r05XGLJT86YDFpTsXOqx4w.ttf"},"Andada":{"regular":"http://fonts.gstatic.com/s/andada/v10/uK_y4riWaego3w9RCh0TMv6EXw.ttf"},"Averia Serif Libre":{"300":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf","700":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf","300italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf","regular":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf","italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf","700italic":"http://fonts.gstatic.com/s/averiaseriflibre/v8/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf"},"Baloo Bhaijaan":{"regular":"http://fonts.gstatic.com/s/baloobhaijaan/v5/RWmRoKCU5fcqq8fOWNzFLqSjx4ECJmVjC0-V.ttf"},"Athiti":{"200":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf","300":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf","500":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf","600":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf","700":"http://fonts.gstatic.com/s/athiti/v3/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf","regular":"http://fonts.gstatic.com/s/athiti/v3/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf"},"Chonburi":{"regular":"http://fonts.gstatic.com/s/chonburi/v3/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf"},"Gabriela":{"regular":"http://fonts.gstatic.com/s/gabriela/v7/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf"},"Alike":{"regular":"http://fonts.gstatic.com/s/alike/v11/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf"},"Cedarville Cursive":{"regular":"http://fonts.gstatic.com/s/cedarvillecursive/v10/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf"},"Rozha One":{"regular":"http://fonts.gstatic.com/s/rozhaone/v6/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf"},"Bai Jamjuree":{"200":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf","300":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf","500":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf","600":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf","700":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf","200italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf","300italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf","regular":"http://fonts.gstatic.com/s/baijamjuree/v2/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf","italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf","500italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf","600italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf","700italic":"http://fonts.gstatic.com/s/baijamjuree/v2/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf"},"Six Caps":{"regular":"http://fonts.gstatic.com/s/sixcaps/v9/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf"},"Poller One":{"regular":"http://fonts.gstatic.com/s/pollerone/v8/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf"},"Anaheim":{"regular":"http://fonts.gstatic.com/s/anaheim/v6/8vII7w042Wp87g4G0UTUEE5eK_w.ttf"},"Corben":{"700":"http://fonts.gstatic.com/s/corben/v12/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf","regular":"http://fonts.gstatic.com/s/corben/v12/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf"},"Carrois Gothic SC":{"regular":"http://fonts.gstatic.com/s/carroisgothicsc/v8/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf"},"Chelsea Market":{"regular":"http://fonts.gstatic.com/s/chelseamarket/v6/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf"},"Bentham":{"regular":"http://fonts.gstatic.com/s/bentham/v9/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf"},"Mukta Vaani":{"200":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf","300":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf","500":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf","600":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf","700":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf","800":"http://fonts.gstatic.com/s/muktavaani/v6/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf","regular":"http://fonts.gstatic.com/s/muktavaani/v6/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf"},"Sriracha":{"regular":"http://fonts.gstatic.com/s/sriracha/v3/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf"},"Skranji":{"700":"http://fonts.gstatic.com/s/skranji/v6/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf","regular":"http://fonts.gstatic.com/s/skranji/v6/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf"},"Mate":{"regular":"http://fonts.gstatic.com/s/mate/v7/m8JdjftRd7WZ2z28WoXSaLU.ttf","italic":"http://fonts.gstatic.com/s/mate/v7/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf"},"Seaweed Script":{"regular":"http://fonts.gstatic.com/s/seaweedscript/v6/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf"},"Convergence":{"regular":"http://fonts.gstatic.com/s/convergence/v7/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf"},"Qwigley":{"regular":"http://fonts.gstatic.com/s/qwigley/v8/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf"},"Oregano":{"regular":"http://fonts.gstatic.com/s/oregano/v6/If2IXTPxciS3H4S2kZffPznO3yM.ttf","italic":"http://fonts.gstatic.com/s/oregano/v6/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf"},"IM Fell DW Pica":{"regular":"http://fonts.gstatic.com/s/imfelldwpica/v8/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf","italic":"http://fonts.gstatic.com/s/imfelldwpica/v8/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf"},"Lily Script One":{"regular":"http://fonts.gstatic.com/s/lilyscriptone/v6/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf"},"Poly":{"regular":"http://fonts.gstatic.com/s/poly/v9/MQpb-W6wKNitRLCAq2Lpris.ttf","italic":"http://fonts.gstatic.com/s/poly/v9/MQpV-W6wKNitdLKKr0DsviuGWA.ttf"},"Amiko":{"600":"http://fonts.gstatic.com/s/amiko/v3/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf","700":"http://fonts.gstatic.com/s/amiko/v3/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf","regular":"http://fonts.gstatic.com/s/amiko/v3/WwkQxPq1DFK04tqlc17MMZgJ.ttf"},"Montez":{"regular":"http://fonts.gstatic.com/s/montez/v9/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf"},"Faustina":{"500":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVdMPulCjHMmTGFt.ttf","600":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVdgOelCjHMmTGFt.ttf","700":"http://fonts.gstatic.com/s/faustina/v3/XLYiIZPxYpJfTbZAFVcEOOlCjHMmTGFt.ttf","regular":"http://fonts.gstatic.com/s/faustina/v3/XLYlIZPxYpJfTbZAFW-4F81Kp28v.ttf","italic":"http://fonts.gstatic.com/s/faustina/v3/XLYjIZPxYpJfTbZAFV-6Hcloon8vVXg.ttf","500italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JT1BhncESXFtUsM.ttf","600italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JRFGhncESXFtUsM.ttf","700italic":"http://fonts.gstatic.com/s/faustina/v3/XLYgIZPxYpJfTbZAFV-6JXVHhncESXFtUsM.ttf"},"Federo":{"regular":"http://fonts.gstatic.com/s/federo/v10/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf"},"IM Fell English":{"regular":"http://fonts.gstatic.com/s/imfellenglish/v8/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf","italic":"http://fonts.gstatic.com/s/imfellenglish/v8/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf"},"Rouge Script":{"regular":"http://fonts.gstatic.com/s/rougescript/v7/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf"},"Baloo Bhai":{"regular":"http://fonts.gstatic.com/s/baloobhai/v4/ZgNWjP5GM7bCUdmXgWyVjGXEM4COoE4.ttf"},"Fanwood Text":{"regular":"http://fonts.gstatic.com/s/fanwoodtext/v8/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf","italic":"http://fonts.gstatic.com/s/fanwoodtext/v8/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf"},"Artifika":{"regular":"http://fonts.gstatic.com/s/artifika/v9/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf"},"Cormorant Infant":{"300":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf","500":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf","600":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf","700":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf","300italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf","regular":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf","italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf","500italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf","600italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf","700italic":"http://fonts.gstatic.com/s/cormorantinfant/v7/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf"},"Hanalei Fill":{"regular":"http://fonts.gstatic.com/s/hanaleifill/v7/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf"},"Inder":{"regular":"http://fonts.gstatic.com/s/inder/v7/w8gUH2YoQe8_4vq6pw-P3U4O.ttf"},"Encode Sans Semi Expanded":{"100":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf","300":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf","500":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf","600":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf","700":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf","800":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf","900":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemiexpanded/v4/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf"},"Short Stack":{"regular":"http://fonts.gstatic.com/s/shortstack/v8/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf"},"Proza Libre":{"500":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf","600":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf","700":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf","800":"http://fonts.gstatic.com/s/prozalibre/v3/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf","regular":"http://fonts.gstatic.com/s/prozalibre/v3/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf","italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf","500italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf","600italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf","700italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf","800italic":"http://fonts.gstatic.com/s/prozalibre/v3/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf"},"Vesper Libre":{"500":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf","700":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf","900":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf","regular":"http://fonts.gstatic.com/s/vesperlibre/v10/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf"},"Rationale":{"regular":"http://fonts.gstatic.com/s/rationale/v10/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf"},"Ramabhadra":{"regular":"http://fonts.gstatic.com/s/ramabhadra/v8/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf"},"Andika":{"regular":"http://fonts.gstatic.com/s/andika/v10/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf"},"Gravitas One":{"regular":"http://fonts.gstatic.com/s/gravitasone/v8/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf"},"Rammetto One":{"regular":"http://fonts.gstatic.com/s/rammettoone/v7/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf"},"Mirza":{"500":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtIpAeO4mafBomDi.ttf","600":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtIFBuO4mafBomDi.ttf","700":"http://fonts.gstatic.com/s/mirza/v6/co3FmWlikiN5EtJhB-O4mafBomDi.ttf","regular":"http://fonts.gstatic.com/s/mirza/v6/co3ImWlikiN5EurdKMewsrvI.ttf"},"Crafty Girls":{"regular":"http://fonts.gstatic.com/s/craftygirls/v8/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf"},"Baumans":{"regular":"http://fonts.gstatic.com/s/baumans/v8/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf"},"Overpass Mono":{"300":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf","600":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf","700":"http://fonts.gstatic.com/s/overpassmono/v4/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf","regular":"http://fonts.gstatic.com/s/overpassmono/v4/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf"},"Cormorant SC":{"300":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf","500":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf","600":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf","700":"http://fonts.gstatic.com/s/cormorantsc/v7/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf","regular":"http://fonts.gstatic.com/s/cormorantsc/v7/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf"},"Bilbo Swash Caps":{"regular":"http://fonts.gstatic.com/s/bilboswashcaps/v11/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf"},"Denk One":{"regular":"http://fonts.gstatic.com/s/denkone/v6/dg4m_pzhrqcFb2IzROtHpbglShon.ttf"},"Fondamento":{"regular":"http://fonts.gstatic.com/s/fondamento/v9/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf","italic":"http://fonts.gstatic.com/s/fondamento/v9/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf"},"La Belle Aurore":{"regular":"http://fonts.gstatic.com/s/labelleaurore/v9/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf"},"Clicker Script":{"regular":"http://fonts.gstatic.com/s/clickerscript/v6/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf"},"Amethysta":{"regular":"http://fonts.gstatic.com/s/amethysta/v7/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf"},"Limelight":{"regular":"http://fonts.gstatic.com/s/limelight/v9/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf"},"Stardos Stencil":{"700":"http://fonts.gstatic.com/s/stardosstencil/v8/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf","regular":"http://fonts.gstatic.com/s/stardosstencil/v8/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf"},"Walter Turncoat":{"regular":"http://fonts.gstatic.com/s/walterturncoat/v9/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf"},"Unkempt":{"700":"http://fonts.gstatic.com/s/unkempt/v10/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf","regular":"http://fonts.gstatic.com/s/unkempt/v10/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf"},"Gurajada":{"regular":"http://fonts.gstatic.com/s/gurajada/v6/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf"},"Vast Shadow":{"regular":"http://fonts.gstatic.com/s/vastshadow/v8/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf"},"Kadwa":{"700":"http://fonts.gstatic.com/s/kadwa/v3/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/kadwa/v3/rnCm-x5V0g7iphTHRcc2s2XH.ttf"},"Iceland":{"regular":"http://fonts.gstatic.com/s/iceland/v7/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf"},"Mallanna":{"regular":"http://fonts.gstatic.com/s/mallanna/v6/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf"},"Quando":{"regular":"http://fonts.gstatic.com/s/quando/v7/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf"},"Battambang":{"700":"http://fonts.gstatic.com/s/battambang/v12/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf","regular":"http://fonts.gstatic.com/s/battambang/v12/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf"},"Sniglet":{"800":"http://fonts.gstatic.com/s/sniglet/v10/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf","regular":"http://fonts.gstatic.com/s/sniglet/v10/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf"},"Oleo Script Swash Caps":{"700":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v6/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf","regular":"http://fonts.gstatic.com/s/oleoscriptswashcaps/v6/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf"},"Meddon":{"regular":"http://fonts.gstatic.com/s/meddon/v11/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf"},"Expletus Sans":{"500":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6kFUHPIFaU.ttf","600":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6kFUHPIFaU.ttf","700":"http://fonts.gstatic.com/s/expletussans/v12/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6kFUHPIFaU.ttf","regular":"http://fonts.gstatic.com/s/expletussans/v12/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf","italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpnK5v5_bqufTYdnhFzDj2ddfsYv4MrXHrRDA.ttf","500italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVFHNBaVImA.ttf","600italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVFHNBaVImA.ttf","700italic":"http://fonts.gstatic.com/s/expletussans/v12/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVFHNBaVImA.ttf"},"Wallpoet":{"regular":"http://fonts.gstatic.com/s/wallpoet/v10/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf"},"Sansita":{"700":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf","800":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf","900":"http://fonts.gstatic.com/s/sansita/v3/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf","regular":"http://fonts.gstatic.com/s/sansita/v3/QldONTRRphEb_-V7HBm7TXFf3qw.ttf","italic":"http://fonts.gstatic.com/s/sansita/v3/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf","700italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf","800italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf","900italic":"http://fonts.gstatic.com/s/sansita/v3/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf"},"UnifrakturMaguntia":{"regular":"http://fonts.gstatic.com/s/unifrakturmaguntia/v9/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf"},"Galada":{"regular":"http://fonts.gstatic.com/s/galada/v4/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf"},"Wire One":{"regular":"http://fonts.gstatic.com/s/wireone/v9/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf"},"Kotta One":{"regular":"http://fonts.gstatic.com/s/kottaone/v6/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf"},"Podkova":{"500":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYGrQAoqKAyLzfWo.ttf","600":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYEbXAoqKAyLzfWo.ttf","700":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYCLWAoqKAyLzfWo.ttf","800":"http://fonts.gstatic.com/s/podkova/v12/K2F0fZ1EmftJSV9VYD7VAoqKAyLzfWo.ttf","regular":"http://fonts.gstatic.com/s/podkova/v12/K2FxfZ1EmftJSV9VWJ75JoKhHys.ttf"},"Gafata":{"regular":"http://fonts.gstatic.com/s/gafata/v7/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf"},"Loved by the King":{"regular":"http://fonts.gstatic.com/s/lovedbytheking/v8/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf"},"Aguafina Script":{"regular":"http://fonts.gstatic.com/s/aguafinascript/v7/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf"},"Brawler":{"regular":"http://fonts.gstatic.com/s/brawler/v9/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf"},"Spicy Rice":{"regular":"http://fonts.gstatic.com/s/spicyrice/v7/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf"},"Mouse Memoirs":{"regular":"http://fonts.gstatic.com/s/mousememoirs/v6/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf"},"Noto Serif TC":{"200":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf","300":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf","500":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf","600":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf","700":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf","900":"http://fonts.gstatic.com/s/notoseriftc/v5/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf","regular":"http://fonts.gstatic.com/s/notoseriftc/v5/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf"},"Zeyada":{"regular":"http://fonts.gstatic.com/s/zeyada/v8/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf"},"Sofia":{"regular":"http://fonts.gstatic.com/s/sofia/v7/8QIHdirahM3j_vu-sowsrqjk.ttf"},"Prociono":{"regular":"http://fonts.gstatic.com/s/prociono/v8/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf"},"Waiting for the Sunrise":{"regular":"http://fonts.gstatic.com/s/waitingforthesunrise/v9/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf"},"Scope One":{"regular":"http://fonts.gstatic.com/s/scopeone/v5/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf"},"Bellefair":{"regular":"http://fonts.gstatic.com/s/bellefair/v4/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf"},"The Girl Next Door":{"regular":"http://fonts.gstatic.com/s/thegirlnextdoor/v9/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf"},"Harmattan":{"regular":"http://fonts.gstatic.com/s/harmattan/v5/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf"},"Padauk":{"700":"http://fonts.gstatic.com/s/padauk/v5/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf","regular":"http://fonts.gstatic.com/s/padauk/v5/RrQRboJg-id7OnbBa0_g3LlYbg.ttf"},"Strait":{"regular":"http://fonts.gstatic.com/s/strait/v6/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf"},"Mako":{"regular":"http://fonts.gstatic.com/s/mako/v10/H4coBX6Mmc_Z0ST09g478Lo.ttf"},"IBM Plex Sans Condensed":{"100":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf","200":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf","300":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf","500":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf","600":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf","700":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf","100italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf","200italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf","300italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf","regular":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf","italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf","500italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf","600italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf","700italic":"http://fonts.gstatic.com/s/ibmplexsanscondensed/v5/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf"},"Megrim":{"regular":"http://fonts.gstatic.com/s/megrim/v9/46kulbz5WjvLqJZlbWXgd0RY1g.ttf"},"Lemon":{"regular":"http://fonts.gstatic.com/s/lemon/v7/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf"},"Bungee Shade":{"regular":"http://fonts.gstatic.com/s/bungeeshade/v4/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf"},"Bowlby One":{"regular":"http://fonts.gstatic.com/s/bowlbyone/v10/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf"},"Kurale":{"regular":"http://fonts.gstatic.com/s/kurale/v4/4iCs6KV9e9dXjho6eAT3v02QFg.ttf"},"Orienta":{"regular":"http://fonts.gstatic.com/s/orienta/v6/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf"},"McLaren":{"regular":"http://fonts.gstatic.com/s/mclaren/v6/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf"},"Baloo Paaji":{"regular":"http://fonts.gstatic.com/s/baloopaaji/v5/8AttGsyxM5KQQU-Y4MTwVZnToxvQBiot.ttf"},"Belgrano":{"regular":"http://fonts.gstatic.com/s/belgrano/v9/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf"},"Euphoria Script":{"regular":"http://fonts.gstatic.com/s/euphoriascript/v7/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf"},"Vampiro One":{"regular":"http://fonts.gstatic.com/s/vampiroone/v9/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf"},"Medula One":{"regular":"http://fonts.gstatic.com/s/medulaone/v8/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf"},"Amita":{"700":"http://fonts.gstatic.com/s/amita/v4/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf","regular":"http://fonts.gstatic.com/s/amita/v4/HhyaU5si9Om7PQlvAfSKEZZL.ttf"},"Just Me Again Down Here":{"regular":"http://fonts.gstatic.com/s/justmeagaindownhere/v10/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf"},"Vibur":{"regular":"http://fonts.gstatic.com/s/vibur/v9/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf"},"Italiana":{"regular":"http://fonts.gstatic.com/s/italiana/v7/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf"},"Delius Swash Caps":{"regular":"http://fonts.gstatic.com/s/deliusswashcaps/v10/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf"},"Tienne":{"700":"http://fonts.gstatic.com/s/tienne/v11/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf","900":"http://fonts.gstatic.com/s/tienne/v11/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf","regular":"http://fonts.gstatic.com/s/tienne/v11/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf"},"Mandali":{"regular":"http://fonts.gstatic.com/s/mandali/v7/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf"},"Chakra Petch":{"300":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf","500":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf","600":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf","700":"http://fonts.gstatic.com/s/chakrapetch/v2/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf","300italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf","regular":"http://fonts.gstatic.com/s/chakrapetch/v2/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf","italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf","500italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf","600italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf","700italic":"http://fonts.gstatic.com/s/chakrapetch/v2/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf"},"Spectral SC":{"200":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf","300":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf","500":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf","600":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf","700":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf","800":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf","200italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf","300italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf","regular":"http://fonts.gstatic.com/s/spectralsc/v4/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf","italic":"http://fonts.gstatic.com/s/spectralsc/v4/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf","500italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf","600italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf","700italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf","800italic":"http://fonts.gstatic.com/s/spectralsc/v4/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf"},"Averia Libre":{"300":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf","700":"http://fonts.gstatic.com/s/averialibre/v7/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf","300italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf","regular":"http://fonts.gstatic.com/s/averialibre/v7/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf","italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf","700italic":"http://fonts.gstatic.com/s/averialibre/v7/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf"},"Quintessential":{"regular":"http://fonts.gstatic.com/s/quintessential/v6/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf"},"Katibeh":{"regular":"http://fonts.gstatic.com/s/katibeh/v6/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf"},"Finger Paint":{"regular":"http://fonts.gstatic.com/s/fingerpaint/v8/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf"},"Cantora One":{"regular":"http://fonts.gstatic.com/s/cantoraone/v8/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf"},"Arya":{"700":"http://fonts.gstatic.com/s/arya/v4/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf","regular":"http://fonts.gstatic.com/s/arya/v4/ga6CawNG-HJd9Ub1-beqdFE.ttf"},"Fresca":{"regular":"http://fonts.gstatic.com/s/fresca/v7/6ae94K--SKgCzbM2Gr0W13DKPA.ttf"},"Libre Barcode 39":{"regular":"http://fonts.gstatic.com/s/librebarcode39/v8/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf"},"Cormorant Upright":{"300":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf","500":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf","600":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf","700":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf","regular":"http://fonts.gstatic.com/s/cormorantupright/v5/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf"},"Imprima":{"regular":"http://fonts.gstatic.com/s/imprima/v7/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf"},"Spirax":{"regular":"http://fonts.gstatic.com/s/spirax/v7/buE3poKgYNLy0F3cXktt-Csn-Q.ttf"},"Atma":{"300":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf","500":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf","600":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf","700":"http://fonts.gstatic.com/s/atma/v4/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf","regular":"http://fonts.gstatic.com/s/atma/v4/uK_84rqWc-Eom25bDj8WIv4.ttf"},"Charm":{"700":"http://fonts.gstatic.com/s/charm/v3/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf","regular":"http://fonts.gstatic.com/s/charm/v3/7cHmv4oii5K0MeYvIe804WIo.ttf"},"Codystar":{"300":"http://fonts.gstatic.com/s/codystar/v6/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf","regular":"http://fonts.gstatic.com/s/codystar/v6/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf"},"Rakkas":{"regular":"http://fonts.gstatic.com/s/rakkas/v6/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf"},"Krona One":{"regular":"http://fonts.gstatic.com/s/kronaone/v7/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf"},"Dawning of a New Day":{"regular":"http://fonts.gstatic.com/s/dawningofanewday/v9/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf"},"Alike Angular":{"regular":"http://fonts.gstatic.com/s/alikeangular/v9/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf"},"Cherry Swash":{"700":"http://fonts.gstatic.com/s/cherryswash/v7/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf","regular":"http://fonts.gstatic.com/s/cherryswash/v7/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf"},"Baloo Chettan":{"regular":"http://fonts.gstatic.com/s/baloochettan/v4/0QImMXRN8o2gTC2YTr4665DA07z8_ApHqqk.ttf"},"Salsa":{"regular":"http://fonts.gstatic.com/s/salsa/v8/gNMKW3FiRpKj-imY8ncKEZez.ttf"},"Headland One":{"regular":"http://fonts.gstatic.com/s/headlandone/v6/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf"},"Metamorphous":{"regular":"http://fonts.gstatic.com/s/metamorphous/v9/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf"},"Frijole":{"regular":"http://fonts.gstatic.com/s/frijole/v7/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf"},"Jua":{"regular":"http://fonts.gstatic.com/s/jua/v7/co3KmW9ljjAjc-DZCsKgsg.ttf"},"Aleo":{"300":"http://fonts.gstatic.com/s/aleo/v2/c4mg1nF8G8_syKbr9DVDno985KM.ttf","700":"http://fonts.gstatic.com/s/aleo/v2/c4mg1nF8G8_syLbs9DVDno985KM.ttf","300italic":"http://fonts.gstatic.com/s/aleo/v2/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf","regular":"http://fonts.gstatic.com/s/aleo/v2/c4mv1nF8G8_s8ArD0D1ogoY.ttf","italic":"http://fonts.gstatic.com/s/aleo/v2/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf","700italic":"http://fonts.gstatic.com/s/aleo/v2/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"},"Nova Mono":{"regular":"http://fonts.gstatic.com/s/novamono/v9/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf"},"Holtwood One SC":{"regular":"http://fonts.gstatic.com/s/holtwoodonesc/v9/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf"},"Over the Rainbow":{"regular":"http://fonts.gstatic.com/s/overtherainbow/v9/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf"},"David Libre":{"500":"http://fonts.gstatic.com/s/davidlibre/v3/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf","700":"http://fonts.gstatic.com/s/davidlibre/v3/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf","regular":"http://fonts.gstatic.com/s/davidlibre/v3/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf"},"Averia Sans Libre":{"300":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf","700":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf","300italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf","regular":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf","italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf","700italic":"http://fonts.gstatic.com/s/averiasanslibre/v7/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf"},"Ledger":{"regular":"http://fonts.gstatic.com/s/ledger/v6/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf"},"Crushed":{"regular":"http://fonts.gstatic.com/s/crushed/v9/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf"},"Sedgwick Ave":{"regular":"http://fonts.gstatic.com/s/sedgwickave/v4/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf"},"Almendra":{"700":"http://fonts.gstatic.com/s/almendra/v11/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf","regular":"http://fonts.gstatic.com/s/almendra/v11/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf","italic":"http://fonts.gstatic.com/s/almendra/v11/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf","700italic":"http://fonts.gstatic.com/s/almendra/v11/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf"},"Aref Ruqaa":{"700":"http://fonts.gstatic.com/s/arefruqaa/v7/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf","regular":"http://fonts.gstatic.com/s/arefruqaa/v7/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf"},"Sarpanch":{"500":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf","600":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf","700":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf","800":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf","900":"http://fonts.gstatic.com/s/sarpanch/v4/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf","regular":"http://fonts.gstatic.com/s/sarpanch/v4/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf"},"Kosugi":{"regular":"http://fonts.gstatic.com/s/kosugi/v5/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf"},"Montserrat Subrayada":{"700":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf","regular":"http://fonts.gstatic.com/s/montserratsubrayada/v8/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf"},"Nova Square":{"regular":"http://fonts.gstatic.com/s/novasquare/v11/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf"},"Fontdiner Swanky":{"regular":"http://fonts.gstatic.com/s/fontdinerswanky/v9/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf"},"Life Savers":{"700":"http://fonts.gstatic.com/s/lifesavers/v8/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf","regular":"http://fonts.gstatic.com/s/lifesavers/v8/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf"},"Habibi":{"regular":"http://fonts.gstatic.com/s/habibi/v7/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf"},"Mrs Saint Delafield":{"regular":"http://fonts.gstatic.com/s/mrssaintdelafield/v6/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf"},"Chicle":{"regular":"http://fonts.gstatic.com/s/chicle/v7/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf"},"Uncial Antiqua":{"regular":"http://fonts.gstatic.com/s/uncialantiqua/v6/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf"},"Fjord One":{"regular":"http://fonts.gstatic.com/s/fjordone/v7/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf"},"Dekko":{"regular":"http://fonts.gstatic.com/s/dekko/v5/46khlb_wWjfSrttFR0vsfl1B.ttf"},"Elsie":{"900":"http://fonts.gstatic.com/s/elsie/v8/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf","regular":"http://fonts.gstatic.com/s/elsie/v8/BCanqZABrez54yYu9slAeLgX.ttf"},"Engagement":{"regular":"http://fonts.gstatic.com/s/engagement/v8/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf"},"Kranky":{"regular":"http://fonts.gstatic.com/s/kranky/v9/hESw6XVgJzlPsFnMpheEZo_H_w.ttf"},"Voces":{"regular":"http://fonts.gstatic.com/s/voces/v8/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf"},"K2D":{"100":"http://fonts.gstatic.com/s/k2d/v2/J7aRnpF2V0ErE6UpvrIw74NL.ttf","200":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Erv4QJlJw85ppSGw.ttf","300":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Er24cJlJw85ppSGw.ttf","500":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Erg4YJlJw85ppSGw.ttf","600":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Err4EJlJw85ppSGw.ttf","700":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Ery4AJlJw85ppSGw.ttf","800":"http://fonts.gstatic.com/s/k2d/v2/J7aenpF2V0Er14MJlJw85ppSGw.ttf","100italic":"http://fonts.gstatic.com/s/k2d/v2/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf","200italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf","300italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf","regular":"http://fonts.gstatic.com/s/k2d/v2/J7aTnpF2V0ETd68tnLcg7w.ttf","italic":"http://fonts.gstatic.com/s/k2d/v2/J7aRnpF2V0EjdaUpvrIw74NL.ttf","500italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf","600italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf","700italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf","800italic":"http://fonts.gstatic.com/s/k2d/v2/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf"},"Port Lligat Slab":{"regular":"http://fonts.gstatic.com/s/portlligatslab/v7/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf"},"Sumana":{"700":"http://fonts.gstatic.com/s/sumana/v3/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf","regular":"http://fonts.gstatic.com/s/sumana/v3/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf"},"Mogra":{"regular":"http://fonts.gstatic.com/s/mogra/v5/f0X40eSs8c95TBo4DvLmxtnG.ttf"},"Share Tech":{"regular":"http://fonts.gstatic.com/s/sharetech/v8/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf"},"Nova Round":{"regular":"http://fonts.gstatic.com/s/novaround/v10/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf"},"NTR":{"regular":"http://fonts.gstatic.com/s/ntr/v6/RLpzK5Xy0ZjiGGhs5TA4bg.ttf"},"Gugi":{"regular":"http://fonts.gstatic.com/s/gugi/v7/A2BVn5dXywshVA6A9DEfgqM.ttf"},"Encode Sans Semi Condensed":{"100":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf","200":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf","300":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf","500":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf","600":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf","700":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf","800":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf","900":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf","regular":"http://fonts.gstatic.com/s/encodesanssemicondensed/v3/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf"},"Baloo Tamma":{"regular":"http://fonts.gstatic.com/s/balootamma/v5/JTUTjIk68Cy27gWhOWIghE5B5Arr-s50.ttf"},"Creepster":{"regular":"http://fonts.gstatic.com/s/creepster/v7/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf"},"Shanti":{"regular":"http://fonts.gstatic.com/s/shanti/v10/t5thIREMM4uSDgzgU0ezpKfwzA.ttf"},"Kumar One":{"regular":"http://fonts.gstatic.com/s/kumarone/v3/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf"},"Mukta Mahee":{"200":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf","300":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf","500":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf","600":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf","700":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf","800":"http://fonts.gstatic.com/s/muktamahee/v4/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf","regular":"http://fonts.gstatic.com/s/muktamahee/v4/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf"},"Germania One":{"regular":"http://fonts.gstatic.com/s/germaniaone/v6/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf"},"Esteban":{"regular":"http://fonts.gstatic.com/s/esteban/v7/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf"},"Numans":{"regular":"http://fonts.gstatic.com/s/numans/v8/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf"},"Geo":{"regular":"http://fonts.gstatic.com/s/geo/v10/CSRz4zRZlufVL3BmQjlCbQ.ttf","italic":"http://fonts.gstatic.com/s/geo/v10/CSRx4zRZluflLXpiYDxSbf8r.ttf"},"Swanky and Moo Moo":{"regular":"http://fonts.gstatic.com/s/swankyandmoomoo/v8/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf"},"Pirata One":{"regular":"http://fonts.gstatic.com/s/pirataone/v7/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf"},"Slackey":{"regular":"http://fonts.gstatic.com/s/slackey/v9/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf"},"Koulen":{"regular":"http://fonts.gstatic.com/s/koulen/v12/AMOQz46as3KIBPeWgnA9kuYMUg.ttf"},"Taprom":{"regular":"http://fonts.gstatic.com/s/taprom/v10/UcCn3F82JHycULbFQyk3-0kvHg.ttf"},"Antic Didone":{"regular":"http://fonts.gstatic.com/s/anticdidone/v7/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf"},"Cherry Cream Soda":{"regular":"http://fonts.gstatic.com/s/cherrycreamsoda/v9/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf"},"BioRhyme":{"200":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf","300":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf","700":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf","800":"http://fonts.gstatic.com/s/biorhyme/v3/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf","regular":"http://fonts.gstatic.com/s/biorhyme/v3/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf"},"Yatra One":{"regular":"http://fonts.gstatic.com/s/yatraone/v5/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf"},"Milonga":{"regular":"http://fonts.gstatic.com/s/milonga/v6/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf"},"Fenix":{"regular":"http://fonts.gstatic.com/s/fenix/v6/XoHo2YL_S7-g5ostKzAFvs8o.ttf"},"Mate SC":{"regular":"http://fonts.gstatic.com/s/matesc/v7/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf"},"Krub":{"200":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf","300":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf","500":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf","600":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf","700":"http://fonts.gstatic.com/s/krub/v2/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf","200italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf","300italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf","regular":"http://fonts.gstatic.com/s/krub/v2/sZlLdRyC6CRYXkYQDLlTW6E.ttf","italic":"http://fonts.gstatic.com/s/krub/v2/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf","500italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf","600italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf","700italic":"http://fonts.gstatic.com/s/krub/v2/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf"},"Chau Philomene One":{"regular":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf","italic":"http://fonts.gstatic.com/s/chauphilomeneone/v8/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf"},"Baloo Thambi":{"regular":"http://fonts.gstatic.com/s/baloothambi/v4/va9B4kXJzNhTFoA7CYcS8sHuQR37fF3Wlg.ttf"},"Delius Unicase":{"700":"http://fonts.gstatic.com/s/deliusunicase/v12/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf","regular":"http://fonts.gstatic.com/s/deliusunicase/v12/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf"},"Condiment":{"regular":"http://fonts.gstatic.com/s/condiment/v6/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf"},"Sail":{"regular":"http://fonts.gstatic.com/s/sail/v9/DPEjYwiBxwYJFBTDADYAbvw.ttf"},"Mountains of Christmas":{"700":"http://fonts.gstatic.com/s/mountainsofchristmas/v11/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf","regular":"http://fonts.gstatic.com/s/mountainsofchristmas/v11/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf"},"Kite One":{"regular":"http://fonts.gstatic.com/s/kiteone/v6/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf"},"Ribeye":{"regular":"http://fonts.gstatic.com/s/ribeye/v7/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf"},"Dynalight":{"regular":"http://fonts.gstatic.com/s/dynalight/v7/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf"},"Flamenco":{"300":"http://fonts.gstatic.com/s/flamenco/v9/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf","regular":"http://fonts.gstatic.com/s/flamenco/v9/neIIzCehqYguo67ssaWGHK06UY30.ttf"},"Modak":{"regular":"http://fonts.gstatic.com/s/modak/v4/EJRYQgs1XtIEsnMH8BVZ76KU.ttf"},"Chela One":{"regular":"http://fonts.gstatic.com/s/chelaone/v7/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf"},"Londrina Outline":{"regular":"http://fonts.gstatic.com/s/londrinaoutline/v9/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf"},"Peralta":{"regular":"http://fonts.gstatic.com/s/peralta/v6/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf"},"Asul":{"700":"http://fonts.gstatic.com/s/asul/v8/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf","regular":"http://fonts.gstatic.com/s/asul/v8/VuJ-dNjKxYr46fMFXK78JIg.ttf"},"Paprika":{"regular":"http://fonts.gstatic.com/s/paprika/v6/8QIJdijZitv49rDfuIgOq7jkAOw.ttf"},"Ruslan Display":{"regular":"http://fonts.gstatic.com/s/ruslandisplay/v9/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf"},"Timmana":{"regular":"http://fonts.gstatic.com/s/timmana/v3/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf"},"Plaster":{"regular":"http://fonts.gstatic.com/s/plaster/v10/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf"},"Eater":{"regular":"http://fonts.gstatic.com/s/eater/v7/mtG04_FCK7bOvpu2u3FwsXsR.ttf"},"League Script":{"regular":"http://fonts.gstatic.com/s/leaguescript/v9/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf"},"Cagliostro":{"regular":"http://fonts.gstatic.com/s/cagliostro/v7/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf"},"Sarina":{"regular":"http://fonts.gstatic.com/s/sarina/v7/-F6wfjF3ITQwasLhLkDUriBQxw.ttf"},"Lovers Quarrel":{"regular":"http://fonts.gstatic.com/s/loversquarrel/v6/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf"},"Khmer":{"regular":"http://fonts.gstatic.com/s/khmer/v11/MjQImit_vPPwpF-BpN2EeYmD.ttf"},"Meera Inimai":{"regular":"http://fonts.gstatic.com/s/meerainimai/v3/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf"},"Ramaraja":{"regular":"http://fonts.gstatic.com/s/ramaraja/v3/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf"},"Bubbler One":{"regular":"http://fonts.gstatic.com/s/bubblerone/v7/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf"},"Amarante":{"regular":"http://fonts.gstatic.com/s/amarante/v6/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf"},"Maiden Orange":{"regular":"http://fonts.gstatic.com/s/maidenorange/v9/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf"},"Stint Ultra Condensed":{"regular":"http://fonts.gstatic.com/s/stintultracondensed/v7/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf"},"Averia Gruesa Libre":{"regular":"http://fonts.gstatic.com/s/averiagruesalibre/v7/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf"},"Mystery Quest":{"regular":"http://fonts.gstatic.com/s/mysteryquest/v6/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf"},"Nova Slim":{"regular":"http://fonts.gstatic.com/s/novaslim/v10/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf"},"Nosifer":{"regular":"http://fonts.gstatic.com/s/nosifer/v7/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf"},"Pavanam":{"regular":"http://fonts.gstatic.com/s/pavanam/v3/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf"},"Simonetta":{"900":"http://fonts.gstatic.com/s/simonetta/v8/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf","regular":"http://fonts.gstatic.com/s/simonetta/v8/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf","italic":"http://fonts.gstatic.com/s/simonetta/v8/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf","900italic":"http://fonts.gstatic.com/s/simonetta/v8/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf"},"Stylish":{"regular":"http://fonts.gstatic.com/s/stylish/v7/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf"},"Gaegu":{"300":"http://fonts.gstatic.com/s/gaegu/v7/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf","700":"http://fonts.gstatic.com/s/gaegu/v7/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf","regular":"http://fonts.gstatic.com/s/gaegu/v7/TuGfUVB6Up9NU6ZLodgzydtk.ttf"},"Dorsa":{"regular":"http://fonts.gstatic.com/s/dorsa/v9/yYLn0hjd0OGwqo493XCFxAnQ.ttf"},"Sura":{"700":"http://fonts.gstatic.com/s/sura/v3/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf","regular":"http://fonts.gstatic.com/s/sura/v3/SZc23FL5PbyzFf5UWzXtjUM.ttf"},"Princess Sofia":{"regular":"http://fonts.gstatic.com/s/princesssofia/v7/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf"},"Junge":{"regular":"http://fonts.gstatic.com/s/junge/v6/gokgH670Gl1lUqAdvhB7SnKm.ttf"},"Inknut Antiqua":{"300":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf","500":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf","600":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf","700":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf","800":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf","900":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf","regular":"http://fonts.gstatic.com/s/inknutantiqua/v4/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf"},"Sancreek":{"regular":"http://fonts.gstatic.com/s/sancreek/v9/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf"},"Englebert":{"regular":"http://fonts.gstatic.com/s/englebert/v6/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf"},"Overlock SC":{"regular":"http://fonts.gstatic.com/s/overlocksc/v7/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf"},"Ranchers":{"regular":"http://fonts.gstatic.com/s/ranchers/v6/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf"},"Rosarivo":{"regular":"http://fonts.gstatic.com/s/rosarivo/v6/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf","italic":"http://fonts.gstatic.com/s/rosarivo/v6/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf"},"Trade Winds":{"regular":"http://fonts.gstatic.com/s/tradewinds/v7/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf"},"Stoke":{"300":"http://fonts.gstatic.com/s/stoke/v8/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf","regular":"http://fonts.gstatic.com/s/stoke/v8/z7NadRb7aTMfKONpfihK1YTV.ttf"},"Farsan":{"regular":"http://fonts.gstatic.com/s/farsan/v4/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf"},"Coiny":{"regular":"http://fonts.gstatic.com/s/coiny/v4/gyByhwU1K989PXwbElSvO5Tc.ttf"},"Ruluko":{"regular":"http://fonts.gstatic.com/s/ruluko/v6/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf"},"Donegal One":{"regular":"http://fonts.gstatic.com/s/donegalone/v6/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf"},"Noto Sans HK":{"100":"http://fonts.gstatic.com/s/notosanshk/v4/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf","300":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf","500":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf","700":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf","900":"http://fonts.gstatic.com/s/notosanshk/v4/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf","regular":"http://fonts.gstatic.com/s/notosanshk/v4/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf"},"IM Fell French Canon":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf","italic":"http://fonts.gstatic.com/s/imfellfrenchcanon/v8/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf"},"Manuale":{"500":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPALt58Ht9a8GYeA.ttf","600":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPC7q58Ht9a8GYeA.ttf","700":"http://fonts.gstatic.com/s/manuale/v3/f0Xz0eas_8Z-TFZdPErr58Ht9a8GYeA.ttf","regular":"http://fonts.gstatic.com/s/manuale/v3/f0X20eas_8Z-TFZdBPbEw8nG6aY.ttf","italic":"http://fonts.gstatic.com/s/manuale/v3/f0X00eas_8Z-TFZdNPTOx-vD-aYfeA.ttf","500italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2M8Ln8Y0DceA0OQ.ttf","600italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2H8Xn8Y0DceA0OQ.ttf","700italic":"http://fonts.gstatic.com/s/manuale/v3/f0Xx0eas_8Z-TFZdNPT2e8Tn8Y0DceA0OQ.ttf"},"Major Mono Display":{"regular":"http://fonts.gstatic.com/s/majormonodisplay/v2/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf"},"Nokora":{"700":"http://fonts.gstatic.com/s/nokora/v12/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf","regular":"http://fonts.gstatic.com/s/nokora/v12/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf"},"IM Fell Great Primer":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf","italic":"http://fonts.gstatic.com/s/imfellgreatprimer/v8/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf"},"Stint Ultra Expanded":{"regular":"http://fonts.gstatic.com/s/stintultraexpanded/v6/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf"},"Croissant One":{"regular":"http://fonts.gstatic.com/s/croissantone/v6/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf"},"Stalemate":{"regular":"http://fonts.gstatic.com/s/stalemate/v6/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf"},"Akronim":{"regular":"http://fonts.gstatic.com/s/akronim/v8/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf"},"Nova Flat":{"regular":"http://fonts.gstatic.com/s/novaflat/v10/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf"},"Sonsie One":{"regular":"http://fonts.gstatic.com/s/sonsieone/v7/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf"},"Port Lligat Sans":{"regular":"http://fonts.gstatic.com/s/portlligatsans/v7/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf"},"ZCOOL QingKe HuangYou":{"regular":"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v4/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf"},"Buda":{"300":"http://fonts.gstatic.com/s/buda/v9/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf"},"IM Fell DW Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldwpicasc/v8/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf"},"Linden Hill":{"regular":"http://fonts.gstatic.com/s/lindenhill/v8/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf","italic":"http://fonts.gstatic.com/s/lindenhill/v8/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf"},"Glass Antiqua":{"regular":"http://fonts.gstatic.com/s/glassantiqua/v6/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf"},"Marko One":{"regular":"http://fonts.gstatic.com/s/markoone/v8/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf"},"Revalia":{"regular":"http://fonts.gstatic.com/s/revalia/v6/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf"},"Margarine":{"regular":"http://fonts.gstatic.com/s/margarine/v7/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf"},"Sirin Stencil":{"regular":"http://fonts.gstatic.com/s/sirinstencil/v7/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf"},"Baloo Tammudu":{"regular":"http://fonts.gstatic.com/s/balootammudu/v5/mFT3Wb8Qza7c_Z5HTsC_5nxW8EpQl9RWxD8.ttf"},"Text Me One":{"regular":"http://fonts.gstatic.com/s/textmeone/v6/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf"},"Kavoon":{"regular":"http://fonts.gstatic.com/s/kavoon/v7/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf"},"Monsieur La Doulaise":{"regular":"http://fonts.gstatic.com/s/monsieurladoulaise/v7/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf"},"Thasadith":{"700":"http://fonts.gstatic.com/s/thasadith/v2/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf","regular":"http://fonts.gstatic.com/s/thasadith/v2/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf","italic":"http://fonts.gstatic.com/s/thasadith/v2/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf","700italic":"http://fonts.gstatic.com/s/thasadith/v2/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf"},"Diplomata":{"regular":"http://fonts.gstatic.com/s/diplomata/v10/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf"},"Julee":{"regular":"http://fonts.gstatic.com/s/julee/v8/TuGfUVB3RpZPQ6ZLodgzydtk.ttf"},"Offside":{"regular":"http://fonts.gstatic.com/s/offside/v6/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf"},"Mina":{"700":"http://fonts.gstatic.com/s/mina/v2/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf","regular":"http://fonts.gstatic.com/s/mina/v2/-nFzOGc18vARrz9j7i3y65o.ttf"},"Ranga":{"700":"http://fonts.gstatic.com/s/ranga/v4/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf","regular":"http://fonts.gstatic.com/s/ranga/v4/C8ct4cYisGb28p6CLDwZwmGE.ttf"},"New Rocker":{"regular":"http://fonts.gstatic.com/s/newrocker/v7/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf"},"Bilbo":{"regular":"http://fonts.gstatic.com/s/bilbo/v8/o-0EIpgpwWwZ210hpIRz4wxE.ttf"},"Elsie Swash Caps":{"900":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf","regular":"http://fonts.gstatic.com/s/elsieswashcaps/v7/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf"},"Autour One":{"regular":"http://fonts.gstatic.com/s/autourone/v8/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf"},"Eagle Lake":{"regular":"http://fonts.gstatic.com/s/eaglelake/v6/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf"},"Griffy":{"regular":"http://fonts.gstatic.com/s/griffy/v7/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf"},"Bahiana":{"regular":"http://fonts.gstatic.com/s/bahiana/v3/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf"},"Song Myung":{"regular":"http://fonts.gstatic.com/s/songmyung/v7/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf"},"Wellfleet":{"regular":"http://fonts.gstatic.com/s/wellfleet/v6/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf"},"Henny Penny":{"regular":"http://fonts.gstatic.com/s/hennypenny/v6/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf"},"B612 Mono":{"700":"http://fonts.gstatic.com/s/b612mono/v3/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf","regular":"http://fonts.gstatic.com/s/b612mono/v3/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf","italic":"http://fonts.gstatic.com/s/b612mono/v3/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf","700italic":"http://fonts.gstatic.com/s/b612mono/v3/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf"},"Joti One":{"regular":"http://fonts.gstatic.com/s/jotione/v7/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf"},"Cormorant Unicase":{"300":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf","500":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf","600":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf","700":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf","regular":"http://fonts.gstatic.com/s/cormorantunicase/v7/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf"},"Angkor":{"regular":"http://fonts.gstatic.com/s/angkor/v11/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf"},"Miniver":{"regular":"http://fonts.gstatic.com/s/miniver/v7/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf"},"Petrona":{"regular":"http://fonts.gstatic.com/s/petrona/v7/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf"},"Dokdo":{"regular":"http://fonts.gstatic.com/s/dokdo/v7/esDf315XNuCBLxLo4NaMlKcH.ttf"},"Della Respira":{"regular":"http://fonts.gstatic.com/s/dellarespira/v6/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf"},"IM Fell Great Primer SC":{"regular":"http://fonts.gstatic.com/s/imfellgreatprimersc/v8/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf"},"Underdog":{"regular":"http://fonts.gstatic.com/s/underdog/v7/CHygV-jCElj7diMroVSiU14GN2Il.ttf"},"UnifrakturCook":{"700":"http://fonts.gstatic.com/s/unifrakturcook/v10/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf"},"Moul":{"regular":"http://fonts.gstatic.com/s/moul/v10/nuF2D__FSo_3E-RYiJCy-00.ttf"},"Dangrek":{"regular":"http://fonts.gstatic.com/s/dangrek/v10/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf"},"Inika":{"700":"http://fonts.gstatic.com/s/inika/v7/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf","regular":"http://fonts.gstatic.com/s/inika/v7/rnCm-x5X3QP-phTHRcc2s2XH.ttf"},"Sree Krushnadevaraya":{"regular":"http://fonts.gstatic.com/s/sreekrushnadevaraya/v6/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf"},"Rhodium Libre":{"regular":"http://fonts.gstatic.com/s/rhodiumlibre/v3/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf"},"Bokor":{"regular":"http://fonts.gstatic.com/s/bokor/v11/m8JcjfpeeaqTiR2WdInbcaxE.ttf"},"Trykker":{"regular":"http://fonts.gstatic.com/s/trykker/v7/KtktALyWZJXudUPzhNnoOd2j22U.ttf"},"Barrio":{"regular":"http://fonts.gstatic.com/s/barrio/v3/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf"},"Redressed":{"regular":"http://fonts.gstatic.com/s/redressed/v9/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf"},"Vollkorn SC":{"600":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf","700":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf","900":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf","regular":"http://fonts.gstatic.com/s/vollkornsc/v2/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf"},"Montaga":{"regular":"http://fonts.gstatic.com/s/montaga/v6/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf"},"Miss Fajardose":{"regular":"http://fonts.gstatic.com/s/missfajardose/v8/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf"},"Galdeano":{"regular":"http://fonts.gstatic.com/s/galdeano/v8/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf"},"Monofett":{"regular":"http://fonts.gstatic.com/s/monofett/v8/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf"},"Srisakdi":{"700":"http://fonts.gstatic.com/s/srisakdi/v2/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf","regular":"http://fonts.gstatic.com/s/srisakdi/v2/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf"},"Ruge Boogie":{"regular":"http://fonts.gstatic.com/s/rugeboogie/v9/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf"},"Ravi Prakash":{"regular":"http://fonts.gstatic.com/s/raviprakash/v5/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf"},"Tillana":{"500":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf","600":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf","700":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf","800":"http://fonts.gstatic.com/s/tillana/v4/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf","regular":"http://fonts.gstatic.com/s/tillana/v4/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf"},"Fascinate Inline":{"regular":"http://fonts.gstatic.com/s/fascinateinline/v8/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf"},"MedievalSharp":{"regular":"http://fonts.gstatic.com/s/medievalsharp/v11/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf"},"Smythe":{"regular":"http://fonts.gstatic.com/s/smythe/v9/MwQ3bhT01--coT1BOLh_uGInjA.ttf"},"Ruthie":{"regular":"http://fonts.gstatic.com/s/ruthie/v9/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf"},"KoHo":{"200":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf","300":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf","500":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf","600":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf","700":"http://fonts.gstatic.com/s/koho/v2/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf","200italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf","300italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf","regular":"http://fonts.gstatic.com/s/koho/v2/K2F-fZ5fmddNBikefJbSOos.ttf","italic":"http://fonts.gstatic.com/s/koho/v2/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf","500italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf","600italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf","700italic":"http://fonts.gstatic.com/s/koho/v2/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf"},"Siemreap":{"regular":"http://fonts.gstatic.com/s/siemreap/v11/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf"},"Suwannaphum":{"regular":"http://fonts.gstatic.com/s/suwannaphum/v12/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf"},"Content":{"700":"http://fonts.gstatic.com/s/content/v11/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf","regular":"http://fonts.gstatic.com/s/content/v11/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf"},"Baloo Da":{"regular":"http://fonts.gstatic.com/s/balooda/v4/LhWmMVnXOfIZO795FXkfSvtVM8mZ.ttf"},"Rum Raisin":{"regular":"http://fonts.gstatic.com/s/rumraisin/v6/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf"},"Iceberg":{"regular":"http://fonts.gstatic.com/s/iceberg/v6/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf"},"Jim Nightshade":{"regular":"http://fonts.gstatic.com/s/jimnightshade/v6/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf"},"Purple Purse":{"regular":"http://fonts.gstatic.com/s/purplepurse/v7/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf"},"Mrs Sheppards":{"regular":"http://fonts.gstatic.com/s/mrssheppards/v7/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf"},"Oldenburg":{"regular":"http://fonts.gstatic.com/s/oldenburg/v6/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf"},"Macondo Swash Caps":{"regular":"http://fonts.gstatic.com/s/macondoswashcaps/v6/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf"},"Keania One":{"regular":"http://fonts.gstatic.com/s/keaniaone/v6/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf"},"Chathura":{"100":"http://fonts.gstatic.com/s/chathura/v4/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf","300":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf","700":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf","800":"http://fonts.gstatic.com/s/chathura/v4/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf","regular":"http://fonts.gstatic.com/s/chathura/v4/_gP71R7-rzUuVjim418goUC5S-Zy.ttf"},"Lancelot":{"regular":"http://fonts.gstatic.com/s/lancelot/v8/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf"},"Chango":{"regular":"http://fonts.gstatic.com/s/chango/v7/2V0cKI0OB5U7WaJyz324TFUaAw.ttf"},"Metal Mania":{"regular":"http://fonts.gstatic.com/s/metalmania/v8/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf"},"Snippet":{"regular":"http://fonts.gstatic.com/s/snippet/v8/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf"},"Asar":{"regular":"http://fonts.gstatic.com/s/asar/v6/sZlLdRyI6TBIXkYQDLlTW6E.ttf"},"Bigshot One":{"regular":"http://fonts.gstatic.com/s/bigshotone/v9/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf"},"Sahitya":{"700":"http://fonts.gstatic.com/s/sahitya/v3/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf","regular":"http://fonts.gstatic.com/s/sahitya/v3/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf"},"Charmonman":{"700":"http://fonts.gstatic.com/s/charmonman/v2/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf","regular":"http://fonts.gstatic.com/s/charmonman/v2/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf"},"Original Surfer":{"regular":"http://fonts.gstatic.com/s/originalsurfer/v7/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf"},"Ribeye Marrow":{"regular":"http://fonts.gstatic.com/s/ribeyemarrow/v8/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf"},"Miltonian Tattoo":{"regular":"http://fonts.gstatic.com/s/miltoniantattoo/v14/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf"},"Poor Story":{"regular":"http://fonts.gstatic.com/s/poorstory/v7/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf"},"Meie Script":{"regular":"http://fonts.gstatic.com/s/meiescript/v6/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf"},"Asset":{"regular":"http://fonts.gstatic.com/s/asset/v9/SLXGc1na-mM4cWImRJqExst1.ttf"},"Zilla Slab Highlight":{"700":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf","regular":"http://fonts.gstatic.com/s/zillaslabhighlight/v6/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf"},"Dr Sugiyama":{"regular":"http://fonts.gstatic.com/s/drsugiyama/v8/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf"},"Modern Antiqua":{"regular":"http://fonts.gstatic.com/s/modernantiqua/v8/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf"},"IM Fell French Canon SC":{"regular":"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v8/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf"},"Jacques Francois Shadow":{"regular":"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v7/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf"},"Freehand":{"regular":"http://fonts.gstatic.com/s/freehand/v10/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf"},"Arbutus":{"regular":"http://fonts.gstatic.com/s/arbutus/v8/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf"},"Goblin One":{"regular":"http://fonts.gstatic.com/s/goblinone/v8/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf"},"Atomic Age":{"regular":"http://fonts.gstatic.com/s/atomicage/v11/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf"},"Snowburst One":{"regular":"http://fonts.gstatic.com/s/snowburstone/v6/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf"},"Odor Mean Chey":{"regular":"http://fonts.gstatic.com/s/odormeanchey/v10/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf"},"Kodchasan":{"200":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf","300":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf","500":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf","600":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf","700":"http://fonts.gstatic.com/s/kodchasan/v2/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf","200italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf","300italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf","regular":"http://fonts.gstatic.com/s/kodchasan/v2/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf","italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf","500italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf","600italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf","700italic":"http://fonts.gstatic.com/s/kodchasan/v2/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf"},"Bayon":{"regular":"http://fonts.gstatic.com/s/bayon/v12/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf"},"Galindo":{"regular":"http://fonts.gstatic.com/s/galindo/v6/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf"},"Kavivanar":{"regular":"http://fonts.gstatic.com/s/kavivanar/v4/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf"},"Molle":{"italic":"http://fonts.gstatic.com/s/molle/v7/E21n_dL5hOXFhWEsXzgmVydREus.ttf"},"Nova Script":{"regular":"http://fonts.gstatic.com/s/novascript/v11/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf"},"Kantumruy":{"300":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf","700":"http://fonts.gstatic.com/s/kantumruy/v5/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf","regular":"http://fonts.gstatic.com/s/kantumruy/v5/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf"},"Caesar Dressing":{"regular":"http://fonts.gstatic.com/s/caesardressing/v7/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf"},"Devonshire":{"regular":"http://fonts.gstatic.com/s/devonshire/v7/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf"},"Irish Grover":{"regular":"http://fonts.gstatic.com/s/irishgrover/v9/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf"},"Tenali Ramakrishna":{"regular":"http://fonts.gstatic.com/s/tenaliramakrishna/v5/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf"},"Ewert":{"regular":"http://fonts.gstatic.com/s/ewert/v6/va9I4kzO2tFODYBvS-J3kbDP.ttf"},"Diplomata SC":{"regular":"http://fonts.gstatic.com/s/diplomatasc/v7/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf"},"Smokum":{"regular":"http://fonts.gstatic.com/s/smokum/v9/TK3iWkUbAhopmrdGHjUHte5fKg.ttf"},"Felipa":{"regular":"http://fonts.gstatic.com/s/felipa/v6/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf"},"IM Fell Double Pica SC":{"regular":"http://fonts.gstatic.com/s/imfelldoublepicasc/v8/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf"},"Piedra":{"regular":"http://fonts.gstatic.com/s/piedra/v7/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf"},"ZCOOL KuaiLe":{"regular":"http://fonts.gstatic.com/s/zcoolkuaile/v4/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf"},"Jomhuria":{"regular":"http://fonts.gstatic.com/s/jomhuria/v6/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf"},"Kirang Haerang":{"regular":"http://fonts.gstatic.com/s/kiranghaerang/v7/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf"},"Kenia":{"regular":"http://fonts.gstatic.com/s/kenia/v10/jizURE5PuHQH9qCONUGswfGM.ttf"},"Chenla":{"regular":"http://fonts.gstatic.com/s/chenla/v11/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf"},"Libre Barcode 128":{"regular":"http://fonts.gstatic.com/s/librebarcode128/v8/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf"},"ZCOOL XiaoWei":{"regular":"http://fonts.gstatic.com/s/zcoolxiaowei/v4/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf"},"Almendra Display":{"regular":"http://fonts.gstatic.com/s/almendradisplay/v9/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf"},"Flavors":{"regular":"http://fonts.gstatic.com/s/flavors/v7/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf"},"Romanesco":{"regular":"http://fonts.gstatic.com/s/romanesco/v7/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf"},"Sunshiney":{"regular":"http://fonts.gstatic.com/s/sunshiney/v9/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf"},"Kdam Thmor":{"regular":"http://fonts.gstatic.com/s/kdamthmor/v6/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf"},"Risque":{"regular":"http://fonts.gstatic.com/s/risque/v6/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf"},"Jacques Francois":{"regular":"http://fonts.gstatic.com/s/jacquesfrancois/v6/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf"},"Seymour One":{"regular":"http://fonts.gstatic.com/s/seymourone/v6/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf"},"Astloch":{"700":"http://fonts.gstatic.com/s/astloch/v9/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf","regular":"http://fonts.gstatic.com/s/astloch/v9/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf"},"Macondo":{"regular":"http://fonts.gstatic.com/s/macondo/v7/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf"},"Almendra SC":{"regular":"http://fonts.gstatic.com/s/almendrasc/v9/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf"},"Londrina Shadow":{"regular":"http://fonts.gstatic.com/s/londrinashadow/v8/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf"},"Lakki Reddy":{"regular":"http://fonts.gstatic.com/s/lakkireddy/v5/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf"},"Fahkwang":{"200":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf","300":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf","500":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf","600":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf","700":"http://fonts.gstatic.com/s/fahkwang/v2/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf","200italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf","300italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf","regular":"http://fonts.gstatic.com/s/fahkwang/v2/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf","italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf","500italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf","600italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf","700italic":"http://fonts.gstatic.com/s/fahkwang/v2/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf"},"Gorditas":{"700":"http://fonts.gstatic.com/s/gorditas/v6/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf","regular":"http://fonts.gstatic.com/s/gorditas/v6/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf"},"Nova Oval":{"regular":"http://fonts.gstatic.com/s/novaoval/v10/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf"},"Libre Barcode 39 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39text/v8/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf"},"Butterfly Kids":{"regular":"http://fonts.gstatic.com/s/butterflykids/v7/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf"},"Geostar Fill":{"regular":"http://fonts.gstatic.com/s/geostarfill/v9/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf"},"Gamja Flower":{"regular":"http://fonts.gstatic.com/s/gamjaflower/v7/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf"},"GFS Neohellenic":{"700":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf","regular":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf","italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf","700italic":"http://fonts.gstatic.com/s/gfsneohellenic/v11/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf"},"Sedgwick Ave Display":{"regular":"http://fonts.gstatic.com/s/sedgwickavedisplay/v4/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf"},"Nova Cut":{"regular":"http://fonts.gstatic.com/s/novacut/v10/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf"},"Supermercado One":{"regular":"http://fonts.gstatic.com/s/supermercadoone/v8/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf"},"Trochut":{"700":"http://fonts.gstatic.com/s/trochut/v6/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf","regular":"http://fonts.gstatic.com/s/trochut/v6/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf","italic":"http://fonts.gstatic.com/s/trochut/v6/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf"},"Fascinate":{"regular":"http://fonts.gstatic.com/s/fascinate/v7/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf"},"Jolly Lodger":{"regular":"http://fonts.gstatic.com/s/jollylodger/v6/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf"},"Londrina Sketch":{"regular":"http://fonts.gstatic.com/s/londrinasketch/v7/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf"},"Miltonian":{"regular":"http://fonts.gstatic.com/s/miltonian/v12/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf"},"Kumar One Outline":{"regular":"http://fonts.gstatic.com/s/kumaroneoutline/v4/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf"},"Combo":{"regular":"http://fonts.gstatic.com/s/combo/v7/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf"},"East Sea Dokdo":{"regular":"http://fonts.gstatic.com/s/eastseadokdo/v7/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf"},"Butcherman":{"regular":"http://fonts.gstatic.com/s/butcherman/v10/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf"},"Libre Barcode 39 Extended Text":{"regular":"http://fonts.gstatic.com/s/librebarcode39extendedtext/v7/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf"},"Metal":{"regular":"http://fonts.gstatic.com/s/metal/v11/lW-wwjUJIXTo7i3nnoQAUdN2.ttf"},"Bungee Outline":{"regular":"http://fonts.gstatic.com/s/bungeeoutline/v4/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf"},"Bungee Hairline":{"regular":"http://fonts.gstatic.com/s/bungeehairline/v4/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf"},"Sofadi One":{"regular":"http://fonts.gstatic.com/s/sofadione/v7/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf"},"Libre Barcode 39 Extended":{"regular":"http://fonts.gstatic.com/s/librebarcode39extended/v7/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf"},"Bigelow Rules":{"regular":"http://fonts.gstatic.com/s/bigelowrules/v7/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf"},"Passero One":{"regular":"http://fonts.gstatic.com/s/passeroone/v10/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf"},"Black And White Picture":{"regular":"http://fonts.gstatic.com/s/blackandwhitepicture/v7/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf"},"Cute Font":{"regular":"http://fonts.gstatic.com/s/cutefont/v7/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf"},"Unlock":{"regular":"http://fonts.gstatic.com/s/unlock/v8/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf"},"Sevillana":{"regular":"http://fonts.gstatic.com/s/sevillana/v7/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf"},"Emblema One":{"regular":"http://fonts.gstatic.com/s/emblemaone/v7/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf"},"Erica One":{"regular":"http://fonts.gstatic.com/s/ericaone/v9/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf"},"Mr Bedfort":{"regular":"http://fonts.gstatic.com/s/mrbedfort/v7/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf"},"Bonbon":{"regular":"http://fonts.gstatic.com/s/bonbon/v10/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf"},"Geostar":{"regular":"http://fonts.gstatic.com/s/geostar/v9/sykz-yx4n701VLOftSq9-trEvlQ.ttf"},"Aubrey":{"regular":"http://fonts.gstatic.com/s/aubrey/v11/q5uGsou7NPBw-p7vugNsCxVEgA.ttf"},"Suravaram":{"regular":"http://fonts.gstatic.com/s/suravaram/v5/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf"},"Fruktur":{"regular":"http://fonts.gstatic.com/s/fruktur/v11/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf"},"Preahvihear":{"regular":"http://fonts.gstatic.com/s/preahvihear/v10/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf"},"Hanalei":{"regular":"http://fonts.gstatic.com/s/hanalei/v9/E21n_dD8iufIjBRHXzgmVydREus.ttf"},"Federant":{"regular":"http://fonts.gstatic.com/s/federant/v10/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf"},"Gidugu":{"regular":"http://fonts.gstatic.com/s/gidugu/v5/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf"},"B612":{"700":"http://fonts.gstatic.com/s/b612/v3/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf","regular":"http://fonts.gstatic.com/s/b612/v3/3JnySDDxiSz32jm4GDigUXw.ttf","italic":"http://fonts.gstatic.com/s/b612/v3/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf","700italic":"http://fonts.gstatic.com/s/b612/v3/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf"},"Fasthand":{"regular":"http://fonts.gstatic.com/s/fasthand/v9/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf"},"Peddana":{"regular":"http://fonts.gstatic.com/s/peddana/v6/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf"},"Libre Barcode 128 Text":{"regular":"http://fonts.gstatic.com/s/librebarcode128text/v8/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf"},"Stalinist One":{"regular":"http://fonts.gstatic.com/s/stalinistone/v20/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf"},"Dhurjati":{"regular":"http://fonts.gstatic.com/s/dhurjati/v6/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf"},"Hi Melody":{"regular":"http://fonts.gstatic.com/s/himelody/v7/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf"},"Moulpali":{"regular":"http://fonts.gstatic.com/s/moulpali/v11/H4ckBXKMl9HagUWymyY6wr-wg763.ttf"},"BioRhyme Expanded":{"200":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf","300":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf","700":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf","800":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf","regular":"http://fonts.gstatic.com/s/biorhymeexpanded/v4/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf"},"Yeon Sung":{"regular":"http://fonts.gstatic.com/s/yeonsung/v7/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf"},"Warnes":{"regular":"http://fonts.gstatic.com/s/warnes/v8/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf"},"Notable":{"regular":"http://fonts.gstatic.com/s/notable/v3/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf"}}
modules/webfonts/webfont-names.json CHANGED
@@ -1 +1 @@
1
- ["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Source Sans Pro","Oswald","Raleway","Merriweather","Roboto Mono","Roboto Slab","Poppins","PT Sans","Noto Sans","Slabo 27px","Ubuntu","Open Sans Condensed","Playfair Display","Lora","PT Serif","Muli","Titillium Web","Nunito","PT Sans Narrow","Rubik","Fira Sans","Noto Sans JP","Nanum Gothic","Noto Serif","Work Sans","Arimo","Quicksand","Noto Sans KR","Dosis","Inconsolata","Crimson Text","Josefin Sans","Teko","Oxygen","Libre Franklin","Bitter","Nunito Sans","Anton","Libre Baskerville","Heebo","Cabin","Hind","Fjalla One","Karla","Indie Flower","Arvo","Lobster","Abel","Mukta","Exo 2","Hind Siliguri","Noto Sans TC","Pacifico","Varela Round","Merriweather Sans","Dancing Script","Source Serif Pro","Asap","Shadows Into Light","Abril Fatface","Source Code Pro","Yanone Kaffeesatz","Barlow","Kanit","Acme","Bree Serif","Questrial","Righteous","Archivo Narrow","EB Garamond","Catamaran","Amatic SC","Comfortaa","Exo","Cairo","Maven Pro","Ubuntu Condensed","Play","Signika","Domine","Fira Sans Condensed","Rajdhani","Permanent Marker","Cinzel","Patua One","Amiri","Vollkorn","Francois One","Ropa Sans","News Cycle","Prompt","Noticia Text","Crete Round","Overpass","Gloria Hallelujah","Rokkitt","Hind Madurai","Barlow Condensed","Satisfy","Assistant","Alegreya","IBM Plex Sans","Gothic A1","Noto Sans SC","Cuprum","Courgette","Old Standard TT","ABeeZee","PT Sans Caption","Alegreya Sans","Concert One","Caveat","Alfa Slab One","Cardo","Kaushan Script","Cantarell","Archivo Black","Tinos","Lalezar","Cormorant Garamond","Great Vibes","Fredoka One","Didact Gothic","Fira Sans Extra Condensed","Orbitron","Kalam","Martel","Lobster Two","Cookie","Frank Ruhl Libre","Pathway Gothic One","Volkhov","Barlow Semi Condensed","Quattrocento Sans","Luckiest Guy","Viga","Russo One","Zilla Slab","Arapey","Nanum Myeongjo","Tangerine","Chivo","Special Elite","Monda","Sacramento","Tajawal","Saira Semi Condensed","Playfair Display SC","Poiret One","Hind Vadodara","Quattrocento","M PLUS 1p","BenchNine","Hind Guntur","Patrick Hand","IBM Plex Serif","Cabin Condensed","Khand","Taviraj","Ultra","Passion One","Istok Web","Handlee","Neucha","Josefin Slab","Sawarabi Mincho","Gudea","Sanchez","Prata","Neuton","Boogaloo","Saira","Merienda","Philosopher","Yantramanav","Monoton","Gochi Hand","Changa","Signika Negative","Marck Script","Allerta Stencil","Pragati Narrow","Yrsa","Carter One","Pontano Sans","Asap Condensed","Unica One","Sigmar One","Hammersmith One","Vidaloka","Montserrat Alternates","Ruda","Saira Extra Condensed","Economica","Armata","Advent Pro","Bangers","Pridi","Audiowide","Sorts Mill Goudy","Yellowtail","Archivo","Gentium Basic","Playball","Architects Daughter","Amaranth","Noto Serif JP","Varela","Bad Script","Glegoo","Schoolbell","Alice","Staatliches","Kreon","Adamina","Gentium Book Basic","PT Mono","Rock Salt","Enriqueta","Press Start 2P","Julius Sans One","Paytone One","Unna","Sintony","Rasa","Ubuntu Mono","Covered By Your Grace","Damion","Cousine","Arbutus Slab","Sarala","Palanquin","Actor","Fugaz One","Rambla","Days One","Mitr","Allura","El Messiri","Antic Slab","Parisienne","Homemade Apple","Shadows Into Light Two","Italianno","Oleo Script","Alegreya Sans SC","Baloo","Nothing You Could Do","Cormorant","Lusitana","Karma","Allerta","Share Tech Mono","Sawarabi Gothic","Khula","Jura","Scada","Aguafina Script","Marcellus","Molengo","Chewy","Spectral","Pinyon Script","Mr Dafoe","Cantata One","Hanuman","PT Serif Caption","Jaldi","Alex Brush","Rancho","Bevan","Scheherazade","Encode Sans Condensed","Michroma","Pangolin","Niconne","Abhaya Libre","Lustria","Fredericka the Great","Spinnaker","Nanum Gothic Coding","Forum","Basic","Nobile","Belleza","Reenie Beanie","Candal","Leckerli One","Nanum Pen Script","Black Ops One","Average","Radley","Syncopate","Magra","Lemonada","Prosto One","Sarabun","Marcellus SC","Electrolize","Quantico","Sunflower","Aldrich","Share","Coda","Biryani","Kameron","M PLUS Rounded 1c","Yesteryear","Lilita One","Tenor Sans","Rochester","Antic","Knewave","Shojumaru","Caveat Brush","Bungee","Cinzel Decorative","Overlock","Space Mono","Just Another Hand","Gruppo","Fauna One","Berkshire Swash","Cabin Sketch","Itim","Reem Kufi","Rufina","Lateef","Changa One","Oranienbaum","Coda Caption","Squada One","Buenard","Laila","Contrail One","Aclonica","Puritan","Telex","Alef","Norican","Markazi Text","Marmelad","Arizonia","Nanum Brush Script","Grand Hotel","Trirong","Love Ya Like A Sister","VT323","Yeseva One","Annie Use Your Telescope","Lekton","Fira Mono","Coming Soon","Carme","Halant","Slabo 13px","Shrikhand","Average Sans","Baloo Bhaina","Eczar","Voltaire","Herr Von Muellerhoff","Racing Sans One","Petit Formal Script","Ovo","Carrois Gothic","Jockey One","Alegreya SC","Arsenal","Encode Sans","Nixie One","Saira Condensed","Martel Sans","Tulpen One","Bowlby One SC","Bungee Inline","Judson","Marvel","Calligraffitti","GFS Didot","Gilda Display","Anonymous Pro","Graduate","Mada","Coustard","Cambo","Gabriela","Maitree","Arima Madurai","IBM Plex Mono","Encode Sans Expanded","Copse","Oxygen Mono","Merienda One","Rosario","Caudex","Titan One","Delius","Londrina Solid","Raleway Dots","Aladin","Metrophobic","Cutive Mono","Sniglet","Mukta Malar","Ceviche One","Sue Ellen Francisco","Homenaje","Kosugi Maru","Bubblegum Sans","Pattaya","Allan","Freckle Face","Goudy Bookletter 1911","Noto Serif SC","Capriola","Suranna","Kelly Slab","Mr De Haviland","Doppio One","Secular One","Baloo Bhaijaan","Suez One","Ramabhadra","David Libre","Do Hyeon","Battambang","Tauri","Mali","Kristi","Faster One","Noto Serif KR","Gurajada","Bentham","Trocchi","Anaheim","Duru Sans","Emilys Candy","Swanky and Moo Moo","Palanquin Dark","Black Han Sans","Balthazar","Wendy One","Amiko","Cutive","Niramit","Rye","Cambay","Miriam Libre","Pompiere","IM Fell Double Pica","Poly","Six Caps","Patrick Hand SC","Averia Serif Libre","Happy Monkey","Andada","Athiti","Give You Glory","Alike","Bai Jamjuree","Mukta Vaani","Overpass Mono","Federo","Carrois Gothic SC","Faustina","Cedarville Cursive","Convergence","Corben","Skranji","Chelsea Market","Seaweed Script","Oregano","Qwigley","Chonburi","Inder","Fanwood Text","Rationale","Artifika","Sriracha","Vesper Libre","Lily Script One","Montez","Andika","IM Fell DW Pica","Mate","Proza Libre","Sumana","Amethysta","Rouge Script","Cormorant Infant","IM Fell English","Baloo Bhai","Encode Sans Semi Expanded","Limelight","IM Fell English SC","Spicy Rice","Crafty Girls","Expletus Sans","Podkova","Short Stack","Sofia","Gravitas One","La Belle Aurore","Baumans","Mirza","Mallanna","Poller One","Quando","Denk One","IBM Plex Sans Condensed","Lemon","Fondamento","Rammetto One","Wallpoet","Vast Shadow","Koulen","Walter Turncoat","Mouse Memoirs","Oleo Script Swash Caps","Sansita","Galada","Clicker Script","Rozha One","Bilbo Swash Caps","Kadwa","UnifrakturMaguntia","Meddon","Cormorant SC","Rubik Mono One","Brawler","Wire One","Strait","Kurale","Prociono","Cantora One","Megrim","Mako","Vibur","Harmattan","Averia Libre","Waiting for the Sunrise","Bungee Shade","Imprima","Cherry Swash","Loved by the King","Spectral SC","McLaren","Bowlby One","Zeyada","Scope One","The Girl Next Door","Unkempt","Medula One","Stardos Stencil","Gafata","Belgrano","Italiana","Iceland","Bellefair","Finger Paint","Spirax","Tienne","Just Me Again Down Here","Krona One","Libre Barcode 39","Princess Sofia","Orienta","Delius Swash Caps","Vampiro One","Aref Ruqaa","Padauk","Amita","Mrs Saint Delafield","Noto Serif TC","Atma","Alike Angular","Salsa","Chakra Petch","Holtwood One SC","Codystar","Ledger","Nova Square","Charm","Fontdiner Swanky","Dawning of a New Day","Rakkas","Fjord One","Averia Sans Libre","Euphoria Script","Baloo Paaji","Montserrat Subrayada","Headland One","Hanalei Fill","Aleo","Katibeh","Life Savers","Baloo Chettan","Sarpanch","Mandali","Frijole","Kotta One","Over the Rainbow","Almendra","Arya","Nova Mono","Port Lligat Slab","Habibi","Kranky","Metamorphous","Voces","Uncial Antiqua","Quintessential","Baloo Tamma","Jua","Engagement","Kosugi","Shanti","Chicle","Sedgwick Ave","Encode Sans Semi Condensed","Crushed","Numans","Share Tech","Germania One","Esteban","Khmer","Taprom","BioRhyme","Antic Didone","Eater","Nova Round","Gugi","Dekko","Mukta Mahee","Creepster","Cormorant Upright","Pirata One","Baloo Thambi","Yatra One","Cherry Cream Soda","Slackey","Chau Philomene One","Milonga","Elsie","Nosifer","NTR","Condiment","Dynalight","Geo","Timmana","Mogra","Mountains of Christmas","Ramaraja","Buda","Mate SC","Delius Unicase","Sarina","Nokora","Flamenco","Kite One","Sail","Krub","Asul","Chela One","Kumar One","Sancreek","Cagliostro","Coiny","Fenix","Stint Ultra Condensed","Nova Slim","Dorsa","Paprika","Ribeye","Donegal One","Peralta","Manuale","Ruslan Display","Gaegu","Amarante","Mystery Quest","K2D","Averia Gruesa Libre","Stint Ultra Expanded","Farsan","Simonetta","Inknut Antiqua","Rosarivo","Maiden Orange","Londrina Outline","Ranchers","League Script","Bubbler One","IM Fell Great Primer","Englebert","Fascinate Inline","Meera Inimai","Trade Winds","Akronim","Junge","Croissant One","Revalia","Fresca","Marko One","Plaster","Ruluko","Stalemate","Overlock SC","Angkor","IM Fell French Canon","Text Me One","Port Lligat Sans","Lovers Quarrel","ZCOOL QingKe HuangYou","Pavanam","Bilbo","Major Mono Display","Sura","Nova Flat","Stoke","Joti One","Kodchasan","Sirin Stencil","Sonsie One","Linden Hill","Noto Sans HK","Elsie Swash Caps","Mina","Julee","Inika","Monsieur La Doulaise","Kavoon","Ranga","Baloo Tammudu","IM Fell DW Pica SC","Glass Antiqua","Autour One","Diplomata","Dangrek","Petrona","Griffy","B612 Mono","Dokdo","Redressed","Wellfleet","Della Respira","Galdeano","Modak","Eagle Lake","Jim Nightshade","Offside","Content","Ravi Prakash","Miniver","Song Myung","Henny Penny","UnifrakturCook","Sree Krushnadevaraya","Bahiana","Cormorant Unicase","Macondo Swash Caps","Margarine","Barrio","Trykker","Tillana","Baloo Da","Monofett","Lancelot","Moul","Ruthie","Rhodium Libre","Chenla","Montaga","Chathura","KoHo","Kantumruy","Bokor","IM Fell Great Primer SC","MedievalSharp","Rum Raisin","Dr Sugiyama","Underdog","Iceberg","Meie Script","Ruge Boogie","Siemreap","Odor Mean Chey","Sahitya","Chango","Jacques Francois Shadow","Asar","New Rocker","Smythe","Purple Purse","Mrs Sheppards","Poor Story","Miltonian Tattoo","Snippet","Oldenburg","Charmonman","Smokum","Metal Mania","Zilla Slab Highlight","Modern Antiqua","Arbutus","Asset","Bigshot One","Stylish","Original Surfer","Caesar Dressing","Snowburst One","Ewert","Nova Script","Suwannaphum","Diplomata SC","Irish Grover","Thasadith","Felipa","Galindo","IM Fell French Canon SC","Molle","Ribeye Marrow","Atomic Age","Libre Barcode 128","Keania One","Bayon","Goblin One","Devonshire","Jomhuria","Kirang Haerang","Kavivanar","Piedra","IM Fell Double Pica SC","Flavors","Kdam Thmor","ZCOOL XiaoWei","Freehand","Lakki Reddy","Almendra Display","Londrina Shadow","ZCOOL KuaiLe","Sunshiney","East Sea Dokdo","Almendra SC","Miss Fajardose","Vollkorn SC","Romanesco","Libre Barcode 39 Text","Jacques Francois","Macondo","Srisakdi","Fahkwang","Gorditas","Kenia","Astloch","Tenali Ramakrishna","Trochut","Jolly Lodger","GFS Neohellenic","Seymour One","Londrina Sketch","Geostar Fill","Miltonian","Nova Cut","Butterfly Kids","Risque","Nova Oval","Bungee Outline","Fascinate","Supermercado One","Kumar One Outline","Passero One","Sedgwick Ave Display","Combo","Unlock","Libre Barcode 39 Extended Text","B612","Metal","Libre Barcode 39 Extended","Emblema One","Black And White Picture","Gidugu","Cute Font","Butcherman","Sofadi One","Bigelow Rules","Preahvihear","Sevillana","Mr Bedfort","Bungee Hairline","Gamja Flower","Fruktur","Aubrey","Bonbon","Erica One","Suravaram","Geostar","Federant","Peddana","Fasthand","Hanalei","Stalinist One","Libre Barcode 128 Text","Dhurjati","Moulpali","BioRhyme Expanded","Hi Melody","Yeon Sung","Warnes","Notable"]
1
+ ["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Oswald","Source Sans Pro","Raleway","Merriweather","Roboto Slab","Roboto Mono","Poppins","PT Sans","Noto Sans","Ubuntu","Slabo 27px","Open Sans Condensed","Playfair Display","Lora","PT Serif","Muli","Titillium Web","Nunito","PT Sans Narrow","Noto Sans JP","Rubik","Noto Serif","Fira Sans","Nanum Gothic","Arimo","Work Sans","Quicksand","Noto Sans KR","Dosis","Heebo","Oxygen","Inconsolata","Crimson Text","Josefin Sans","Nunito Sans","Libre Baskerville","Libre Franklin","Anton","Bitter","Hind","Cabin","Fjalla One","Karla","Indie Flower","Lobster","Arvo","Abel","Noto Sans TC","Hind Siliguri","Teko","Exo 2","Pacifico","Varela Round","Dancing Script","Source Serif Pro","Merriweather Sans","Mukta","Asap","Yanone Kaffeesatz","Barlow","Shadows Into Light","Abril Fatface","Cairo","Source Code Pro","Catamaran","Kanit","Bree Serif","EB Garamond","Acme","Archivo Narrow","Righteous","Questrial","Comfortaa","Exo","Amatic SC","Fira Sans Condensed","Ubuntu Condensed","Maven Pro","Play","Barlow Condensed","Amiri","Rajdhani","Cinzel","Domine","Signika","News Cycle","Ropa Sans","Francois One","Permanent Marker","Crete Round","Assistant","Vollkorn","Noticia Text","Overpass","Satisfy","Gloria Hallelujah","Patua One","Hind Madurai","Cutive Mono","Gothic A1","Prompt","Rokkitt","Alegreya","IBM Plex Sans","Cuprum","Noto Sans SC","Courgette","PT Sans Caption","Old Standard TT","Alfa Slab One","Martel","Alegreya Sans","ABeeZee","Caveat","Concert One","Frank Ruhl Libre","Cardo","Cormorant Garamond","Cookie","Kaushan Script","Great Vibes","Kalam","Didact Gothic","Pathway Gothic One","Barlow Semi Condensed","Tinos","Viga","Orbitron","Special Elite","Fira Sans Extra Condensed","Quattrocento Sans","Cantarell","Archivo Black","Playfair Display SC","Zilla Slab","Lobster Two","Volkhov","Russo One","Fredoka One","Chivo","Nanum Myeongjo","Tajawal","Tangerine","Hind Guntur","Saira","Poiret One","Sacramento","Boogaloo","Quattrocento","Monda","Luckiest Guy","Passion One","Hind Vadodara","Saira Extra Condensed","Gochi Hand","M PLUS 1p","BenchNine","Neucha","IBM Plex Serif","Changa","Cabin Condensed","Khand","Prata","Handlee","Lalezar","Ultra","Patrick Hand","Istok Web","Josefin Slab","Arapey","Gudea","Sanchez","Asap Condensed","Sawarabi Mincho","Neuton","Merienda","Philosopher","Allerta Stencil","Ruda","Sorts Mill Goudy","Bangers","Hammersmith One","Yantramanav","Pontano Sans","Pragati Narrow","Montserrat Alternates","Taviraj","Monoton","Yrsa","Signika Negative","Unica One","Sigmar One","Economica","Pridi","Vidaloka","Marck Script","Audiowide","Archivo","Advent Pro","Armata","Saira Semi Condensed","Schoolbell","Varela","Press Start 2P","Noto Serif JP","Bad Script","Yellowtail","Adamina","Kreon","Amaranth","Alice","Gentium Basic","Staatliches","Architects Daughter","Gentium Book Basic","Sintony","Enriqueta","Playball","Julius Sans One","PT Mono","Days One","Rasa","Sarala","Spectral","Rock Salt","Fugaz One","Paytone One","Glegoo","El Messiri","Carter One","Damion","Alegreya Sans SC","Allura","Shadows Into Light Two","Unna","Cousine","Share Tech Mono","Actor","Arbutus Slab","Homemade Apple","Mitr","Ubuntu Mono","Oleo Script","Antic Slab","Italianno","Covered By Your Grace","Parisienne","Lusitana","Molengo","PT Serif Caption","Marcellus","Bevan","Khula","Nothing You Could Do","Baloo","Aldrich","Cormorant","Karma","Sawarabi Gothic","Belleza","Scheherazade","Chewy","Rubik Mono One","Jura","Cantata One","Rancho","Allerta","Scada","Leckerli One","Mr Dafoe","Alex Brush","Antic","Encode Sans Condensed","Abhaya Libre","Rambla","Pinyon Script","Lustria","Michroma","Niconne","Sunflower","Spinnaker","Pangolin","Reenie Beanie","Radley","Basic","Hanuman","Average","Nanum Gothic Coding","Nobile","Black Ops One","Nanum Pen Script","Jaldi","Kameron","Fredericka the Great","Coda","M PLUS Rounded 1c","Forum","Caveat Brush","Lemonada","IBM Plex Mono","Lateef","Candal","Palanquin","Cabin Sketch","Syncopate","Cinzel Decorative","Biryani","Magra","Quantico","Electrolize","Tenor Sans","Share","Berkshire Swash","Alef","Just Another Hand","Marcellus SC","Oranienbaum","Rochester","Coming Soon","Overlock","Rufina","Annie Use Your Telescope","Reem Kufi","Voltaire","Lilita One","Itim","Buenard","Laila","Love Ya Like A Sister","Yesteryear","Shojumaru","Gruppo","Changa One","Encode Sans","Arima Madurai","Slabo 13px","Space Mono","Ovo","Knewave","Marmelad","Aclonica","Bungee","Halant","Fauna One","Squada One","Grand Hotel","Saira Condensed","Prosto One","Sarabun","Carme","Martel Sans","Anonymous Pro","Tulpen One","Markazi Text","Marvel","Cambo","Alegreya SC","Nanum Brush Script","Coda Caption","Telex","Petit Formal Script","Lekton","Jockey One","Raleway Dots","Fira Mono","Shrikhand","Trirong","Arizonia","Mada","Racing Sans One","Yeseva One","GFS Didot","VT323","Bungee Inline","Gilda Display","Nixie One","Carrois Gothic","Oxygen Mono","Patrick Hand SC","Contrail One","Copse","Arsenal","Merienda One","Eczar","Coustard","IM Fell English SC","Kosugi Maru","Rosario","Baloo Bhaina","Titan One","Londrina Solid","Metrophobic","Pompiere","Ceviche One","Suranna","Norican","Allan","Freckle Face","Calligraffitti","Mr De Haviland","Bowlby One SC","Aladin","Bubblegum Sans","Goudy Bookletter 1911","Herr Von Muellerhoff","Caudex","Delius","Noto Serif SC","Homenaje","Sue Ellen Francisco","Mukta Malar","Judson","Graduate","Niramit","Pattaya","Maitree","Kelly Slab","Doppio One","Give You Glory","Capriola","Suez One","Happy Monkey","Encode Sans Expanded","Puritan","Tauri","Do Hyeon","Mali","Trocchi","Balthazar","Duru Sans","Noto Serif KR","IM Fell Double Pica","Cutive","Emilys Candy","Cambay","Miriam Libre","Secular One","Faster One","Palanquin Dark","Black Han Sans","Kristi","Average Sans","Wendy One","Rye","Andada","Averia Serif Libre","Baloo Bhaijaan","Athiti","Chonburi","Gabriela","Alike","Cedarville Cursive","Rozha One","Bai Jamjuree","Six Caps","Poller One","Anaheim","Corben","Carrois Gothic SC","Chelsea Market","Bentham","Mukta Vaani","Sriracha","Skranji","Mate","Seaweed Script","Convergence","Qwigley","Oregano","IM Fell DW Pica","Lily Script One","Poly","Amiko","Montez","Faustina","Federo","IM Fell English","Rouge Script","Baloo Bhai","Fanwood Text","Artifika","Cormorant Infant","Hanalei Fill","Inder","Encode Sans Semi Expanded","Short Stack","Proza Libre","Vesper Libre","Rationale","Ramabhadra","Andika","Gravitas One","Rammetto One","Mirza","Crafty Girls","Baumans","Overpass Mono","Cormorant SC","Bilbo Swash Caps","Denk One","Fondamento","La Belle Aurore","Clicker Script","Amethysta","Limelight","Stardos Stencil","Walter Turncoat","Unkempt","Gurajada","Vast Shadow","Kadwa","Iceland","Mallanna","Quando","Battambang","Sniglet","Oleo Script Swash Caps","Meddon","Expletus Sans","Wallpoet","Sansita","UnifrakturMaguntia","Galada","Wire One","Kotta One","Podkova","Gafata","Loved by the King","Aguafina Script","Brawler","Spicy Rice","Mouse Memoirs","Noto Serif TC","Zeyada","Sofia","Prociono","Waiting for the Sunrise","Scope One","Bellefair","The Girl Next Door","Harmattan","Padauk","Strait","Mako","IBM Plex Sans Condensed","Megrim","Lemon","Bungee Shade","Bowlby One","Kurale","Orienta","McLaren","Baloo Paaji","Belgrano","Euphoria Script","Vampiro One","Medula One","Amita","Just Me Again Down Here","Vibur","Italiana","Delius Swash Caps","Tienne","Mandali","Chakra Petch","Spectral SC","Averia Libre","Quintessential","Katibeh","Finger Paint","Cantora One","Arya","Fresca","Libre Barcode 39","Cormorant Upright","Imprima","Spirax","Atma","Charm","Codystar","Rakkas","Krona One","Dawning of a New Day","Alike Angular","Cherry Swash","Baloo Chettan","Salsa","Headland One","Metamorphous","Frijole","Jua","Aleo","Nova Mono","Holtwood One SC","Over the Rainbow","David Libre","Averia Sans Libre","Ledger","Crushed","Sedgwick Ave","Almendra","Aref Ruqaa","Sarpanch","Kosugi","Montserrat Subrayada","Nova Square","Fontdiner Swanky","Life Savers","Habibi","Mrs Saint Delafield","Chicle","Uncial Antiqua","Fjord One","Dekko","Elsie","Engagement","Kranky","Voces","K2D","Port Lligat Slab","Sumana","Mogra","Share Tech","Nova Round","NTR","Gugi","Encode Sans Semi Condensed","Baloo Tamma","Creepster","Shanti","Kumar One","Mukta Mahee","Germania One","Esteban","Numans","Geo","Swanky and Moo Moo","Pirata One","Slackey","Koulen","Taprom","Antic Didone","Cherry Cream Soda","BioRhyme","Yatra One","Milonga","Fenix","Mate SC","Krub","Chau Philomene One","Baloo Thambi","Delius Unicase","Condiment","Sail","Mountains of Christmas","Kite One","Ribeye","Dynalight","Flamenco","Modak","Chela One","Londrina Outline","Peralta","Asul","Paprika","Ruslan Display","Timmana","Plaster","Eater","League Script","Cagliostro","Sarina","Lovers Quarrel","Khmer","Meera Inimai","Ramaraja","Bubbler One","Amarante","Maiden Orange","Stint Ultra Condensed","Averia Gruesa Libre","Mystery Quest","Nova Slim","Nosifer","Pavanam","Simonetta","Stylish","Gaegu","Dorsa","Sura","Princess Sofia","Junge","Inknut Antiqua","Sancreek","Englebert","Overlock SC","Ranchers","Rosarivo","Trade Winds","Stoke","Farsan","Coiny","Ruluko","Donegal One","Noto Sans HK","IM Fell French Canon","Manuale","Major Mono Display","Nokora","IM Fell Great Primer","Stint Ultra Expanded","Croissant One","Stalemate","Akronim","Nova Flat","Sonsie One","Port Lligat Sans","ZCOOL QingKe HuangYou","Buda","IM Fell DW Pica SC","Linden Hill","Glass Antiqua","Marko One","Revalia","Margarine","Sirin Stencil","Baloo Tammudu","Text Me One","Kavoon","Monsieur La Doulaise","Thasadith","Diplomata","Julee","Offside","Mina","Ranga","New Rocker","Bilbo","Elsie Swash Caps","Autour One","Eagle Lake","Griffy","Bahiana","Song Myung","Wellfleet","Henny Penny","B612 Mono","Joti One","Cormorant Unicase","Angkor","Miniver","Petrona","Dokdo","Della Respira","IM Fell Great Primer SC","Underdog","UnifrakturCook","Moul","Dangrek","Inika","Sree Krushnadevaraya","Rhodium Libre","Bokor","Trykker","Barrio","Redressed","Vollkorn SC","Montaga","Miss Fajardose","Galdeano","Monofett","Srisakdi","Ruge Boogie","Ravi Prakash","Tillana","Fascinate Inline","MedievalSharp","Smythe","Ruthie","KoHo","Siemreap","Suwannaphum","Content","Baloo Da","Rum Raisin","Iceberg","Jim Nightshade","Purple Purse","Mrs Sheppards","Oldenburg","Macondo Swash Caps","Keania One","Chathura","Lancelot","Chango","Metal Mania","Snippet","Asar","Bigshot One","Sahitya","Charmonman","Original Surfer","Ribeye Marrow","Miltonian Tattoo","Poor Story","Meie Script","Asset","Zilla Slab Highlight","Dr Sugiyama","Modern Antiqua","IM Fell French Canon SC","Jacques Francois Shadow","Freehand","Arbutus","Goblin One","Atomic Age","Snowburst One","Odor Mean Chey","Kodchasan","Bayon","Galindo","Kavivanar","Molle","Nova Script","Kantumruy","Caesar Dressing","Devonshire","Irish Grover","Tenali Ramakrishna","Ewert","Diplomata SC","Smokum","Felipa","IM Fell Double Pica SC","Piedra","ZCOOL KuaiLe","Jomhuria","Kirang Haerang","Kenia","Chenla","Libre Barcode 128","ZCOOL XiaoWei","Almendra Display","Flavors","Romanesco","Sunshiney","Kdam Thmor","Risque","Jacques Francois","Seymour One","Astloch","Macondo","Almendra SC","Londrina Shadow","Lakki Reddy","Fahkwang","Gorditas","Nova Oval","Libre Barcode 39 Text","Butterfly Kids","Geostar Fill","Gamja Flower","GFS Neohellenic","Sedgwick Ave Display","Nova Cut","Supermercado One","Trochut","Fascinate","Jolly Lodger","Londrina Sketch","Miltonian","Kumar One Outline","Combo","East Sea Dokdo","Butcherman","Libre Barcode 39 Extended Text","Metal","Bungee Outline","Bungee Hairline","Sofadi One","Libre Barcode 39 Extended","Bigelow Rules","Passero One","Black And White Picture","Cute Font","Unlock","Sevillana","Emblema One","Erica One","Mr Bedfort","Bonbon","Geostar","Aubrey","Suravaram","Fruktur","Preahvihear","Hanalei","Federant","Gidugu","B612","Fasthand","Peddana","Libre Barcode 128 Text","Stalinist One","Dhurjati","Hi Melody","Moulpali","BioRhyme Expanded","Yeon Sung","Warnes","Notable"]
modules/webfonts/webfonts.json CHANGED
@@ -1 +1 @@
1
- {"items":{"ABeeZee":{"family":"ABeeZee","category":"sans-serif","variants":["italic","regular"]},"Abel":{"family":"Abel","category":"sans-serif","variants":["regular"]},"Abhaya Libre":{"family":"Abhaya Libre","category":"serif","variants":["500","600","700","800","regular"]},"Abril Fatface":{"family":"Abril Fatface","category":"display","variants":["regular"]},"Aclonica":{"family":"Aclonica","category":"sans-serif","variants":["regular"]},"Acme":{"family":"Acme","category":"sans-serif","variants":["regular"]},"Actor":{"family":"Actor","category":"sans-serif","variants":["regular"]},"Adamina":{"family":"Adamina","category":"serif","variants":["regular"]},"Advent Pro":{"family":"Advent Pro","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Aguafina Script":{"family":"Aguafina Script","category":"handwriting","variants":["regular"]},"Akronim":{"family":"Akronim","category":"display","variants":["regular"]},"Aladin":{"family":"Aladin","category":"handwriting","variants":["regular"]},"Aldrich":{"family":"Aldrich","category":"sans-serif","variants":["regular"]},"Alef":{"family":"Alef","category":"sans-serif","variants":["700","regular"]},"Alegreya":{"family":"Alegreya","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya SC":{"family":"Alegreya SC","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans":{"family":"Alegreya Sans","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans SC":{"family":"Alegreya Sans SC","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Aleo":{"family":"Aleo","category":"serif","variants":["300","300italic","700","700italic","italic","regular"]},"Alex Brush":{"family":"Alex Brush","category":"handwriting","variants":["regular"]},"Alfa Slab One":{"family":"Alfa Slab One","category":"display","variants":["regular"]},"Alice":{"family":"Alice","category":"serif","variants":["regular"]},"Alike":{"family":"Alike","category":"serif","variants":["regular"]},"Alike Angular":{"family":"Alike Angular","category":"serif","variants":["regular"]},"Allan":{"family":"Allan","category":"display","variants":["700","regular"]},"Allerta":{"family":"Allerta","category":"sans-serif","variants":["regular"]},"Allerta Stencil":{"family":"Allerta Stencil","category":"sans-serif","variants":["regular"]},"Allura":{"family":"Allura","category":"handwriting","variants":["regular"]},"Almendra":{"family":"Almendra","category":"serif","variants":["700","700italic","italic","regular"]},"Almendra Display":{"family":"Almendra Display","category":"display","variants":["regular"]},"Almendra SC":{"family":"Almendra SC","category":"serif","variants":["regular"]},"Amarante":{"family":"Amarante","category":"display","variants":["regular"]},"Amaranth":{"family":"Amaranth","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Amatic SC":{"family":"Amatic SC","category":"handwriting","variants":["700","regular"]},"Amethysta":{"family":"Amethysta","category":"serif","variants":["regular"]},"Amiko":{"family":"Amiko","category":"sans-serif","variants":["600","700","regular"]},"Amiri":{"family":"Amiri","category":"serif","variants":["700","700italic","italic","regular"]},"Amita":{"family":"Amita","category":"handwriting","variants":["700","regular"]},"Anaheim":{"family":"Anaheim","category":"sans-serif","variants":["regular"]},"Andada":{"family":"Andada","category":"serif","variants":["regular"]},"Andika":{"family":"Andika","category":"sans-serif","variants":["regular"]},"Angkor":{"family":"Angkor","category":"display","variants":["regular"]},"Annie Use Your Telescope":{"family":"Annie Use Your Telescope","category":"handwriting","variants":["regular"]},"Anonymous Pro":{"family":"Anonymous Pro","category":"monospace","variants":["700","700italic","italic","regular"]},"Antic":{"family":"Antic","category":"sans-serif","variants":["regular"]},"Antic Didone":{"family":"Antic Didone","category":"serif","variants":["regular"]},"Antic Slab":{"family":"Antic Slab","category":"serif","variants":["regular"]},"Anton":{"family":"Anton","category":"sans-serif","variants":["regular"]},"Arapey":{"family":"Arapey","category":"serif","variants":["italic","regular"]},"Arbutus":{"family":"Arbutus","category":"display","variants":["regular"]},"Arbutus Slab":{"family":"Arbutus Slab","category":"serif","variants":["regular"]},"Architects Daughter":{"family":"Architects Daughter","category":"handwriting","variants":["regular"]},"Archivo":{"family":"Archivo","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Archivo Black":{"family":"Archivo Black","category":"sans-serif","variants":["regular"]},"Archivo Narrow":{"family":"Archivo Narrow","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Aref Ruqaa":{"family":"Aref Ruqaa","category":"serif","variants":["700","regular"]},"Arima Madurai":{"family":"Arima Madurai","category":"display","variants":["100","200","300","500","700","800","900","regular"]},"Arimo":{"family":"Arimo","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Arizonia":{"family":"Arizonia","category":"handwriting","variants":["regular"]},"Armata":{"family":"Armata","category":"sans-serif","variants":["regular"]},"Arsenal":{"family":"Arsenal","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Artifika":{"family":"Artifika","category":"serif","variants":["regular"]},"Arvo":{"family":"Arvo","category":"serif","variants":["700","700italic","italic","regular"]},"Arya":{"family":"Arya","category":"sans-serif","variants":["700","regular"]},"Asap":{"family":"Asap","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asap Condensed":{"family":"Asap Condensed","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asar":{"family":"Asar","category":"serif","variants":["regular"]},"Asset":{"family":"Asset","category":"display","variants":["regular"]},"Assistant":{"family":"Assistant","category":"sans-serif","variants":["200","300","600","700","800","regular"]},"Astloch":{"family":"Astloch","category":"display","variants":["700","regular"]},"Asul":{"family":"Asul","category":"sans-serif","variants":["700","regular"]},"Athiti":{"family":"Athiti","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Atma":{"family":"Atma","category":"display","variants":["300","500","600","700","regular"]},"Atomic Age":{"family":"Atomic Age","category":"display","variants":["regular"]},"Aubrey":{"family":"Aubrey","category":"display","variants":["regular"]},"Audiowide":{"family":"Audiowide","category":"display","variants":["regular"]},"Autour One":{"family":"Autour One","category":"display","variants":["regular"]},"Average":{"family":"Average","category":"serif","variants":["regular"]},"Average Sans":{"family":"Average Sans","category":"sans-serif","variants":["regular"]},"Averia Gruesa Libre":{"family":"Averia Gruesa Libre","category":"display","variants":["regular"]},"Averia Libre":{"family":"Averia Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Sans Libre":{"family":"Averia Sans Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Serif Libre":{"family":"Averia Serif Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"B612":{"family":"B612","category":"sans-serif","variants":["700","700italic","italic","regular"]},"B612 Mono":{"family":"B612 Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Bad Script":{"family":"Bad Script","category":"handwriting","variants":["regular"]},"Bahiana":{"family":"Bahiana","category":"display","variants":["regular"]},"Bai Jamjuree":{"family":"Bai Jamjuree","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Baloo":{"family":"Baloo","category":"display","variants":["regular"]},"Baloo Bhai":{"family":"Baloo Bhai","category":"display","variants":["regular"]},"Baloo Bhaijaan":{"family":"Baloo Bhaijaan","category":"display","variants":["regular"]},"Baloo Bhaina":{"family":"Baloo Bhaina","category":"display","variants":["regular"]},"Baloo Chettan":{"family":"Baloo Chettan","category":"display","variants":["regular"]},"Baloo Da":{"family":"Baloo Da","category":"display","variants":["regular"]},"Baloo Paaji":{"family":"Baloo Paaji","category":"display","variants":["regular"]},"Baloo Tamma":{"family":"Baloo Tamma","category":"display","variants":["regular"]},"Baloo Tammudu":{"family":"Baloo Tammudu","category":"display","variants":["regular"]},"Baloo Thambi":{"family":"Baloo Thambi","category":"display","variants":["regular"]},"Balthazar":{"family":"Balthazar","category":"serif","variants":["regular"]},"Bangers":{"family":"Bangers","category":"display","variants":["regular"]},"Barlow":{"family":"Barlow","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Condensed":{"family":"Barlow Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Semi Condensed":{"family":"Barlow Semi Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barrio":{"family":"Barrio","category":"display","variants":["regular"]},"Basic":{"family":"Basic","category":"sans-serif","variants":["regular"]},"Battambang":{"family":"Battambang","category":"display","variants":["700","regular"]},"Baumans":{"family":"Baumans","category":"display","variants":["regular"]},"Bayon":{"family":"Bayon","category":"display","variants":["regular"]},"Belgrano":{"family":"Belgrano","category":"serif","variants":["regular"]},"Bellefair":{"family":"Bellefair","category":"serif","variants":["regular"]},"Belleza":{"family":"Belleza","category":"sans-serif","variants":["regular"]},"BenchNine":{"family":"BenchNine","category":"sans-serif","variants":["300","700","regular"]},"Bentham":{"family":"Bentham","category":"serif","variants":["regular"]},"Berkshire Swash":{"family":"Berkshire Swash","category":"handwriting","variants":["regular"]},"Bevan":{"family":"Bevan","category":"display","variants":["regular"]},"Bigelow Rules":{"family":"Bigelow Rules","category":"display","variants":["regular"]},"Bigshot One":{"family":"Bigshot One","category":"display","variants":["regular"]},"Bilbo":{"family":"Bilbo","category":"handwriting","variants":["regular"]},"Bilbo Swash Caps":{"family":"Bilbo Swash Caps","category":"handwriting","variants":["regular"]},"BioRhyme":{"family":"BioRhyme","category":"serif","variants":["200","300","700","800","regular"]},"BioRhyme Expanded":{"family":"BioRhyme Expanded","category":"serif","variants":["200","300","700","800","regular"]},"Biryani":{"family":"Biryani","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Bitter":{"family":"Bitter","category":"serif","variants":["700","italic","regular"]},"Black And White Picture":{"family":"Black And White Picture","category":"sans-serif","variants":["regular"]},"Black Han Sans":{"family":"Black Han Sans","category":"sans-serif","variants":["regular"]},"Black Ops One":{"family":"Black Ops One","category":"display","variants":["regular"]},"Bokor":{"family":"Bokor","category":"display","variants":["regular"]},"Bonbon":{"family":"Bonbon","category":"handwriting","variants":["regular"]},"Boogaloo":{"family":"Boogaloo","category":"display","variants":["regular"]},"Bowlby One":{"family":"Bowlby One","category":"display","variants":["regular"]},"Bowlby One SC":{"family":"Bowlby One SC","category":"display","variants":["regular"]},"Brawler":{"family":"Brawler","category":"serif","variants":["regular"]},"Bree Serif":{"family":"Bree Serif","category":"serif","variants":["regular"]},"Bubblegum Sans":{"family":"Bubblegum Sans","category":"display","variants":["regular"]},"Bubbler One":{"family":"Bubbler One","category":"sans-serif","variants":["regular"]},"Buda":{"family":"Buda","category":"display","variants":["300"]},"Buenard":{"family":"Buenard","category":"serif","variants":["700","regular"]},"Bungee":{"family":"Bungee","category":"display","variants":["regular"]},"Bungee Hairline":{"family":"Bungee Hairline","category":"display","variants":["regular"]},"Bungee Inline":{"family":"Bungee Inline","category":"display","variants":["regular"]},"Bungee Outline":{"family":"Bungee Outline","category":"display","variants":["regular"]},"Bungee Shade":{"family":"Bungee Shade","category":"display","variants":["regular"]},"Butcherman":{"family":"Butcherman","category":"display","variants":["regular"]},"Butterfly Kids":{"family":"Butterfly Kids","category":"handwriting","variants":["regular"]},"Cabin":{"family":"Cabin","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Cabin Condensed":{"family":"Cabin Condensed","category":"sans-serif","variants":["500","600","700","regular"]},"Cabin Sketch":{"family":"Cabin Sketch","category":"display","variants":["700","regular"]},"Caesar Dressing":{"family":"Caesar Dressing","category":"display","variants":["regular"]},"Cagliostro":{"family":"Cagliostro","category":"sans-serif","variants":["regular"]},"Cairo":{"family":"Cairo","category":"sans-serif","variants":["200","300","600","700","900","regular"]},"Calligraffitti":{"family":"Calligraffitti","category":"handwriting","variants":["regular"]},"Cambay":{"family":"Cambay","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cambo":{"family":"Cambo","category":"serif","variants":["regular"]},"Candal":{"family":"Candal","category":"sans-serif","variants":["regular"]},"Cantarell":{"family":"Cantarell","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cantata One":{"family":"Cantata One","category":"serif","variants":["regular"]},"Cantora One":{"family":"Cantora One","category":"sans-serif","variants":["regular"]},"Capriola":{"family":"Capriola","category":"sans-serif","variants":["regular"]},"Cardo":{"family":"Cardo","category":"serif","variants":["700","italic","regular"]},"Carme":{"family":"Carme","category":"sans-serif","variants":["regular"]},"Carrois Gothic":{"family":"Carrois Gothic","category":"sans-serif","variants":["regular"]},"Carrois Gothic SC":{"family":"Carrois Gothic SC","category":"sans-serif","variants":["regular"]},"Carter One":{"family":"Carter One","category":"display","variants":["regular"]},"Catamaran":{"family":"Catamaran","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Caudex":{"family":"Caudex","category":"serif","variants":["700","700italic","italic","regular"]},"Caveat":{"family":"Caveat","category":"handwriting","variants":["700","regular"]},"Caveat Brush":{"family":"Caveat Brush","category":"handwriting","variants":["regular"]},"Cedarville Cursive":{"family":"Cedarville Cursive","category":"handwriting","variants":["regular"]},"Ceviche One":{"family":"Ceviche One","category":"display","variants":["regular"]},"Chakra Petch":{"family":"Chakra Petch","category":"sans-serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Changa":{"family":"Changa","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Changa One":{"family":"Changa One","category":"display","variants":["italic","regular"]},"Chango":{"family":"Chango","category":"display","variants":["regular"]},"Charm":{"family":"Charm","category":"handwriting","variants":["700","regular"]},"Charmonman":{"family":"Charmonman","category":"handwriting","variants":["700","regular"]},"Chathura":{"family":"Chathura","category":"sans-serif","variants":["100","300","700","800","regular"]},"Chau Philomene One":{"family":"Chau Philomene One","category":"sans-serif","variants":["italic","regular"]},"Chela One":{"family":"Chela One","category":"display","variants":["regular"]},"Chelsea Market":{"family":"Chelsea Market","category":"display","variants":["regular"]},"Chenla":{"family":"Chenla","category":"display","variants":["regular"]},"Cherry Cream Soda":{"family":"Cherry Cream Soda","category":"display","variants":["regular"]},"Cherry Swash":{"family":"Cherry Swash","category":"display","variants":["700","regular"]},"Chewy":{"family":"Chewy","category":"display","variants":["regular"]},"Chicle":{"family":"Chicle","category":"display","variants":["regular"]},"Chivo":{"family":"Chivo","category":"sans-serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Chonburi":{"family":"Chonburi","category":"display","variants":["regular"]},"Cinzel":{"family":"Cinzel","category":"serif","variants":["700","900","regular"]},"Cinzel Decorative":{"family":"Cinzel Decorative","category":"display","variants":["700","900","regular"]},"Clicker Script":{"family":"Clicker Script","category":"handwriting","variants":["regular"]},"Coda":{"family":"Coda","category":"display","variants":["800","regular"]},"Coda Caption":{"family":"Coda Caption","category":"sans-serif","variants":["800"]},"Codystar":{"family":"Codystar","category":"display","variants":["300","regular"]},"Coiny":{"family":"Coiny","category":"display","variants":["regular"]},"Combo":{"family":"Combo","category":"display","variants":["regular"]},"Comfortaa":{"family":"Comfortaa","category":"display","variants":["300","500","600","700","regular"]},"Coming Soon":{"family":"Coming Soon","category":"handwriting","variants":["regular"]},"Concert One":{"family":"Concert One","category":"display","variants":["regular"]},"Condiment":{"family":"Condiment","category":"handwriting","variants":["regular"]},"Content":{"family":"Content","category":"display","variants":["700","regular"]},"Contrail One":{"family":"Contrail One","category":"display","variants":["regular"]},"Convergence":{"family":"Convergence","category":"sans-serif","variants":["regular"]},"Cookie":{"family":"Cookie","category":"handwriting","variants":["regular"]},"Copse":{"family":"Copse","category":"serif","variants":["regular"]},"Corben":{"family":"Corben","category":"display","variants":["700","regular"]},"Cormorant":{"family":"Cormorant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Garamond":{"family":"Cormorant Garamond","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Infant":{"family":"Cormorant Infant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant SC":{"family":"Cormorant SC","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Unicase":{"family":"Cormorant Unicase","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Upright":{"family":"Cormorant Upright","category":"serif","variants":["300","500","600","700","regular"]},"Courgette":{"family":"Courgette","category":"handwriting","variants":["regular"]},"Cousine":{"family":"Cousine","category":"monospace","variants":["700","700italic","italic","regular"]},"Coustard":{"family":"Coustard","category":"serif","variants":["900","regular"]},"Covered By Your Grace":{"family":"Covered By Your Grace","category":"handwriting","variants":["regular"]},"Crafty Girls":{"family":"Crafty Girls","category":"handwriting","variants":["regular"]},"Creepster":{"family":"Creepster","category":"display","variants":["regular"]},"Crete Round":{"family":"Crete Round","category":"serif","variants":["italic","regular"]},"Crimson Text":{"family":"Crimson Text","category":"serif","variants":["600","600italic","700","700italic","italic","regular"]},"Croissant One":{"family":"Croissant One","category":"display","variants":["regular"]},"Crushed":{"family":"Crushed","category":"display","variants":["regular"]},"Cuprum":{"family":"Cuprum","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cute Font":{"family":"Cute Font","category":"display","variants":["regular"]},"Cutive":{"family":"Cutive","category":"serif","variants":["regular"]},"Cutive Mono":{"family":"Cutive Mono","category":"monospace","variants":["regular"]},"Damion":{"family":"Damion","category":"handwriting","variants":["regular"]},"Dancing Script":{"family":"Dancing Script","category":"handwriting","variants":["700","regular"]},"Dangrek":{"family":"Dangrek","category":"display","variants":["regular"]},"David Libre":{"family":"David Libre","category":"serif","variants":["500","700","regular"]},"Dawning of a New Day":{"family":"Dawning of a New Day","category":"handwriting","variants":["regular"]},"Days One":{"family":"Days One","category":"sans-serif","variants":["regular"]},"Dekko":{"family":"Dekko","category":"handwriting","variants":["regular"]},"Delius":{"family":"Delius","category":"handwriting","variants":["regular"]},"Delius Swash Caps":{"family":"Delius Swash Caps","category":"handwriting","variants":["regular"]},"Delius Unicase":{"family":"Delius Unicase","category":"handwriting","variants":["700","regular"]},"Della Respira":{"family":"Della Respira","category":"serif","variants":["regular"]},"Denk One":{"family":"Denk One","category":"sans-serif","variants":["regular"]},"Devonshire":{"family":"Devonshire","category":"handwriting","variants":["regular"]},"Dhurjati":{"family":"Dhurjati","category":"sans-serif","variants":["regular"]},"Didact Gothic":{"family":"Didact Gothic","category":"sans-serif","variants":["regular"]},"Diplomata":{"family":"Diplomata","category":"display","variants":["regular"]},"Diplomata SC":{"family":"Diplomata SC","category":"display","variants":["regular"]},"Do Hyeon":{"family":"Do Hyeon","category":"sans-serif","variants":["regular"]},"Dokdo":{"family":"Dokdo","category":"handwriting","variants":["regular"]},"Domine":{"family":"Domine","category":"serif","variants":["700","regular"]},"Donegal One":{"family":"Donegal One","category":"serif","variants":["regular"]},"Doppio One":{"family":"Doppio One","category":"sans-serif","variants":["regular"]},"Dorsa":{"family":"Dorsa","category":"sans-serif","variants":["regular"]},"Dosis":{"family":"Dosis","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Dr Sugiyama":{"family":"Dr Sugiyama","category":"handwriting","variants":["regular"]},"Duru Sans":{"family":"Duru Sans","category":"sans-serif","variants":["regular"]},"Dynalight":{"family":"Dynalight","category":"display","variants":["regular"]},"EB Garamond":{"family":"EB Garamond","category":"serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Eagle Lake":{"family":"Eagle Lake","category":"handwriting","variants":["regular"]},"East Sea Dokdo":{"family":"East Sea Dokdo","category":"handwriting","variants":["regular"]},"Eater":{"family":"Eater","category":"display","variants":["regular"]},"Economica":{"family":"Economica","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Eczar":{"family":"Eczar","category":"serif","variants":["500","600","700","800","regular"]},"El Messiri":{"family":"El Messiri","category":"sans-serif","variants":["500","600","700","regular"]},"Electrolize":{"family":"Electrolize","category":"sans-serif","variants":["regular"]},"Elsie":{"family":"Elsie","category":"display","variants":["900","regular"]},"Elsie Swash Caps":{"family":"Elsie Swash Caps","category":"display","variants":["900","regular"]},"Emblema One":{"family":"Emblema One","category":"display","variants":["regular"]},"Emilys Candy":{"family":"Emilys Candy","category":"display","variants":["regular"]},"Encode Sans":{"family":"Encode Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Condensed":{"family":"Encode Sans Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Expanded":{"family":"Encode Sans Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Condensed":{"family":"Encode Sans Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Expanded":{"family":"Encode Sans Semi Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Engagement":{"family":"Engagement","category":"handwriting","variants":["regular"]},"Englebert":{"family":"Englebert","category":"sans-serif","variants":["regular"]},"Enriqueta":{"family":"Enriqueta","category":"serif","variants":["700","regular"]},"Erica One":{"family":"Erica One","category":"display","variants":["regular"]},"Esteban":{"family":"Esteban","category":"serif","variants":["regular"]},"Euphoria Script":{"family":"Euphoria Script","category":"handwriting","variants":["regular"]},"Ewert":{"family":"Ewert","category":"display","variants":["regular"]},"Exo":{"family":"Exo","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Exo 2":{"family":"Exo 2","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Expletus Sans":{"family":"Expletus Sans","category":"display","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Fahkwang":{"family":"Fahkwang","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Fanwood Text":{"family":"Fanwood Text","category":"serif","variants":["italic","regular"]},"Farsan":{"family":"Farsan","category":"display","variants":["regular"]},"Fascinate":{"family":"Fascinate","category":"display","variants":["regular"]},"Fascinate Inline":{"family":"Fascinate Inline","category":"display","variants":["regular"]},"Faster One":{"family":"Faster One","category":"display","variants":["regular"]},"Fasthand":{"family":"Fasthand","category":"serif","variants":["regular"]},"Fauna One":{"family":"Fauna One","category":"serif","variants":["regular"]},"Faustina":{"family":"Faustina","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Federant":{"family":"Federant","category":"display","variants":["regular"]},"Federo":{"family":"Federo","category":"sans-serif","variants":["regular"]},"Felipa":{"family":"Felipa","category":"handwriting","variants":["regular"]},"Fenix":{"family":"Fenix","category":"serif","variants":["regular"]},"Finger Paint":{"family":"Finger Paint","category":"display","variants":["regular"]},"Fira Mono":{"family":"Fira Mono","category":"monospace","variants":["500","700","regular"]},"Fira Sans":{"family":"Fira Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Condensed":{"family":"Fira Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Extra Condensed":{"family":"Fira Sans Extra Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fjalla One":{"family":"Fjalla One","category":"sans-serif","variants":["regular"]},"Fjord One":{"family":"Fjord One","category":"serif","variants":["regular"]},"Flamenco":{"family":"Flamenco","category":"display","variants":["300","regular"]},"Flavors":{"family":"Flavors","category":"display","variants":["regular"]},"Fondamento":{"family":"Fondamento","category":"handwriting","variants":["italic","regular"]},"Fontdiner Swanky":{"family":"Fontdiner Swanky","category":"display","variants":["regular"]},"Forum":{"family":"Forum","category":"display","variants":["regular"]},"Francois One":{"family":"Francois One","category":"sans-serif","variants":["regular"]},"Frank Ruhl Libre":{"family":"Frank Ruhl Libre","category":"serif","variants":["300","500","700","900","regular"]},"Freckle Face":{"family":"Freckle Face","category":"display","variants":["regular"]},"Fredericka the Great":{"family":"Fredericka the Great","category":"display","variants":["regular"]},"Fredoka One":{"family":"Fredoka One","category":"display","variants":["regular"]},"Freehand":{"family":"Freehand","category":"display","variants":["regular"]},"Fresca":{"family":"Fresca","category":"sans-serif","variants":["regular"]},"Frijole":{"family":"Frijole","category":"display","variants":["regular"]},"Fruktur":{"family":"Fruktur","category":"display","variants":["regular"]},"Fugaz One":{"family":"Fugaz One","category":"display","variants":["regular"]},"GFS Didot":{"family":"GFS Didot","category":"serif","variants":["regular"]},"GFS Neohellenic":{"family":"GFS Neohellenic","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Gabriela":{"family":"Gabriela","category":"serif","variants":["regular"]},"Gaegu":{"family":"Gaegu","category":"handwriting","variants":["300","700","regular"]},"Gafata":{"family":"Gafata","category":"sans-serif","variants":["regular"]},"Galada":{"family":"Galada","category":"display","variants":["regular"]},"Galdeano":{"family":"Galdeano","category":"sans-serif","variants":["regular"]},"Galindo":{"family":"Galindo","category":"display","variants":["regular"]},"Gamja Flower":{"family":"Gamja Flower","category":"handwriting","variants":["regular"]},"Gentium Basic":{"family":"Gentium Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Gentium Book Basic":{"family":"Gentium Book Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Geo":{"family":"Geo","category":"sans-serif","variants":["italic","regular"]},"Geostar":{"family":"Geostar","category":"display","variants":["regular"]},"Geostar Fill":{"family":"Geostar Fill","category":"display","variants":["regular"]},"Germania One":{"family":"Germania One","category":"display","variants":["regular"]},"Gidugu":{"family":"Gidugu","category":"sans-serif","variants":["regular"]},"Gilda Display":{"family":"Gilda Display","category":"serif","variants":["regular"]},"Give You Glory":{"family":"Give You Glory","category":"handwriting","variants":["regular"]},"Glass Antiqua":{"family":"Glass Antiqua","category":"display","variants":["regular"]},"Glegoo":{"family":"Glegoo","category":"serif","variants":["700","regular"]},"Gloria Hallelujah":{"family":"Gloria Hallelujah","category":"handwriting","variants":["regular"]},"Goblin One":{"family":"Goblin One","category":"display","variants":["regular"]},"Gochi Hand":{"family":"Gochi Hand","category":"handwriting","variants":["regular"]},"Gorditas":{"family":"Gorditas","category":"display","variants":["700","regular"]},"Gothic A1":{"family":"Gothic A1","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Goudy Bookletter 1911":{"family":"Goudy Bookletter 1911","category":"serif","variants":["regular"]},"Graduate":{"family":"Graduate","category":"display","variants":["regular"]},"Grand Hotel":{"family":"Grand Hotel","category":"handwriting","variants":["regular"]},"Gravitas One":{"family":"Gravitas One","category":"display","variants":["regular"]},"Great Vibes":{"family":"Great Vibes","category":"handwriting","variants":["regular"]},"Griffy":{"family":"Griffy","category":"display","variants":["regular"]},"Gruppo":{"family":"Gruppo","category":"display","variants":["regular"]},"Gudea":{"family":"Gudea","category":"sans-serif","variants":["700","italic","regular"]},"Gugi":{"family":"Gugi","category":"display","variants":["regular"]},"Gurajada":{"family":"Gurajada","category":"serif","variants":["regular"]},"Habibi":{"family":"Habibi","category":"serif","variants":["regular"]},"Halant":{"family":"Halant","category":"serif","variants":["300","500","600","700","regular"]},"Hammersmith One":{"family":"Hammersmith One","category":"sans-serif","variants":["regular"]},"Hanalei":{"family":"Hanalei","category":"display","variants":["regular"]},"Hanalei Fill":{"family":"Hanalei Fill","category":"display","variants":["regular"]},"Handlee":{"family":"Handlee","category":"handwriting","variants":["regular"]},"Hanuman":{"family":"Hanuman","category":"serif","variants":["700","regular"]},"Happy Monkey":{"family":"Happy Monkey","category":"display","variants":["regular"]},"Harmattan":{"family":"Harmattan","category":"sans-serif","variants":["regular"]},"Headland One":{"family":"Headland One","category":"serif","variants":["regular"]},"Heebo":{"family":"Heebo","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Henny Penny":{"family":"Henny Penny","category":"display","variants":["regular"]},"Herr Von Muellerhoff":{"family":"Herr Von Muellerhoff","category":"handwriting","variants":["regular"]},"Hi Melody":{"family":"Hi Melody","category":"handwriting","variants":["regular"]},"Hind":{"family":"Hind","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Guntur":{"family":"Hind Guntur","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Madurai":{"family":"Hind Madurai","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Siliguri":{"family":"Hind Siliguri","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Vadodara":{"family":"Hind Vadodara","category":"sans-serif","variants":["300","500","600","700","regular"]},"Holtwood One SC":{"family":"Holtwood One SC","category":"serif","variants":["regular"]},"Homemade Apple":{"family":"Homemade Apple","category":"handwriting","variants":["regular"]},"Homenaje":{"family":"Homenaje","category":"sans-serif","variants":["regular"]},"IBM Plex Mono":{"family":"IBM Plex Mono","category":"monospace","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans":{"family":"IBM Plex Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans Condensed":{"family":"IBM Plex Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Serif":{"family":"IBM Plex Serif","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IM Fell DW Pica":{"family":"IM Fell DW Pica","category":"serif","variants":["italic","regular"]},"IM Fell DW Pica SC":{"family":"IM Fell DW Pica SC","category":"serif","variants":["regular"]},"IM Fell Double Pica":{"family":"IM Fell Double Pica","category":"serif","variants":["italic","regular"]},"IM Fell Double Pica SC":{"family":"IM Fell Double Pica SC","category":"serif","variants":["regular"]},"IM Fell English":{"family":"IM Fell English","category":"serif","variants":["italic","regular"]},"IM Fell English SC":{"family":"IM Fell English SC","category":"serif","variants":["regular"]},"IM Fell French Canon":{"family":"IM Fell French Canon","category":"serif","variants":["italic","regular"]},"IM Fell French Canon SC":{"family":"IM Fell French Canon SC","category":"serif","variants":["regular"]},"IM Fell Great Primer":{"family":"IM Fell Great Primer","category":"serif","variants":["italic","regular"]},"IM Fell Great Primer SC":{"family":"IM Fell Great Primer SC","category":"serif","variants":["regular"]},"Iceberg":{"family":"Iceberg","category":"display","variants":["regular"]},"Iceland":{"family":"Iceland","category":"display","variants":["regular"]},"Imprima":{"family":"Imprima","category":"sans-serif","variants":["regular"]},"Inconsolata":{"family":"Inconsolata","category":"monospace","variants":["700","regular"]},"Inder":{"family":"Inder","category":"sans-serif","variants":["regular"]},"Indie Flower":{"family":"Indie Flower","category":"handwriting","variants":["regular"]},"Inika":{"family":"Inika","category":"serif","variants":["700","regular"]},"Inknut Antiqua":{"family":"Inknut Antiqua","category":"serif","variants":["300","500","600","700","800","900","regular"]},"Irish Grover":{"family":"Irish Grover","category":"display","variants":["regular"]},"Istok Web":{"family":"Istok Web","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Italiana":{"family":"Italiana","category":"serif","variants":["regular"]},"Italianno":{"family":"Italianno","category":"handwriting","variants":["regular"]},"Itim":{"family":"Itim","category":"handwriting","variants":["regular"]},"Jacques Francois":{"family":"Jacques Francois","category":"serif","variants":["regular"]},"Jacques Francois Shadow":{"family":"Jacques Francois Shadow","category":"display","variants":["regular"]},"Jaldi":{"family":"Jaldi","category":"sans-serif","variants":["700","regular"]},"Jim Nightshade":{"family":"Jim Nightshade","category":"handwriting","variants":["regular"]},"Jockey One":{"family":"Jockey One","category":"sans-serif","variants":["regular"]},"Jolly Lodger":{"family":"Jolly Lodger","category":"display","variants":["regular"]},"Jomhuria":{"family":"Jomhuria","category":"display","variants":["regular"]},"Josefin Sans":{"family":"Josefin Sans","category":"sans-serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Josefin Slab":{"family":"Josefin Slab","category":"serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Joti One":{"family":"Joti One","category":"display","variants":["regular"]},"Jua":{"family":"Jua","category":"sans-serif","variants":["regular"]},"Judson":{"family":"Judson","category":"serif","variants":["700","italic","regular"]},"Julee":{"family":"Julee","category":"handwriting","variants":["regular"]},"Julius Sans One":{"family":"Julius Sans One","category":"sans-serif","variants":["regular"]},"Junge":{"family":"Junge","category":"serif","variants":["regular"]},"Jura":{"family":"Jura","category":"sans-serif","variants":["300","500","600","700","regular"]},"Just Another Hand":{"family":"Just Another Hand","category":"handwriting","variants":["regular"]},"Just Me Again Down Here":{"family":"Just Me Again Down Here","category":"handwriting","variants":["regular"]},"K2D":{"family":"K2D","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Kadwa":{"family":"Kadwa","category":"serif","variants":["700","regular"]},"Kalam":{"family":"Kalam","category":"handwriting","variants":["300","700","regular"]},"Kameron":{"family":"Kameron","category":"serif","variants":["700","regular"]},"Kanit":{"family":"Kanit","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Kantumruy":{"family":"Kantumruy","category":"sans-serif","variants":["300","700","regular"]},"Karla":{"family":"Karla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Karma":{"family":"Karma","category":"serif","variants":["300","500","600","700","regular"]},"Katibeh":{"family":"Katibeh","category":"display","variants":["regular"]},"Kaushan Script":{"family":"Kaushan Script","category":"handwriting","variants":["regular"]},"Kavivanar":{"family":"Kavivanar","category":"handwriting","variants":["regular"]},"Kavoon":{"family":"Kavoon","category":"display","variants":["regular"]},"Kdam Thmor":{"family":"Kdam Thmor","category":"display","variants":["regular"]},"Keania One":{"family":"Keania One","category":"display","variants":["regular"]},"Kelly Slab":{"family":"Kelly Slab","category":"display","variants":["regular"]},"Kenia":{"family":"Kenia","category":"display","variants":["regular"]},"Khand":{"family":"Khand","category":"sans-serif","variants":["300","500","600","700","regular"]},"Khmer":{"family":"Khmer","category":"display","variants":["regular"]},"Khula":{"family":"Khula","category":"sans-serif","variants":["300","600","700","800","regular"]},"Kirang Haerang":{"family":"Kirang Haerang","category":"display","variants":["regular"]},"Kite One":{"family":"Kite One","category":"sans-serif","variants":["regular"]},"Knewave":{"family":"Knewave","category":"display","variants":["regular"]},"KoHo":{"family":"KoHo","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kodchasan":{"family":"Kodchasan","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kosugi":{"family":"Kosugi","category":"sans-serif","variants":["regular"]},"Kosugi Maru":{"family":"Kosugi Maru","category":"sans-serif","variants":["regular"]},"Kotta One":{"family":"Kotta One","category":"serif","variants":["regular"]},"Koulen":{"family":"Koulen","category":"display","variants":["regular"]},"Kranky":{"family":"Kranky","category":"display","variants":["regular"]},"Kreon":{"family":"Kreon","category":"serif","variants":["300","700","regular"]},"Kristi":{"family":"Kristi","category":"handwriting","variants":["regular"]},"Krona One":{"family":"Krona One","category":"sans-serif","variants":["regular"]},"Krub":{"family":"Krub","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kumar One":{"family":"Kumar One","category":"display","variants":["regular"]},"Kumar One Outline":{"family":"Kumar One Outline","category":"display","variants":["regular"]},"Kurale":{"family":"Kurale","category":"serif","variants":["regular"]},"La Belle Aurore":{"family":"La Belle Aurore","category":"handwriting","variants":["regular"]},"Laila":{"family":"Laila","category":"serif","variants":["300","500","600","700","regular"]},"Lakki Reddy":{"family":"Lakki Reddy","category":"handwriting","variants":["regular"]},"Lalezar":{"family":"Lalezar","category":"display","variants":["regular"]},"Lancelot":{"family":"Lancelot","category":"display","variants":["regular"]},"Lateef":{"family":"Lateef","category":"handwriting","variants":["regular"]},"Lato":{"family":"Lato","category":"sans-serif","variants":["100","100italic","300","300italic","700","700italic","900","900italic","italic","regular"]},"League Script":{"family":"League Script","category":"handwriting","variants":["regular"]},"Leckerli One":{"family":"Leckerli One","category":"handwriting","variants":["regular"]},"Ledger":{"family":"Ledger","category":"serif","variants":["regular"]},"Lekton":{"family":"Lekton","category":"sans-serif","variants":["700","italic","regular"]},"Lemon":{"family":"Lemon","category":"display","variants":["regular"]},"Lemonada":{"family":"Lemonada","category":"display","variants":["300","600","700","regular"]},"Libre Barcode 128":{"family":"Libre Barcode 128","category":"display","variants":["regular"]},"Libre Barcode 128 Text":{"family":"Libre Barcode 128 Text","category":"display","variants":["regular"]},"Libre Barcode 39":{"family":"Libre Barcode 39","category":"display","variants":["regular"]},"Libre Barcode 39 Extended":{"family":"Libre Barcode 39 Extended","category":"display","variants":["regular"]},"Libre Barcode 39 Extended Text":{"family":"Libre Barcode 39 Extended Text","category":"display","variants":["regular"]},"Libre Barcode 39 Text":{"family":"Libre Barcode 39 Text","category":"display","variants":["regular"]},"Libre Baskerville":{"family":"Libre Baskerville","category":"serif","variants":["700","italic","regular"]},"Libre Franklin":{"family":"Libre Franklin","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Life Savers":{"family":"Life Savers","category":"display","variants":["700","regular"]},"Lilita One":{"family":"Lilita One","category":"display","variants":["regular"]},"Lily Script One":{"family":"Lily Script One","category":"display","variants":["regular"]},"Limelight":{"family":"Limelight","category":"display","variants":["regular"]},"Linden Hill":{"family":"Linden Hill","category":"serif","variants":["italic","regular"]},"Lobster":{"family":"Lobster","category":"display","variants":["regular"]},"Lobster Two":{"family":"Lobster Two","category":"display","variants":["700","700italic","italic","regular"]},"Londrina Outline":{"family":"Londrina Outline","category":"display","variants":["regular"]},"Londrina Shadow":{"family":"Londrina Shadow","category":"display","variants":["regular"]},"Londrina Sketch":{"family":"Londrina Sketch","category":"display","variants":["regular"]},"Londrina Solid":{"family":"Londrina Solid","category":"display","variants":["100","300","900","regular"]},"Lora":{"family":"Lora","category":"serif","variants":["700","700italic","italic","regular"]},"Love Ya Like A Sister":{"family":"Love Ya Like A Sister","category":"display","variants":["regular"]},"Loved by the King":{"family":"Loved by the King","category":"handwriting","variants":["regular"]},"Lovers Quarrel":{"family":"Lovers Quarrel","category":"handwriting","variants":["regular"]},"Luckiest Guy":{"family":"Luckiest Guy","category":"display","variants":["regular"]},"Lusitana":{"family":"Lusitana","category":"serif","variants":["700","regular"]},"Lustria":{"family":"Lustria","category":"serif","variants":["regular"]},"M PLUS 1p":{"family":"M PLUS 1p","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"M PLUS Rounded 1c":{"family":"M PLUS Rounded 1c","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Macondo":{"family":"Macondo","category":"display","variants":["regular"]},"Macondo Swash Caps":{"family":"Macondo Swash Caps","category":"display","variants":["regular"]},"Mada":{"family":"Mada","category":"sans-serif","variants":["200","300","500","600","700","900","regular"]},"Magra":{"family":"Magra","category":"sans-serif","variants":["700","regular"]},"Maiden Orange":{"family":"Maiden Orange","category":"display","variants":["regular"]},"Maitree":{"family":"Maitree","category":"serif","variants":["200","300","500","600","700","regular"]},"Major Mono Display":{"family":"Major Mono Display","category":"monospace","variants":["regular"]},"Mako":{"family":"Mako","category":"sans-serif","variants":["regular"]},"Mali":{"family":"Mali","category":"handwriting","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Mallanna":{"family":"Mallanna","category":"sans-serif","variants":["regular"]},"Mandali":{"family":"Mandali","category":"sans-serif","variants":["regular"]},"Manuale":{"family":"Manuale","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Marcellus":{"family":"Marcellus","category":"serif","variants":["regular"]},"Marcellus SC":{"family":"Marcellus SC","category":"serif","variants":["regular"]},"Marck Script":{"family":"Marck Script","category":"handwriting","variants":["regular"]},"Margarine":{"family":"Margarine","category":"display","variants":["regular"]},"Markazi Text":{"family":"Markazi Text","category":"serif","variants":["500","600","700","regular"]},"Marko One":{"family":"Marko One","category":"serif","variants":["regular"]},"Marmelad":{"family":"Marmelad","category":"sans-serif","variants":["regular"]},"Martel":{"family":"Martel","category":"serif","variants":["200","300","600","700","800","900","regular"]},"Martel Sans":{"family":"Martel Sans","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Marvel":{"family":"Marvel","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Mate":{"family":"Mate","category":"serif","variants":["italic","regular"]},"Mate SC":{"family":"Mate SC","category":"serif","variants":["regular"]},"Maven Pro":{"family":"Maven Pro","category":"sans-serif","variants":["500","700","900","regular"]},"McLaren":{"family":"McLaren","category":"display","variants":["regular"]},"Meddon":{"family":"Meddon","category":"handwriting","variants":["regular"]},"MedievalSharp":{"family":"MedievalSharp","category":"display","variants":["regular"]},"Medula One":{"family":"Medula One","category":"display","variants":["regular"]},"Meera Inimai":{"family":"Meera Inimai","category":"sans-serif","variants":["regular"]},"Megrim":{"family":"Megrim","category":"display","variants":["regular"]},"Meie Script":{"family":"Meie Script","category":"handwriting","variants":["regular"]},"Merienda":{"family":"Merienda","category":"handwriting","variants":["700","regular"]},"Merienda One":{"family":"Merienda One","category":"handwriting","variants":["regular"]},"Merriweather":{"family":"Merriweather","category":"serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Merriweather Sans":{"family":"Merriweather Sans","category":"sans-serif","variants":["300","300italic","700","700italic","800","800italic","italic","regular"]},"Metal":{"family":"Metal","category":"display","variants":["regular"]},"Metal Mania":{"family":"Metal Mania","category":"display","variants":["regular"]},"Metamorphous":{"family":"Metamorphous","category":"display","variants":["regular"]},"Metrophobic":{"family":"Metrophobic","category":"sans-serif","variants":["regular"]},"Michroma":{"family":"Michroma","category":"sans-serif","variants":["regular"]},"Milonga":{"family":"Milonga","category":"display","variants":["regular"]},"Miltonian":{"family":"Miltonian","category":"display","variants":["regular"]},"Miltonian Tattoo":{"family":"Miltonian Tattoo","category":"display","variants":["regular"]},"Mina":{"family":"Mina","category":"sans-serif","variants":["700","regular"]},"Miniver":{"family":"Miniver","category":"display","variants":["regular"]},"Miriam Libre":{"family":"Miriam Libre","category":"sans-serif","variants":["700","regular"]},"Mirza":{"family":"Mirza","category":"display","variants":["500","600","700","regular"]},"Miss Fajardose":{"family":"Miss Fajardose","category":"handwriting","variants":["regular"]},"Mitr":{"family":"Mitr","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Modak":{"family":"Modak","category":"display","variants":["regular"]},"Modern Antiqua":{"family":"Modern Antiqua","category":"display","variants":["regular"]},"Mogra":{"family":"Mogra","category":"display","variants":["regular"]},"Molengo":{"family":"Molengo","category":"sans-serif","variants":["regular"]},"Molle":{"family":"Molle","category":"handwriting","variants":["italic"]},"Monda":{"family":"Monda","category":"sans-serif","variants":["700","regular"]},"Monofett":{"family":"Monofett","category":"display","variants":["regular"]},"Monoton":{"family":"Monoton","category":"display","variants":["regular"]},"Monsieur La Doulaise":{"family":"Monsieur La Doulaise","category":"handwriting","variants":["regular"]},"Montaga":{"family":"Montaga","category":"serif","variants":["regular"]},"Montez":{"family":"Montez","category":"handwriting","variants":["regular"]},"Montserrat":{"family":"Montserrat","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Alternates":{"family":"Montserrat Alternates","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Subrayada":{"family":"Montserrat Subrayada","category":"sans-serif","variants":["700","regular"]},"Moul":{"family":"Moul","category":"display","variants":["regular"]},"Moulpali":{"family":"Moulpali","category":"display","variants":["regular"]},"Mountains of Christmas":{"family":"Mountains of Christmas","category":"display","variants":["700","regular"]},"Mouse Memoirs":{"family":"Mouse Memoirs","category":"sans-serif","variants":["regular"]},"Mr Bedfort":{"family":"Mr Bedfort","category":"handwriting","variants":["regular"]},"Mr Dafoe":{"family":"Mr Dafoe","category":"handwriting","variants":["regular"]},"Mr De Haviland":{"family":"Mr De Haviland","category":"handwriting","variants":["regular"]},"Mrs Saint Delafield":{"family":"Mrs Saint Delafield","category":"handwriting","variants":["regular"]},"Mrs Sheppards":{"family":"Mrs Sheppards","category":"handwriting","variants":["regular"]},"Mukta":{"family":"Mukta","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Mahee":{"family":"Mukta Mahee","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Malar":{"family":"Mukta Malar","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Vaani":{"family":"Mukta Vaani","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Muli":{"family":"Muli","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Mystery Quest":{"family":"Mystery Quest","category":"display","variants":["regular"]},"NTR":{"family":"NTR","category":"sans-serif","variants":["regular"]},"Nanum Brush Script":{"family":"Nanum Brush Script","category":"handwriting","variants":["regular"]},"Nanum Gothic":{"family":"Nanum Gothic","category":"sans-serif","variants":["700","800","regular"]},"Nanum Gothic Coding":{"family":"Nanum Gothic Coding","category":"monospace","variants":["700","regular"]},"Nanum Myeongjo":{"family":"Nanum Myeongjo","category":"serif","variants":["700","800","regular"]},"Nanum Pen Script":{"family":"Nanum Pen Script","category":"handwriting","variants":["regular"]},"Neucha":{"family":"Neucha","category":"handwriting","variants":["regular"]},"Neuton":{"family":"Neuton","category":"serif","variants":["200","300","700","800","italic","regular"]},"New Rocker":{"family":"New Rocker","category":"display","variants":["regular"]},"News Cycle":{"family":"News Cycle","category":"sans-serif","variants":["700","regular"]},"Niconne":{"family":"Niconne","category":"handwriting","variants":["regular"]},"Niramit":{"family":"Niramit","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Nixie One":{"family":"Nixie One","category":"display","variants":["regular"]},"Nobile":{"family":"Nobile","category":"sans-serif","variants":["500","500italic","700","700italic","italic","regular"]},"Nokora":{"family":"Nokora","category":"serif","variants":["700","regular"]},"Norican":{"family":"Norican","category":"handwriting","variants":["regular"]},"Nosifer":{"family":"Nosifer","category":"display","variants":["regular"]},"Notable":{"family":"Notable","category":"sans-serif","variants":["regular"]},"Nothing You Could Do":{"family":"Nothing You Could Do","category":"handwriting","variants":["regular"]},"Noticia Text":{"family":"Noticia Text","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Sans":{"family":"Noto Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Noto Sans HK":{"family":"Noto Sans HK","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans JP":{"family":"Noto Sans JP","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans KR":{"family":"Noto Sans KR","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans SC":{"family":"Noto Sans SC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans TC":{"family":"Noto Sans TC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Serif":{"family":"Noto Serif","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Serif JP":{"family":"Noto Serif JP","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif KR":{"family":"Noto Serif KR","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif SC":{"family":"Noto Serif SC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif TC":{"family":"Noto Serif TC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Nova Cut":{"family":"Nova Cut","category":"display","variants":["regular"]},"Nova Flat":{"family":"Nova Flat","category":"display","variants":["regular"]},"Nova Mono":{"family":"Nova Mono","category":"monospace","variants":["regular"]},"Nova Oval":{"family":"Nova Oval","category":"display","variants":["regular"]},"Nova Round":{"family":"Nova Round","category":"display","variants":["regular"]},"Nova Script":{"family":"Nova Script","category":"display","variants":["regular"]},"Nova Slim":{"family":"Nova Slim","category":"display","variants":["regular"]},"Nova Square":{"family":"Nova Square","category":"display","variants":["regular"]},"Numans":{"family":"Numans","category":"sans-serif","variants":["regular"]},"Nunito":{"family":"Nunito","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Nunito Sans":{"family":"Nunito Sans","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Odor Mean Chey":{"family":"Odor Mean Chey","category":"display","variants":["regular"]},"Offside":{"family":"Offside","category":"display","variants":["regular"]},"Old Standard TT":{"family":"Old Standard TT","category":"serif","variants":["700","italic","regular"]},"Oldenburg":{"family":"Oldenburg","category":"display","variants":["regular"]},"Oleo Script":{"family":"Oleo Script","category":"display","variants":["700","regular"]},"Oleo Script Swash Caps":{"family":"Oleo Script Swash Caps","category":"display","variants":["700","regular"]},"Open Sans":{"family":"Open Sans","category":"sans-serif","variants":["300","300italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Open Sans Condensed":{"family":"Open Sans Condensed","category":"sans-serif","variants":["300","300italic","700"]},"Oranienbaum":{"family":"Oranienbaum","category":"serif","variants":["regular"]},"Orbitron":{"family":"Orbitron","category":"sans-serif","variants":["500","700","900","regular"]},"Oregano":{"family":"Oregano","category":"display","variants":["italic","regular"]},"Orienta":{"family":"Orienta","category":"sans-serif","variants":["regular"]},"Original Surfer":{"family":"Original Surfer","category":"display","variants":["regular"]},"Oswald":{"family":"Oswald","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Over the Rainbow":{"family":"Over the Rainbow","category":"handwriting","variants":["regular"]},"Overlock":{"family":"Overlock","category":"display","variants":["700","700italic","900","900italic","italic","regular"]},"Overlock SC":{"family":"Overlock SC","category":"display","variants":["regular"]},"Overpass":{"family":"Overpass","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Overpass Mono":{"family":"Overpass Mono","category":"monospace","variants":["300","600","700","regular"]},"Ovo":{"family":"Ovo","category":"serif","variants":["regular"]},"Oxygen":{"family":"Oxygen","category":"sans-serif","variants":["300","700","regular"]},"Oxygen Mono":{"family":"Oxygen Mono","category":"monospace","variants":["regular"]},"PT Mono":{"family":"PT Mono","category":"monospace","variants":["regular"]},"PT Sans":{"family":"PT Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"PT Sans Caption":{"family":"PT Sans Caption","category":"sans-serif","variants":["700","regular"]},"PT Sans Narrow":{"family":"PT Sans Narrow","category":"sans-serif","variants":["700","regular"]},"PT Serif":{"family":"PT Serif","category":"serif","variants":["700","700italic","italic","regular"]},"PT Serif Caption":{"family":"PT Serif Caption","category":"serif","variants":["italic","regular"]},"Pacifico":{"family":"Pacifico","category":"handwriting","variants":["regular"]},"Padauk":{"family":"Padauk","category":"sans-serif","variants":["700","regular"]},"Palanquin":{"family":"Palanquin","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Palanquin Dark":{"family":"Palanquin Dark","category":"sans-serif","variants":["500","600","700","regular"]},"Pangolin":{"family":"Pangolin","category":"handwriting","variants":["regular"]},"Paprika":{"family":"Paprika","category":"display","variants":["regular"]},"Parisienne":{"family":"Parisienne","category":"handwriting","variants":["regular"]},"Passero One":{"family":"Passero One","category":"display","variants":["regular"]},"Passion One":{"family":"Passion One","category":"display","variants":["700","900","regular"]},"Pathway Gothic One":{"family":"Pathway Gothic One","category":"sans-serif","variants":["regular"]},"Patrick Hand":{"family":"Patrick Hand","category":"handwriting","variants":["regular"]},"Patrick Hand SC":{"family":"Patrick Hand SC","category":"handwriting","variants":["regular"]},"Pattaya":{"family":"Pattaya","category":"sans-serif","variants":["regular"]},"Patua One":{"family":"Patua One","category":"display","variants":["regular"]},"Pavanam":{"family":"Pavanam","category":"sans-serif","variants":["regular"]},"Paytone One":{"family":"Paytone One","category":"sans-serif","variants":["regular"]},"Peddana":{"family":"Peddana","category":"serif","variants":["regular"]},"Peralta":{"family":"Peralta","category":"display","variants":["regular"]},"Permanent Marker":{"family":"Permanent Marker","category":"handwriting","variants":["regular"]},"Petit Formal Script":{"family":"Petit Formal Script","category":"handwriting","variants":["regular"]},"Petrona":{"family":"Petrona","category":"serif","variants":["regular"]},"Philosopher":{"family":"Philosopher","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Piedra":{"family":"Piedra","category":"display","variants":["regular"]},"Pinyon Script":{"family":"Pinyon Script","category":"handwriting","variants":["regular"]},"Pirata One":{"family":"Pirata One","category":"display","variants":["regular"]},"Plaster":{"family":"Plaster","category":"display","variants":["regular"]},"Play":{"family":"Play","category":"sans-serif","variants":["700","regular"]},"Playball":{"family":"Playball","category":"display","variants":["regular"]},"Playfair Display":{"family":"Playfair Display","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Playfair Display SC":{"family":"Playfair Display SC","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Podkova":{"family":"Podkova","category":"serif","variants":["500","600","700","800","regular"]},"Poiret One":{"family":"Poiret One","category":"display","variants":["regular"]},"Poller One":{"family":"Poller One","category":"display","variants":["regular"]},"Poly":{"family":"Poly","category":"serif","variants":["italic","regular"]},"Pompiere":{"family":"Pompiere","category":"display","variants":["regular"]},"Pontano Sans":{"family":"Pontano Sans","category":"sans-serif","variants":["regular"]},"Poor Story":{"family":"Poor Story","category":"display","variants":["regular"]},"Poppins":{"family":"Poppins","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Port Lligat Sans":{"family":"Port Lligat Sans","category":"sans-serif","variants":["regular"]},"Port Lligat Slab":{"family":"Port Lligat Slab","category":"serif","variants":["regular"]},"Pragati Narrow":{"family":"Pragati Narrow","category":"sans-serif","variants":["700","regular"]},"Prata":{"family":"Prata","category":"serif","variants":["regular"]},"Preahvihear":{"family":"Preahvihear","category":"display","variants":["regular"]},"Press Start 2P":{"family":"Press Start 2P","category":"display","variants":["regular"]},"Pridi":{"family":"Pridi","category":"serif","variants":["200","300","500","600","700","regular"]},"Princess Sofia":{"family":"Princess Sofia","category":"handwriting","variants":["regular"]},"Prociono":{"family":"Prociono","category":"serif","variants":["regular"]},"Prompt":{"family":"Prompt","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Prosto One":{"family":"Prosto One","category":"display","variants":["regular"]},"Proza Libre":{"family":"Proza Libre","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Puritan":{"family":"Puritan","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Purple Purse":{"family":"Purple Purse","category":"display","variants":["regular"]},"Quando":{"family":"Quando","category":"serif","variants":["regular"]},"Quantico":{"family":"Quantico","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Quattrocento":{"family":"Quattrocento","category":"serif","variants":["700","regular"]},"Quattrocento Sans":{"family":"Quattrocento Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Questrial":{"family":"Questrial","category":"sans-serif","variants":["regular"]},"Quicksand":{"family":"Quicksand","category":"sans-serif","variants":["300","500","700","regular"]},"Quintessential":{"family":"Quintessential","category":"handwriting","variants":["regular"]},"Qwigley":{"family":"Qwigley","category":"handwriting","variants":["regular"]},"Racing Sans One":{"family":"Racing Sans One","category":"display","variants":["regular"]},"Radley":{"family":"Radley","category":"serif","variants":["italic","regular"]},"Rajdhani":{"family":"Rajdhani","category":"sans-serif","variants":["300","500","600","700","regular"]},"Rakkas":{"family":"Rakkas","category":"display","variants":["regular"]},"Raleway":{"family":"Raleway","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Raleway Dots":{"family":"Raleway Dots","category":"display","variants":["regular"]},"Ramabhadra":{"family":"Ramabhadra","category":"sans-serif","variants":["regular"]},"Ramaraja":{"family":"Ramaraja","category":"serif","variants":["regular"]},"Rambla":{"family":"Rambla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rammetto One":{"family":"Rammetto One","category":"display","variants":["regular"]},"Ranchers":{"family":"Ranchers","category":"display","variants":["regular"]},"Rancho":{"family":"Rancho","category":"handwriting","variants":["regular"]},"Ranga":{"family":"Ranga","category":"display","variants":["700","regular"]},"Rasa":{"family":"Rasa","category":"serif","variants":["300","500","600","700","regular"]},"Rationale":{"family":"Rationale","category":"sans-serif","variants":["regular"]},"Ravi Prakash":{"family":"Ravi Prakash","category":"display","variants":["regular"]},"Redressed":{"family":"Redressed","category":"handwriting","variants":["regular"]},"Reem Kufi":{"family":"Reem Kufi","category":"sans-serif","variants":["regular"]},"Reenie Beanie":{"family":"Reenie Beanie","category":"handwriting","variants":["regular"]},"Revalia":{"family":"Revalia","category":"display","variants":["regular"]},"Rhodium Libre":{"family":"Rhodium Libre","category":"serif","variants":["regular"]},"Ribeye":{"family":"Ribeye","category":"display","variants":["regular"]},"Ribeye Marrow":{"family":"Ribeye Marrow","category":"display","variants":["regular"]},"Righteous":{"family":"Righteous","category":"display","variants":["regular"]},"Risque":{"family":"Risque","category":"display","variants":["regular"]},"Roboto":{"family":"Roboto","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Roboto Condensed":{"family":"Roboto Condensed","category":"sans-serif","variants":["300","300italic","700","700italic","italic","regular"]},"Roboto Mono":{"family":"Roboto Mono","category":"monospace","variants":["100","100italic","300","300italic","500","500italic","700","700italic","italic","regular"]},"Roboto Slab":{"family":"Roboto Slab","category":"serif","variants":["100","300","700","regular"]},"Rochester":{"family":"Rochester","category":"handwriting","variants":["regular"]},"Rock Salt":{"family":"Rock Salt","category":"handwriting","variants":["regular"]},"Rokkitt":{"family":"Rokkitt","category":"serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Romanesco":{"family":"Romanesco","category":"handwriting","variants":["regular"]},"Ropa Sans":{"family":"Ropa Sans","category":"sans-serif","variants":["italic","regular"]},"Rosario":{"family":"Rosario","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rosarivo":{"family":"Rosarivo","category":"serif","variants":["italic","regular"]},"Rouge Script":{"family":"Rouge Script","category":"handwriting","variants":["regular"]},"Rozha One":{"family":"Rozha One","category":"serif","variants":["regular"]},"Rubik":{"family":"Rubik","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Rubik Mono One":{"family":"Rubik Mono One","category":"sans-serif","variants":["regular"]},"Ruda":{"family":"Ruda","category":"sans-serif","variants":["700","900","regular"]},"Rufina":{"family":"Rufina","category":"serif","variants":["700","regular"]},"Ruge Boogie":{"family":"Ruge Boogie","category":"handwriting","variants":["regular"]},"Ruluko":{"family":"Ruluko","category":"sans-serif","variants":["regular"]},"Rum Raisin":{"family":"Rum Raisin","category":"sans-serif","variants":["regular"]},"Ruslan Display":{"family":"Ruslan Display","category":"display","variants":["regular"]},"Russo One":{"family":"Russo One","category":"sans-serif","variants":["regular"]},"Ruthie":{"family":"Ruthie","category":"handwriting","variants":["regular"]},"Rye":{"family":"Rye","category":"display","variants":["regular"]},"Sacramento":{"family":"Sacramento","category":"handwriting","variants":["regular"]},"Sahitya":{"family":"Sahitya","category":"serif","variants":["700","regular"]},"Sail":{"family":"Sail","category":"display","variants":["regular"]},"Saira":{"family":"Saira","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Condensed":{"family":"Saira Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Extra Condensed":{"family":"Saira Extra Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Semi Condensed":{"family":"Saira Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Salsa":{"family":"Salsa","category":"display","variants":["regular"]},"Sanchez":{"family":"Sanchez","category":"serif","variants":["italic","regular"]},"Sancreek":{"family":"Sancreek","category":"display","variants":["regular"]},"Sansita":{"family":"Sansita","category":"sans-serif","variants":["700","700italic","800","800italic","900","900italic","italic","regular"]},"Sarabun":{"family":"Sarabun","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Sarala":{"family":"Sarala","category":"sans-serif","variants":["700","regular"]},"Sarina":{"family":"Sarina","category":"display","variants":["regular"]},"Sarpanch":{"family":"Sarpanch","category":"sans-serif","variants":["500","600","700","800","900","regular"]},"Satisfy":{"family":"Satisfy","category":"handwriting","variants":["regular"]},"Sawarabi Gothic":{"family":"Sawarabi Gothic","category":"sans-serif","variants":["regular"]},"Sawarabi Mincho":{"family":"Sawarabi Mincho","category":"sans-serif","variants":["regular"]},"Scada":{"family":"Scada","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Scheherazade":{"family":"Scheherazade","category":"serif","variants":["700","regular"]},"Schoolbell":{"family":"Schoolbell","category":"handwriting","variants":["regular"]},"Scope One":{"family":"Scope One","category":"serif","variants":["regular"]},"Seaweed Script":{"family":"Seaweed Script","category":"display","variants":["regular"]},"Secular One":{"family":"Secular One","category":"sans-serif","variants":["regular"]},"Sedgwick Ave":{"family":"Sedgwick Ave","category":"handwriting","variants":["regular"]},"Sedgwick Ave Display":{"family":"Sedgwick Ave Display","category":"handwriting","variants":["regular"]},"Sevillana":{"family":"Sevillana","category":"display","variants":["regular"]},"Seymour One":{"family":"Seymour One","category":"sans-serif","variants":["regular"]},"Shadows Into Light":{"family":"Shadows Into Light","category":"handwriting","variants":["regular"]},"Shadows Into Light Two":{"family":"Shadows Into Light Two","category":"handwriting","variants":["regular"]},"Shanti":{"family":"Shanti","category":"sans-serif","variants":["regular"]},"Share":{"family":"Share","category":"display","variants":["700","700italic","italic","regular"]},"Share Tech":{"family":"Share Tech","category":"sans-serif","variants":["regular"]},"Share Tech Mono":{"family":"Share Tech Mono","category":"monospace","variants":["regular"]},"Shojumaru":{"family":"Shojumaru","category":"display","variants":["regular"]},"Short Stack":{"family":"Short Stack","category":"handwriting","variants":["regular"]},"Shrikhand":{"family":"Shrikhand","category":"display","variants":["regular"]},"Siemreap":{"family":"Siemreap","category":"display","variants":["regular"]},"Sigmar One":{"family":"Sigmar One","category":"display","variants":["regular"]},"Signika":{"family":"Signika","category":"sans-serif","variants":["300","600","700","regular"]},"Signika Negative":{"family":"Signika Negative","category":"sans-serif","variants":["300","600","700","regular"]},"Simonetta":{"family":"Simonetta","category":"display","variants":["900","900italic","italic","regular"]},"Sintony":{"family":"Sintony","category":"sans-serif","variants":["700","regular"]},"Sirin Stencil":{"family":"Sirin Stencil","category":"display","variants":["regular"]},"Six Caps":{"family":"Six Caps","category":"sans-serif","variants":["regular"]},"Skranji":{"family":"Skranji","category":"display","variants":["700","regular"]},"Slabo 13px":{"family":"Slabo 13px","category":"serif","variants":["regular"]},"Slabo 27px":{"family":"Slabo 27px","category":"serif","variants":["regular"]},"Slackey":{"family":"Slackey","category":"display","variants":["regular"]},"Smokum":{"family":"Smokum","category":"display","variants":["regular"]},"Smythe":{"family":"Smythe","category":"display","variants":["regular"]},"Sniglet":{"family":"Sniglet","category":"display","variants":["800","regular"]},"Snippet":{"family":"Snippet","category":"sans-serif","variants":["regular"]},"Snowburst One":{"family":"Snowburst One","category":"display","variants":["regular"]},"Sofadi One":{"family":"Sofadi One","category":"display","variants":["regular"]},"Sofia":{"family":"Sofia","category":"handwriting","variants":["regular"]},"Song Myung":{"family":"Song Myung","category":"serif","variants":["regular"]},"Sonsie One":{"family":"Sonsie One","category":"display","variants":["regular"]},"Sorts Mill Goudy":{"family":"Sorts Mill Goudy","category":"serif","variants":["italic","regular"]},"Source Code Pro":{"family":"Source Code Pro","category":"monospace","variants":["200","300","500","600","700","900","regular"]},"Source Sans Pro":{"family":"Source Sans Pro","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","900italic","italic","regular"]},"Source Serif Pro":{"family":"Source Serif Pro","category":"serif","variants":["600","700","regular"]},"Space Mono":{"family":"Space Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Special Elite":{"family":"Special Elite","category":"display","variants":["regular"]},"Spectral":{"family":"Spectral","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spectral SC":{"family":"Spectral SC","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spicy Rice":{"family":"Spicy Rice","category":"display","variants":["regular"]},"Spinnaker":{"family":"Spinnaker","category":"sans-serif","variants":["regular"]},"Spirax":{"family":"Spirax","category":"display","variants":["regular"]},"Squada One":{"family":"Squada One","category":"display","variants":["regular"]},"Sree Krushnadevaraya":{"family":"Sree Krushnadevaraya","category":"serif","variants":["regular"]},"Sriracha":{"family":"Sriracha","category":"handwriting","variants":["regular"]},"Srisakdi":{"family":"Srisakdi","category":"display","variants":["700","regular"]},"Staatliches":{"family":"Staatliches","category":"display","variants":["regular"]},"Stalemate":{"family":"Stalemate","category":"handwriting","variants":["regular"]},"Stalinist One":{"family":"Stalinist One","category":"display","variants":["regular"]},"Stardos Stencil":{"family":"Stardos Stencil","category":"display","variants":["700","regular"]},"Stint Ultra Condensed":{"family":"Stint Ultra Condensed","category":"display","variants":["regular"]},"Stint Ultra Expanded":{"family":"Stint Ultra Expanded","category":"display","variants":["regular"]},"Stoke":{"family":"Stoke","category":"serif","variants":["300","regular"]},"Strait":{"family":"Strait","category":"sans-serif","variants":["regular"]},"Stylish":{"family":"Stylish","category":"sans-serif","variants":["regular"]},"Sue Ellen Francisco":{"family":"Sue Ellen Francisco","category":"handwriting","variants":["regular"]},"Suez One":{"family":"Suez One","category":"serif","variants":["regular"]},"Sumana":{"family":"Sumana","category":"serif","variants":["700","regular"]},"Sunflower":{"family":"Sunflower","category":"sans-serif","variants":["300","500","700"]},"Sunshiney":{"family":"Sunshiney","category":"handwriting","variants":["regular"]},"Supermercado One":{"family":"Supermercado One","category":"display","variants":["regular"]},"Sura":{"family":"Sura","category":"serif","variants":["700","regular"]},"Suranna":{"family":"Suranna","category":"serif","variants":["regular"]},"Suravaram":{"family":"Suravaram","category":"serif","variants":["regular"]},"Suwannaphum":{"family":"Suwannaphum","category":"display","variants":["regular"]},"Swanky and Moo Moo":{"family":"Swanky and Moo Moo","category":"handwriting","variants":["regular"]},"Syncopate":{"family":"Syncopate","category":"sans-serif","variants":["700","regular"]},"Tajawal":{"family":"Tajawal","category":"sans-serif","variants":["200","300","500","700","800","900","regular"]},"Tangerine":{"family":"Tangerine","category":"handwriting","variants":["700","regular"]},"Taprom":{"family":"Taprom","category":"display","variants":["regular"]},"Tauri":{"family":"Tauri","category":"sans-serif","variants":["regular"]},"Taviraj":{"family":"Taviraj","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Teko":{"family":"Teko","category":"sans-serif","variants":["300","500","600","700","regular"]},"Telex":{"family":"Telex","category":"sans-serif","variants":["regular"]},"Tenali Ramakrishna":{"family":"Tenali Ramakrishna","category":"sans-serif","variants":["regular"]},"Tenor Sans":{"family":"Tenor Sans","category":"sans-serif","variants":["regular"]},"Text Me One":{"family":"Text Me One","category":"sans-serif","variants":["regular"]},"Thasadith":{"family":"Thasadith","category":"sans-serif","variants":["700","700italic","italic","regular"]},"The Girl Next Door":{"family":"The Girl Next Door","category":"handwriting","variants":["regular"]},"Tienne":{"family":"Tienne","category":"serif","variants":["700","900","regular"]},"Tillana":{"family":"Tillana","category":"handwriting","variants":["500","600","700","800","regular"]},"Timmana":{"family":"Timmana","category":"sans-serif","variants":["regular"]},"Tinos":{"family":"Tinos","category":"serif","variants":["700","700italic","italic","regular"]},"Titan One":{"family":"Titan One","category":"display","variants":["regular"]},"Titillium Web":{"family":"Titillium Web","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","italic","regular"]},"Trade Winds":{"family":"Trade Winds","category":"display","variants":["regular"]},"Trirong":{"family":"Trirong","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Trocchi":{"family":"Trocchi","category":"serif","variants":["regular"]},"Trochut":{"family":"Trochut","category":"display","variants":["700","italic","regular"]},"Trykker":{"family":"Trykker","category":"serif","variants":["regular"]},"Tulpen One":{"family":"Tulpen One","category":"display","variants":["regular"]},"Ubuntu":{"family":"Ubuntu","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","italic","regular"]},"Ubuntu Condensed":{"family":"Ubuntu Condensed","category":"sans-serif","variants":["regular"]},"Ubuntu Mono":{"family":"Ubuntu Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Ultra":{"family":"Ultra","category":"serif","variants":["regular"]},"Uncial Antiqua":{"family":"Uncial Antiqua","category":"display","variants":["regular"]},"Underdog":{"family":"Underdog","category":"display","variants":["regular"]},"Unica One":{"family":"Unica One","category":"display","variants":["regular"]},"UnifrakturCook":{"family":"UnifrakturCook","category":"display","variants":["700"]},"UnifrakturMaguntia":{"family":"UnifrakturMaguntia","category":"display","variants":["regular"]},"Unkempt":{"family":"Unkempt","category":"display","variants":["700","regular"]},"Unlock":{"family":"Unlock","category":"display","variants":["regular"]},"Unna":{"family":"Unna","category":"serif","variants":["700","700italic","italic","regular"]},"VT323":{"family":"VT323","category":"monospace","variants":["regular"]},"Vampiro One":{"family":"Vampiro One","category":"display","variants":["regular"]},"Varela":{"family":"Varela","category":"sans-serif","variants":["regular"]},"Varela Round":{"family":"Varela Round","category":"sans-serif","variants":["regular"]},"Vast Shadow":{"family":"Vast Shadow","category":"display","variants":["regular"]},"Vesper Libre":{"family":"Vesper Libre","category":"serif","variants":["500","700","900","regular"]},"Vibur":{"family":"Vibur","category":"handwriting","variants":["regular"]},"Vidaloka":{"family":"Vidaloka","category":"serif","variants":["regular"]},"Viga":{"family":"Viga","category":"sans-serif","variants":["regular"]},"Voces":{"family":"Voces","category":"display","variants":["regular"]},"Volkhov":{"family":"Volkhov","category":"serif","variants":["700","700italic","italic","regular"]},"Vollkorn":{"family":"Vollkorn","category":"serif","variants":["600","600italic","700","700italic","900","900italic","italic","regular"]},"Vollkorn SC":{"family":"Vollkorn SC","category":"serif","variants":["600","700","900","regular"]},"Voltaire":{"family":"Voltaire","category":"sans-serif","variants":["regular"]},"Waiting for the Sunrise":{"family":"Waiting for the Sunrise","category":"handwriting","variants":["regular"]},"Wallpoet":{"family":"Wallpoet","category":"display","variants":["regular"]},"Walter Turncoat":{"family":"Walter Turncoat","category":"handwriting","variants":["regular"]},"Warnes":{"family":"Warnes","category":"display","variants":["regular"]},"Wellfleet":{"family":"Wellfleet","category":"display","variants":["regular"]},"Wendy One":{"family":"Wendy One","category":"sans-serif","variants":["regular"]},"Wire One":{"family":"Wire One","category":"sans-serif","variants":["regular"]},"Work Sans":{"family":"Work Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Yanone Kaffeesatz":{"family":"Yanone Kaffeesatz","category":"sans-serif","variants":["200","300","700","regular"]},"Yantramanav":{"family":"Yantramanav","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Yatra One":{"family":"Yatra One","category":"display","variants":["regular"]},"Yellowtail":{"family":"Yellowtail","category":"handwriting","variants":["regular"]},"Yeon Sung":{"family":"Yeon Sung","category":"display","variants":["regular"]},"Yeseva One":{"family":"Yeseva One","category":"display","variants":["regular"]},"Yesteryear":{"family":"Yesteryear","category":"handwriting","variants":["regular"]},"Yrsa":{"family":"Yrsa","category":"serif","variants":["300","500","600","700","regular"]},"ZCOOL KuaiLe":{"family":"ZCOOL KuaiLe","category":"display","variants":["regular"]},"ZCOOL QingKe HuangYou":{"family":"ZCOOL QingKe HuangYou","category":"display","variants":["regular"]},"ZCOOL XiaoWei":{"family":"ZCOOL XiaoWei","category":"serif","variants":["regular"]},"Zeyada":{"family":"Zeyada","category":"handwriting","variants":["regular"]},"Zilla Slab":{"family":"Zilla Slab","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Zilla Slab Highlight":{"family":"Zilla Slab Highlight","category":"display","variants":["700","regular"]}},"order":{"popularity":["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Source Sans Pro","Oswald","Raleway","Merriweather","Roboto Mono","Roboto Slab","Poppins","PT Sans","Noto Sans","Slabo 27px","Ubuntu","Open Sans Condensed","Playfair Display","Lora","PT Serif","Muli","Titillium Web","Nunito","PT Sans Narrow","Rubik","Fira Sans","Noto Sans JP","Nanum Gothic","Noto Serif","Work Sans","Arimo","Quicksand","Noto Sans KR","Dosis","Inconsolata","Crimson Text","Josefin Sans","Teko","Oxygen","Libre Franklin","Bitter","Nunito Sans","Anton","Libre Baskerville","Heebo","Cabin","Hind","Fjalla One","Karla","Indie Flower","Arvo","Lobster","Abel","Mukta","Exo 2","Hind Siliguri","Noto Sans TC","Pacifico","Varela Round","Merriweather Sans","Dancing Script","Source Serif Pro","Asap","Shadows Into Light","Abril Fatface","Source Code Pro","Yanone Kaffeesatz","Barlow","Kanit","Acme","Bree Serif","Questrial","Righteous","Archivo Narrow","EB Garamond","Catamaran","Amatic SC","Comfortaa","Exo","Cairo","Maven Pro","Ubuntu Condensed","Play","Signika","Domine","Fira Sans Condensed","Rajdhani","Permanent Marker","Cinzel","Patua One","Amiri","Vollkorn","Francois One","Ropa Sans","News Cycle","Prompt","Noticia Text","Crete Round","Overpass","Gloria Hallelujah","Rokkitt","Hind Madurai","Barlow Condensed","Satisfy","Assistant","Alegreya","IBM Plex Sans","Gothic A1","Noto Sans SC","Cuprum","Courgette","Old Standard TT","ABeeZee","PT Sans Caption","Alegreya Sans","Concert One","Caveat","Alfa Slab One","Cardo","Kaushan Script","Cantarell","Archivo Black","Tinos","Lalezar","Cormorant Garamond","Great Vibes","Fredoka One","Didact Gothic","Fira Sans Extra Condensed","Orbitron","Kalam","Martel","Lobster Two","Cookie","Frank Ruhl Libre","Pathway Gothic One","Volkhov","Barlow Semi Condensed","Quattrocento Sans","Luckiest Guy","Viga","Russo One","Zilla Slab","Arapey","Nanum Myeongjo","Tangerine","Chivo","Special Elite","Monda","Sacramento","Tajawal","Saira Semi Condensed","Playfair Display SC","Poiret One","Hind Vadodara","Quattrocento","M PLUS 1p","BenchNine","Hind Guntur","Patrick Hand","IBM Plex Serif","Cabin Condensed","Khand","Taviraj","Ultra","Passion One","Istok Web","Handlee","Neucha","Josefin Slab","Sawarabi Mincho","Gudea","Sanchez","Prata","Neuton","Boogaloo","Saira","Merienda","Philosopher","Yantramanav","Monoton","Gochi Hand","Changa","Signika Negative","Marck Script","Allerta Stencil","Pragati Narrow","Yrsa","Carter One","Pontano Sans","Asap Condensed","Unica One","Sigmar One","Hammersmith One","Vidaloka","Montserrat Alternates","Ruda","Saira Extra Condensed","Economica","Armata","Advent Pro","Bangers","Pridi","Audiowide","Sorts Mill Goudy","Yellowtail","Archivo","Gentium Basic","Playball","Architects Daughter","Amaranth","Noto Serif JP","Varela","Bad Script","Glegoo","Schoolbell","Alice","Staatliches","Kreon","Adamina","Gentium Book Basic","PT Mono","Rock Salt","Enriqueta","Press Start 2P","Julius Sans One","Paytone One","Unna","Sintony","Rasa","Ubuntu Mono","Covered By Your Grace","Damion","Cousine","Arbutus Slab","Sarala","Palanquin","Actor","Fugaz One","Rambla","Days One","Mitr","Allura","El Messiri","Antic Slab","Parisienne","Homemade Apple","Shadows Into Light Two","Italianno","Oleo Script","Alegreya Sans SC","Baloo","Nothing You Could Do","Cormorant","Lusitana","Karma","Allerta","Share Tech Mono","Sawarabi Gothic","Khula","Jura","Scada","Aguafina Script","Marcellus","Molengo","Chewy","Spectral","Pinyon Script","Mr Dafoe","Cantata One","Hanuman","PT Serif Caption","Jaldi","Alex Brush","Rancho","Bevan","Scheherazade","Encode Sans Condensed","Michroma","Pangolin","Niconne","Abhaya Libre","Lustria","Fredericka the Great","Spinnaker","Nanum Gothic Coding","Forum","Basic","Nobile","Belleza","Reenie Beanie","Candal","Leckerli One","Nanum Pen Script","Black Ops One","Average","Radley","Syncopate","Magra","Lemonada","Prosto One","Sarabun","Marcellus SC","Electrolize","Quantico","Sunflower","Aldrich","Share","Coda","Biryani","Kameron","M PLUS Rounded 1c","Yesteryear","Lilita One","Tenor Sans","Rochester","Antic","Knewave","Shojumaru","Caveat Brush","Bungee","Cinzel Decorative","Overlock","Space Mono","Just Another Hand","Gruppo","Fauna One","Berkshire Swash","Cabin Sketch","Itim","Reem Kufi","Rufina","Lateef","Changa One","Oranienbaum","Coda Caption","Squada One","Buenard","Laila","Contrail One","Aclonica","Puritan","Telex","Alef","Norican","Markazi Text","Marmelad","Arizonia","Nanum Brush Script","Grand Hotel","Trirong","Love Ya Like A Sister","VT323","Yeseva One","Annie Use Your Telescope","Lekton","Fira Mono","Coming Soon","Carme","Halant","Slabo 13px","Shrikhand","Average Sans","Baloo Bhaina","Eczar","Voltaire","Herr Von Muellerhoff","Racing Sans One","Petit Formal Script","Ovo","Carrois Gothic","Jockey One","Alegreya SC","Arsenal","Encode Sans","Nixie One","Saira Condensed","Martel Sans","Tulpen One","Bowlby One SC","Bungee Inline","Judson","Marvel","Calligraffitti","GFS Didot","Gilda Display","Anonymous Pro","Graduate","Mada","Coustard","Cambo","Gabriela","Maitree","Arima Madurai","IBM Plex Mono","Encode Sans Expanded","Copse","Oxygen Mono","Merienda One","Rosario","Caudex","Titan One","Delius","Londrina Solid","Raleway Dots","Aladin","Metrophobic","Cutive Mono","Sniglet","Mukta Malar","Ceviche One","Sue Ellen Francisco","Homenaje","Kosugi Maru","Bubblegum Sans","Pattaya","Allan","Freckle Face","Goudy Bookletter 1911","Noto Serif SC","Capriola","Suranna","Kelly Slab","Mr De Haviland","Doppio One","Secular One","Baloo Bhaijaan","Suez One","Ramabhadra","David Libre","Do Hyeon","Battambang","Tauri","Mali","Kristi","Faster One","Noto Serif KR","Gurajada","Bentham","Trocchi","Anaheim","Duru Sans","Emilys Candy","Swanky and Moo Moo","Palanquin Dark","Black Han Sans","Balthazar","Wendy One","Amiko","Cutive","Niramit","Rye","Cambay","Miriam Libre","Pompiere","IM Fell Double Pica","Poly","Six Caps","Patrick Hand SC","Averia Serif Libre","Happy Monkey","Andada","Athiti","Give You Glory","Alike","Bai Jamjuree","Mukta Vaani","Overpass Mono","Federo","Carrois Gothic SC","Faustina","Cedarville Cursive","Convergence","Corben","Skranji","Chelsea Market","Seaweed Script","Oregano","Qwigley","Chonburi","Inder","Fanwood Text","Rationale","Artifika","Sriracha","Vesper Libre","Lily Script One","Montez","Andika","IM Fell DW Pica","Mate","Proza Libre","Sumana","Amethysta","Rouge Script","Cormorant Infant","IM Fell English","Baloo Bhai","Encode Sans Semi Expanded","Limelight","IM Fell English SC","Spicy Rice","Crafty Girls","Expletus Sans","Podkova","Short Stack","Sofia","Gravitas One","La Belle Aurore","Baumans","Mirza","Mallanna","Poller One","Quando","Denk One","IBM Plex Sans Condensed","Lemon","Fondamento","Rammetto One","Wallpoet","Vast Shadow","Koulen","Walter Turncoat","Mouse Memoirs","Oleo Script Swash Caps","Sansita","Galada","Clicker Script","Rozha One","Bilbo Swash Caps","Kadwa","UnifrakturMaguntia","Meddon","Cormorant SC","Rubik Mono One","Brawler","Wire One","Strait","Kurale","Prociono","Cantora One","Megrim","Mako","Vibur","Harmattan","Averia Libre","Waiting for the Sunrise","Bungee Shade","Imprima","Cherry Swash","Loved by the King","Spectral SC","McLaren","Bowlby One","Zeyada","Scope One","The Girl Next Door","Unkempt","Medula One","Stardos Stencil","Gafata","Belgrano","Italiana","Iceland","Bellefair","Finger Paint","Spirax","Tienne","Just Me Again Down Here","Krona One","Libre Barcode 39","Princess Sofia","Orienta","Delius Swash Caps","Vampiro One","Aref Ruqaa","Padauk","Amita","Mrs Saint Delafield","Noto Serif TC","Atma","Alike Angular","Salsa","Chakra Petch","Holtwood One SC","Codystar","Ledger","Nova Square","Charm","Fontdiner Swanky","Dawning of a New Day","Rakkas","Fjord One","Averia Sans Libre","Euphoria Script","Baloo Paaji","Montserrat Subrayada","Headland One","Hanalei Fill","Aleo","Katibeh","Life Savers","Baloo Chettan","Sarpanch","Mandali","Frijole","Kotta One","Over the Rainbow","Almendra","Arya","Nova Mono","Port Lligat Slab","Habibi","Kranky","Metamorphous","Voces","Uncial Antiqua","Quintessential","Baloo Tamma","Jua","Engagement","Kosugi","Shanti","Chicle","Sedgwick Ave","Encode Sans Semi Condensed","Crushed","Numans","Share Tech","Germania One","Esteban","Khmer","Taprom","BioRhyme","Antic Didone","Eater","Nova Round","Gugi","Dekko","Mukta Mahee","Creepster","Cormorant Upright","Pirata One","Baloo Thambi","Yatra One","Cherry Cream Soda","Slackey","Chau Philomene One","Milonga","Elsie","Nosifer","NTR","Condiment","Dynalight","Geo","Timmana","Mogra","Mountains of Christmas","Ramaraja","Buda","Mate SC","Delius Unicase","Sarina","Nokora","Flamenco","Kite One","Sail","Krub","Asul","Chela One","Kumar One","Sancreek","Cagliostro","Coiny","Fenix","Stint Ultra Condensed","Nova Slim","Dorsa","Paprika","Ribeye","Donegal One","Peralta","Manuale","Ruslan Display","Gaegu","Amarante","Mystery Quest","K2D","Averia Gruesa Libre","Stint Ultra Expanded","Farsan","Simonetta","Inknut Antiqua","Rosarivo","Maiden Orange","Londrina Outline","Ranchers","League Script","Bubbler One","IM Fell Great Primer","Englebert","Fascinate Inline","Meera Inimai","Trade Winds","Akronim","Junge","Croissant One","Revalia","Fresca","Marko One","Plaster","Ruluko","Stalemate","Overlock SC","Angkor","IM Fell French Canon","Text Me One","Port Lligat Sans","Lovers Quarrel","ZCOOL QingKe HuangYou","Pavanam","Bilbo","Major Mono Display","Sura","Nova Flat","Stoke","Joti One","Kodchasan","Sirin Stencil","Sonsie One","Linden Hill","Noto Sans HK","Elsie Swash Caps","Mina","Julee","Inika","Monsieur La Doulaise","Kavoon","Ranga","Baloo Tammudu","IM Fell DW Pica SC","Glass Antiqua","Autour One","Diplomata","Dangrek","Petrona","Griffy","B612 Mono","Dokdo","Redressed","Wellfleet","Della Respira","Galdeano","Modak","Eagle Lake","Jim Nightshade","Offside","Content","Ravi Prakash","Miniver","Song Myung","Henny Penny","UnifrakturCook","Sree Krushnadevaraya","Bahiana","Cormorant Unicase","Macondo Swash Caps","Margarine","Barrio","Trykker","Tillana","Baloo Da","Monofett","Lancelot","Moul","Ruthie","Rhodium Libre","Chenla","Montaga","Chathura","KoHo","Kantumruy","Bokor","IM Fell Great Primer SC","MedievalSharp","Rum Raisin","Dr Sugiyama","Underdog","Iceberg","Meie Script","Ruge Boogie","Siemreap","Odor Mean Chey","Sahitya","Chango","Jacques Francois Shadow","Asar","New Rocker","Smythe","Purple Purse","Mrs Sheppards","Poor Story","Miltonian Tattoo","Snippet","Oldenburg","Charmonman","Smokum","Metal Mania","Zilla Slab Highlight","Modern Antiqua","Arbutus","Asset","Bigshot One","Stylish","Original Surfer","Caesar Dressing","Snowburst One","Ewert","Nova Script","Suwannaphum","Diplomata SC","Irish Grover","Thasadith","Felipa","Galindo","IM Fell French Canon SC","Molle","Ribeye Marrow","Atomic Age","Libre Barcode 128","Keania One","Bayon","Goblin One","Devonshire","Jomhuria","Kirang Haerang","Kavivanar","Piedra","IM Fell Double Pica SC","Flavors","Kdam Thmor","ZCOOL XiaoWei","Freehand","Lakki Reddy","Almendra Display","Londrina Shadow","ZCOOL KuaiLe","Sunshiney","East Sea Dokdo","Almendra SC","Miss Fajardose","Vollkorn SC","Romanesco","Libre Barcode 39 Text","Jacques Francois","Macondo","Srisakdi","Fahkwang","Gorditas","Kenia","Astloch","Tenali Ramakrishna","Trochut","Jolly Lodger","GFS Neohellenic","Seymour One","Londrina Sketch","Geostar Fill","Miltonian","Nova Cut","Butterfly Kids","Risque","Nova Oval","Bungee Outline","Fascinate","Supermercado One","Kumar One Outline","Passero One","Sedgwick Ave Display","Combo","Unlock","Libre Barcode 39 Extended Text","B612","Metal","Libre Barcode 39 Extended","Emblema One","Black And White Picture","Gidugu","Cute Font","Butcherman","Sofadi One","Bigelow Rules","Preahvihear","Sevillana","Mr Bedfort","Bungee Hairline","Gamja Flower","Fruktur","Aubrey","Bonbon","Erica One","Suravaram","Geostar","Federant","Peddana","Fasthand","Hanalei","Stalinist One","Libre Barcode 128 Text","Dhurjati","Moulpali","BioRhyme Expanded","Hi Melody","Yeon Sung","Warnes","Notable"],"trending":["Noto Sans HK","B612 Mono","Encode Sans Expanded","Saira Semi Condensed","Mali","Swanky and Moo Moo","Koulen","Teko","Aguafina Script","Fresca","Dangrek","Ruge Boogie","Coda Caption","Battambang","Faster One","IM Fell Great Primer","Tulpen One","Sarabun","Meera Inimai","Suwannaphum","Sumana","Encode Sans Semi Expanded","Kdam Thmor","Averia Gruesa Libre","Jaldi","Knewave","Hanuman","Staatliches","Nokora","David Libre","Kumar One Outline","Monoton","Kodchasan","Gaegu","Puritan","Baloo Bhaina","Inika","Fira Sans Extra Condensed","Barlow Semi Condensed","Noto Sans SC","Princess Sofia","Odor Mean Chey","Antic","Barlow Condensed","IM Fell DW Pica","Leckerli One","Chakra Petch","Patrick Hand SC","Baloo Bhai","Timmana","Meie Script","Padauk","Zilla Slab","Elsie Swash Caps","Plaster","Mukta Mahee","Sunflower","Laila","Macondo Swash Caps","Kadwa","Spirax","Belleza","Amiko","Lily Script One","Mitr","Cormorant Upright","Merienda One","Space Mono","Hind Guntur","Prompt","Cantora One","Nova Script","Bungee","Baloo Bhaijaan","Londrina Sketch","Domine","Moul","Bungee Hairline","Gurajada","Italiana","Abhaya Libre","Ravi Prakash","Palanquin","Athiti","Almendra","Major Mono Display","Merienda","IBM Plex Sans","Engagement","Jacques Francois Shadow","Encode Sans Semi Condensed","Gruppo","Libre Barcode 39","Gothic A1","Rhodium Libre","BioRhyme","Montserrat Subrayada","Gabriela","Trykker","Italianno","Yeseva One","Caveat Brush","Emblema One","Amethysta","Ubuntu Mono","Share Tech Mono","Flamenco","Ovo","Eater","Mina","Allerta Stencil","Amiri","Marcellus SC","Cherry Swash","Shrikhand","Norican","M PLUS Rounded 1c","Volkhov","Cookie","Faustina","Satisfy","Antic Didone","Hind Siliguri","Arya","Spectral SC","Supermercado One","Patua One","Sirin Stencil","Days One","Vampiro One","Carter One","Archivo Black","Permanent Marker","Manuale","Aref Ruqaa","Fira Sans Condensed","Magra","Kantumruy","Lilita One","Bahiana","Averia Sans Libre","Jomhuria","Barlow","Contrail One","Black Han Sans","Judson","Frijole","Averia Libre","Exo 2","Almendra Display","Podkova","Pangolin","Nanum Myeongjo","Vibur","Hind Vadodara","Boogaloo","Kalam","Bungee Outline","McLaren","Ultra","Arizonia","Hanalei","Amatic SC","Asap","Yantramanav","Kotta One","Englebert","Forum","Maitree","Cambo","Ewert","Poppins","Capriola","Angkor","Sawarabi Mincho","Noto Serif SC","Ruda","Francois One","Lekton","Rancho","Secular One","Noto Sans TC","Cinzel Decorative","Henny Penny","Aleo","M PLUS 1p","Libre Barcode 39 Extended Text","Herr Von Muellerhoff","Calligraffitti","Changa One","Trirong","Advent Pro","Libre Barcode 39 Extended","Bai Jamjuree","Sedgwick Ave","Nosifer","Fugaz One","Nanum Brush Script","Poly","GFS Didot","Joti One","Carrois Gothic SC","Anaheim","Codystar","Diplomata","Chivo","Felipa","Baloo Da","Kosugi Maru","Archivo","Amaranth","Tinos","Noto Serif KR","Griffy","Iceland","Stint Ultra Condensed","Rye","Creepster","Pinyon Script","Combo","Asar","Sigmar One","Galdeano","Revalia","Allerta","IM Fell Great Primer SC","Baloo Thambi","Arbutus","Baloo Tammudu","Inknut Antiqua","Yrsa","Overlock SC","Mountains of Christmas","Libre Barcode 39 Text","Six Caps","Scheherazade","Unica One","Rajdhani","Sree Krushnadevaraya","Tillana","Scada","Sarala","Average Sans","Source Serif Pro","Cormorant","Martel","Noto Sans KR","Metamorphous","Noto Sans JP","Bungee Shade","Yatra One","Actor","Metrophobic","Old Standard TT","Prata","Akronim","Mate SC","Risque","Oxygen Mono","Halant","Special Elite","Quantico","Vast Shadow","Siemreap","Nixie One","Kranky","Fira Mono","Bellefair","Shojumaru","Alfa Slab One","Bayon","Stalinist One","Stint Ultra Expanded","Unlock","Gorditas","Rationale","Headland One","Nanum Gothic","Comfortaa","Hind Madurai","Oregano","Sonsie One","Lalezar","Romanesco","Tienne","Bentham","Annie Use Your Telescope","Allura","Baloo Chettan","Dancing Script","Righteous","Allan","Mirza","Sacramento","Neucha","Caveat","Numans","Condiment","Dorsa","Schoolbell","Text Me One","Fira Sans","Rufina","Sintony","Patrick Hand","Yellowtail","Quicksand","Dr Sugiyama","Aclonica","Montserrat","Bilbo","Arvo","Asap Condensed","Questrial","Syncopate","Racing Sans One","Libre Franklin","Alegreya","Happy Monkey","Enriqueta","Basic","Delius Swash Caps","Caudex","Sarina","Monda","Trochut","Sahitya","Rambla","Covered By Your Grace","Kosugi","Dokdo","Baumans","Londrina Shadow","Lusitana","Merriweather","Nunito","Wendy One","Megrim","Habibi","Sanchez","Chathura","Peralta","BenchNine","PT Mono","Courgette","Playfair Display","Black And White Picture","Yesteryear","Noto Serif JP","Muli","Germania One","Federant","Playfair Display SC","Overpass","Bree Serif","Rokkitt","Shadows Into Light","Butcherman","Bangers","Poiret One","Lora","Bungee Inline","Fanwood Text","Iceberg","IBM Plex Serif","Cousine","Gochi Hand","Wallpoet","Jua","Krub","Fruktur","Snowburst One","Vollkorn","Taviraj","Mallanna","Pompiere","Mr Bedfort","Aldrich","Oldenburg","Tajawal","Tangerine","Oranienbaum","Bubblegum Sans","Coustard","Source Code Pro","Bevan","Kumar One","Life Savers","Radley","Dekko","Slabo 27px","Averia Serif Libre","Arimo","Marcellus","Peddana","Rock Salt","Raleway","Walter Turncoat","Roboto","Tenor Sans","Merriweather Sans","Rouge Script","Chonburi","Crete Round","Delius Unicase","Sevillana","Cardo","Reem Kufi","IM Fell English","Lato","Mouse Memoirs","Damion","Catamaran","Proza Libre","Taprom","Thasadith","Alike","Slabo 13px","Vollkorn SC","Rosario","Bokor","Glass Antiqua","Freckle Face","Oleo Script","Love Ya Like A Sister","Fontdiner Swanky","Della Respira","Cutive Mono","Graduate","Philosopher","Purple Purse","Ruluko","Alegreya SC","Alex Brush","PT Sans","Bad Script","Alike Angular","Brawler","Emilys Candy","New Rocker","News Cycle","Rochester","Michroma","Homenaje","Monsieur La Doulaise","Nova Slim","Bitter","EB Garamond","Ceviche One","Arbutus Slab","Kristi","Limelight","Port Lligat Slab","Sura","Open Sans","Overpass Mono","Neuton","PT Sans Narrow","Adamina","Cairo","Titillium Web","Doppio One","Harmattan","Inconsolata","Oswald","Lovers Quarrel","Erica One","Marck Script","BioRhyme Expanded","Corben","The Girl Next Door","K2D","Freehand","Charm","Cabin","Rakkas","Homemade Apple","ZCOOL QingKe HuangYou","Viga","Roboto Condensed","Barrio","Unna","Crimson Text","Andika","Saira","Ubuntu","Lustria","Chelsea Market","Loved by the King","Inder","Fondamento","Oleo Script Swash Caps","Nova Square","Kreon","Imprima","Rubik Mono One","Carrois Gothic","Josefin Sans","Encode Sans","Original Surfer","Sawarabi Gothic","Gidugu","Chau Philomene One","Ledger","PT Serif Caption","Trocchi","Flavors","Nothing You Could Do","Aubrey","Niconne","Balthazar","Ruthie","Aladin","Audiowide","Gudea","Indie Flower","Content","Qwigley","Quattrocento","Noto Serif","Voltaire","Alegreya Sans SC","Gentium Basic","Play","Roboto Mono","Fenix","Buenard","Hi Melody","Didact Gothic","Nova Mono","Istok Web","Hind","Pridi","Dynalight","Sarpanch","Karla","Pontano Sans","Telex","Oxygen","Quintessential","NTR","Kirang Haerang","Handlee","Julius Sans One","Bilbo Swash Caps","Waiting for the Sunrise","Mrs Saint Delafield","Hammersmith One","Meddon","Press Start 2P","Pathway Gothic One","Passero One","Chela One","Elsie","Khula","Roboto Slab","Sorts Mill Goudy","Mukta Malar","Lobster","Markazi Text","Chango","Noto Sans","Metal","Galindo","Dosis","Arima Madurai","Signika","Fjalla One","Libre Barcode 128","Architects Daughter","Mystery Quest","Acme","Varela Round","Jim Nightshade","Changa","Abril Fatface","Seaweed Script","Abel","Bowlby One SC","Bonbon","Atomic Age","Gentium Book Basic","Mr De Haviland","Electrolize","Gravitas One","Work Sans","Eagle Lake","Do Hyeon","Keania One","Sue Ellen Francisco","Rum Raisin","Katibeh","Londrina Solid","Josefin Slab","Ubuntu Condensed","Nanum Gothic Coding","Share","Over the Rainbow","Rozha One","IM Fell Double Pica","Cagliostro","La Belle Aurore","Kurale","Pavanam","Itim","Chicle","PT Serif","Suranna","Just Me Again Down Here","Unkempt","Snippet","Rubik","Kite One","Devonshire","Open Sans Condensed","Kaushan Script","Source Sans Pro","Belgrano","Notable","Warnes","Fahkwang","Mrs Sheppards","Stylish","Denk One","Libre Baskerville","Croissant One","Rosarivo","Coda","Galada","Noto Serif TC","Julee","Suez One","Concert One","Carme","Nova Oval","Cormorant Garamond","Londrina Outline","Convergence","Passion One","Glegoo","Cinzel","Pacifico","Stardos Stencil","Nova Cut","Alef","Archivo Narrow","Russo One","Duru Sans","Nobile","Sofia","IM Fell DW Pica SC","KoHo","Geostar Fill","Molle","Cantata One","Martel Sans","Sedgwick Ave Display","Lancelot","Luckiest Guy","Reenie Beanie","Cabin Sketch","Margarine","Sancreek","Metal Mania","Signika Negative","UnifrakturCook","Pirata One","Dhurjati","Jockey One","Mr Dafoe","Quattrocento Sans","Diplomata SC","Tauri","Trade Winds","Astloch","Buda","Macondo","Euphoria Script","Jura","Wellfleet","Karma","Gilda Display","Gugi","League Script","Spectral","Biryani","IM Fell French Canon","Autour One","ZCOOL XiaoWei","Jacques Francois","Crafty Girls","Cormorant Infant","ABeeZee","Simonetta","Anonymous Pro","Antic Slab","Alice","Maven Pro","Poller One","Orienta","Milonga","Cutive","Piedra","GFS Neohellenic","Slackey","Squada One","Exo","Cherry Cream Soda","Sail","Give You Glory","Lakki Reddy","Prosto One","Vidaloka","Cuprum","Holtwood One SC","Mako","Sofadi One","Short Stack","Smythe","Saira Condensed","Share Tech","Sriracha","Voces","IBM Plex Sans Condensed","Nova Round","Parisienne","Finger Paint","Lobster Two","Sansita","Overlock","Spinnaker","Great Vibes","Monofett","Farsan","Atma","Khand","Gloria Hallelujah","Arsenal","Goblin One","Varela","Rammetto One","Dawning of a New Day","Fredoka One","Linden Hill","Kanit","Berkshire Swash","Andada","Smokum","Heebo","Charmonman","Assistant","Baloo Tamma","Average","Pragati Narrow","Miltonian","Bigshot One","PT Sans Caption","Frank Ruhl Libre","Marvel","Geostar","Palanquin Dark","Cedarville Cursive","Modern Antiqua","Yanone Kaffeesatz","Prociono","Chewy","Kavivanar","Wire One","Shadows Into Light Two","Ribeye","Moulpali","IM Fell English SC","Ribeye Marrow","Fascinate","Arapey","Armata","Ruslan Display","Nova Flat","Marko One","Coming Soon","Cantarell","Clicker Script","Chenla","Strait","Junge","Crushed","Bowlby One","Lemonada","Alegreya Sans","Scope One","Cambay","Cormorant SC","Black Ops One","Asul","Nanum Pen Script","UnifrakturMaguntia","Bigelow Rules","Fjord One","Goudy Bookletter 1911","Ramaraja","Suravaram","Amita","Miltonian Tattoo","Song Myung","B612","Ranchers","Mate","Grand Hotel","Tenali Ramakrishna","Montez","Rasa","Cabin Condensed","Petit Formal Script","Poor Story","Salsa","Noticia Text","IM Fell Double Pica SC","Quando","Esteban","Shanti","Mada","Sunshiney","Nunito Sans","Paprika","Kavoon","Zeyada","MedievalSharp","Libre Barcode 128 Text","Vesper Libre","Medula One","Skranji","Anton","Mukta Vaani","Kelly Slab","Asset","Geo","Offside","Montserrat Alternates","Federo","Fascinate Inline","Copse","Preahvihear","Fasthand","Ropa Sans","Niramit","Mogra","Stoke","Miriam Libre","Encode Sans Condensed","Raleway Dots","Underdog","Miniver","Lemon","East Sea Dokdo","Caesar Dressing","Pattaya","Economica","Baloo","Titan One","Expletus Sans","Redressed","Delius","Irish Grover","Modak","Molengo","Maiden Orange","Orbitron","Krona One","Seymour One","Gafata","ZCOOL KuaiLe","Bubbler One","Fredericka the Great","Just Another Hand","Butterfly Kids","Hanalei Fill","Coiny","Stalemate","Port Lligat Sans","Saira Extra Condensed","Jolly Lodger","Eczar","Kameron","Candal","Khmer","Mukta","El Messiri","Artifika","Playball","Gamja Flower","IM Fell French Canon SC","Zilla Slab Highlight","Paytone One","Donegal One","Kenia","Almendra SC","Baloo Paaji","VT323","Petrona","Marmelad","Miss Fajardose","Ramabhadra","IBM Plex Mono","Lateef","Spicy Rice","Srisakdi","Cormorant Unicase","Fauna One","Sniglet","Uncial Antiqua","Cute Font","Yeon Sung","Amarante","Montaga","Mandali","Ranga"]}}
1
+ {"items":{"ABeeZee":{"family":"ABeeZee","category":"sans-serif","variants":["italic","regular"]},"Abel":{"family":"Abel","category":"sans-serif","variants":["regular"]},"Abhaya Libre":{"family":"Abhaya Libre","category":"serif","variants":["500","600","700","800","regular"]},"Abril Fatface":{"family":"Abril Fatface","category":"display","variants":["regular"]},"Aclonica":{"family":"Aclonica","category":"sans-serif","variants":["regular"]},"Acme":{"family":"Acme","category":"sans-serif","variants":["regular"]},"Actor":{"family":"Actor","category":"sans-serif","variants":["regular"]},"Adamina":{"family":"Adamina","category":"serif","variants":["regular"]},"Advent Pro":{"family":"Advent Pro","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Aguafina Script":{"family":"Aguafina Script","category":"handwriting","variants":["regular"]},"Akronim":{"family":"Akronim","category":"display","variants":["regular"]},"Aladin":{"family":"Aladin","category":"handwriting","variants":["regular"]},"Aldrich":{"family":"Aldrich","category":"sans-serif","variants":["regular"]},"Alef":{"family":"Alef","category":"sans-serif","variants":["700","regular"]},"Alegreya":{"family":"Alegreya","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya SC":{"family":"Alegreya SC","category":"serif","variants":["500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans":{"family":"Alegreya Sans","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Alegreya Sans SC":{"family":"Alegreya Sans SC","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Aleo":{"family":"Aleo","category":"serif","variants":["300","300italic","700","700italic","italic","regular"]},"Alex Brush":{"family":"Alex Brush","category":"handwriting","variants":["regular"]},"Alfa Slab One":{"family":"Alfa Slab One","category":"display","variants":["regular"]},"Alice":{"family":"Alice","category":"serif","variants":["regular"]},"Alike":{"family":"Alike","category":"serif","variants":["regular"]},"Alike Angular":{"family":"Alike Angular","category":"serif","variants":["regular"]},"Allan":{"family":"Allan","category":"display","variants":["700","regular"]},"Allerta":{"family":"Allerta","category":"sans-serif","variants":["regular"]},"Allerta Stencil":{"family":"Allerta Stencil","category":"sans-serif","variants":["regular"]},"Allura":{"family":"Allura","category":"handwriting","variants":["regular"]},"Almendra":{"family":"Almendra","category":"serif","variants":["700","700italic","italic","regular"]},"Almendra Display":{"family":"Almendra Display","category":"display","variants":["regular"]},"Almendra SC":{"family":"Almendra SC","category":"serif","variants":["regular"]},"Amarante":{"family":"Amarante","category":"display","variants":["regular"]},"Amaranth":{"family":"Amaranth","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Amatic SC":{"family":"Amatic SC","category":"handwriting","variants":["700","regular"]},"Amethysta":{"family":"Amethysta","category":"serif","variants":["regular"]},"Amiko":{"family":"Amiko","category":"sans-serif","variants":["600","700","regular"]},"Amiri":{"family":"Amiri","category":"serif","variants":["700","700italic","italic","regular"]},"Amita":{"family":"Amita","category":"handwriting","variants":["700","regular"]},"Anaheim":{"family":"Anaheim","category":"sans-serif","variants":["regular"]},"Andada":{"family":"Andada","category":"serif","variants":["regular"]},"Andika":{"family":"Andika","category":"sans-serif","variants":["regular"]},"Angkor":{"family":"Angkor","category":"display","variants":["regular"]},"Annie Use Your Telescope":{"family":"Annie Use Your Telescope","category":"handwriting","variants":["regular"]},"Anonymous Pro":{"family":"Anonymous Pro","category":"monospace","variants":["700","700italic","italic","regular"]},"Antic":{"family":"Antic","category":"sans-serif","variants":["regular"]},"Antic Didone":{"family":"Antic Didone","category":"serif","variants":["regular"]},"Antic Slab":{"family":"Antic Slab","category":"serif","variants":["regular"]},"Anton":{"family":"Anton","category":"sans-serif","variants":["regular"]},"Arapey":{"family":"Arapey","category":"serif","variants":["italic","regular"]},"Arbutus":{"family":"Arbutus","category":"display","variants":["regular"]},"Arbutus Slab":{"family":"Arbutus Slab","category":"serif","variants":["regular"]},"Architects Daughter":{"family":"Architects Daughter","category":"handwriting","variants":["regular"]},"Archivo":{"family":"Archivo","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Archivo Black":{"family":"Archivo Black","category":"sans-serif","variants":["regular"]},"Archivo Narrow":{"family":"Archivo Narrow","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Aref Ruqaa":{"family":"Aref Ruqaa","category":"serif","variants":["700","regular"]},"Arima Madurai":{"family":"Arima Madurai","category":"display","variants":["100","200","300","500","700","800","900","regular"]},"Arimo":{"family":"Arimo","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Arizonia":{"family":"Arizonia","category":"handwriting","variants":["regular"]},"Armata":{"family":"Armata","category":"sans-serif","variants":["regular"]},"Arsenal":{"family":"Arsenal","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Artifika":{"family":"Artifika","category":"serif","variants":["regular"]},"Arvo":{"family":"Arvo","category":"serif","variants":["700","700italic","italic","regular"]},"Arya":{"family":"Arya","category":"sans-serif","variants":["700","regular"]},"Asap":{"family":"Asap","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asap Condensed":{"family":"Asap Condensed","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Asar":{"family":"Asar","category":"serif","variants":["regular"]},"Asset":{"family":"Asset","category":"display","variants":["regular"]},"Assistant":{"family":"Assistant","category":"sans-serif","variants":["200","300","600","700","800","regular"]},"Astloch":{"family":"Astloch","category":"display","variants":["700","regular"]},"Asul":{"family":"Asul","category":"sans-serif","variants":["700","regular"]},"Athiti":{"family":"Athiti","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Atma":{"family":"Atma","category":"display","variants":["300","500","600","700","regular"]},"Atomic Age":{"family":"Atomic Age","category":"display","variants":["regular"]},"Aubrey":{"family":"Aubrey","category":"display","variants":["regular"]},"Audiowide":{"family":"Audiowide","category":"display","variants":["regular"]},"Autour One":{"family":"Autour One","category":"display","variants":["regular"]},"Average":{"family":"Average","category":"serif","variants":["regular"]},"Average Sans":{"family":"Average Sans","category":"sans-serif","variants":["regular"]},"Averia Gruesa Libre":{"family":"Averia Gruesa Libre","category":"display","variants":["regular"]},"Averia Libre":{"family":"Averia Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Sans Libre":{"family":"Averia Sans Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"Averia Serif Libre":{"family":"Averia Serif Libre","category":"display","variants":["300","300italic","700","700italic","italic","regular"]},"B612":{"family":"B612","category":"sans-serif","variants":["700","700italic","italic","regular"]},"B612 Mono":{"family":"B612 Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Bad Script":{"family":"Bad Script","category":"handwriting","variants":["regular"]},"Bahiana":{"family":"Bahiana","category":"display","variants":["regular"]},"Bai Jamjuree":{"family":"Bai Jamjuree","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Baloo":{"family":"Baloo","category":"display","variants":["regular"]},"Baloo Bhai":{"family":"Baloo Bhai","category":"display","variants":["regular"]},"Baloo Bhaijaan":{"family":"Baloo Bhaijaan","category":"display","variants":["regular"]},"Baloo Bhaina":{"family":"Baloo Bhaina","category":"display","variants":["regular"]},"Baloo Chettan":{"family":"Baloo Chettan","category":"display","variants":["regular"]},"Baloo Da":{"family":"Baloo Da","category":"display","variants":["regular"]},"Baloo Paaji":{"family":"Baloo Paaji","category":"display","variants":["regular"]},"Baloo Tamma":{"family":"Baloo Tamma","category":"display","variants":["regular"]},"Baloo Tammudu":{"family":"Baloo Tammudu","category":"display","variants":["regular"]},"Baloo Thambi":{"family":"Baloo Thambi","category":"display","variants":["regular"]},"Balthazar":{"family":"Balthazar","category":"serif","variants":["regular"]},"Bangers":{"family":"Bangers","category":"display","variants":["regular"]},"Barlow":{"family":"Barlow","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Condensed":{"family":"Barlow Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barlow Semi Condensed":{"family":"Barlow Semi Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Barrio":{"family":"Barrio","category":"display","variants":["regular"]},"Basic":{"family":"Basic","category":"sans-serif","variants":["regular"]},"Battambang":{"family":"Battambang","category":"display","variants":["700","regular"]},"Baumans":{"family":"Baumans","category":"display","variants":["regular"]},"Bayon":{"family":"Bayon","category":"display","variants":["regular"]},"Belgrano":{"family":"Belgrano","category":"serif","variants":["regular"]},"Bellefair":{"family":"Bellefair","category":"serif","variants":["regular"]},"Belleza":{"family":"Belleza","category":"sans-serif","variants":["regular"]},"BenchNine":{"family":"BenchNine","category":"sans-serif","variants":["300","700","regular"]},"Bentham":{"family":"Bentham","category":"serif","variants":["regular"]},"Berkshire Swash":{"family":"Berkshire Swash","category":"handwriting","variants":["regular"]},"Bevan":{"family":"Bevan","category":"display","variants":["regular"]},"Bigelow Rules":{"family":"Bigelow Rules","category":"display","variants":["regular"]},"Bigshot One":{"family":"Bigshot One","category":"display","variants":["regular"]},"Bilbo":{"family":"Bilbo","category":"handwriting","variants":["regular"]},"Bilbo Swash Caps":{"family":"Bilbo Swash Caps","category":"handwriting","variants":["regular"]},"BioRhyme":{"family":"BioRhyme","category":"serif","variants":["200","300","700","800","regular"]},"BioRhyme Expanded":{"family":"BioRhyme Expanded","category":"serif","variants":["200","300","700","800","regular"]},"Biryani":{"family":"Biryani","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Bitter":{"family":"Bitter","category":"serif","variants":["700","italic","regular"]},"Black And White Picture":{"family":"Black And White Picture","category":"sans-serif","variants":["regular"]},"Black Han Sans":{"family":"Black Han Sans","category":"sans-serif","variants":["regular"]},"Black Ops One":{"family":"Black Ops One","category":"display","variants":["regular"]},"Bokor":{"family":"Bokor","category":"display","variants":["regular"]},"Bonbon":{"family":"Bonbon","category":"handwriting","variants":["regular"]},"Boogaloo":{"family":"Boogaloo","category":"display","variants":["regular"]},"Bowlby One":{"family":"Bowlby One","category":"display","variants":["regular"]},"Bowlby One SC":{"family":"Bowlby One SC","category":"display","variants":["regular"]},"Brawler":{"family":"Brawler","category":"serif","variants":["regular"]},"Bree Serif":{"family":"Bree Serif","category":"serif","variants":["regular"]},"Bubblegum Sans":{"family":"Bubblegum Sans","category":"display","variants":["regular"]},"Bubbler One":{"family":"Bubbler One","category":"sans-serif","variants":["regular"]},"Buda":{"family":"Buda","category":"display","variants":["300"]},"Buenard":{"family":"Buenard","category":"serif","variants":["700","regular"]},"Bungee":{"family":"Bungee","category":"display","variants":["regular"]},"Bungee Hairline":{"family":"Bungee Hairline","category":"display","variants":["regular"]},"Bungee Inline":{"family":"Bungee Inline","category":"display","variants":["regular"]},"Bungee Outline":{"family":"Bungee Outline","category":"display","variants":["regular"]},"Bungee Shade":{"family":"Bungee Shade","category":"display","variants":["regular"]},"Butcherman":{"family":"Butcherman","category":"display","variants":["regular"]},"Butterfly Kids":{"family":"Butterfly Kids","category":"handwriting","variants":["regular"]},"Cabin":{"family":"Cabin","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Cabin Condensed":{"family":"Cabin Condensed","category":"sans-serif","variants":["500","600","700","regular"]},"Cabin Sketch":{"family":"Cabin Sketch","category":"display","variants":["700","regular"]},"Caesar Dressing":{"family":"Caesar Dressing","category":"display","variants":["regular"]},"Cagliostro":{"family":"Cagliostro","category":"sans-serif","variants":["regular"]},"Cairo":{"family":"Cairo","category":"sans-serif","variants":["200","300","600","700","900","regular"]},"Calligraffitti":{"family":"Calligraffitti","category":"handwriting","variants":["regular"]},"Cambay":{"family":"Cambay","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cambo":{"family":"Cambo","category":"serif","variants":["regular"]},"Candal":{"family":"Candal","category":"sans-serif","variants":["regular"]},"Cantarell":{"family":"Cantarell","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cantata One":{"family":"Cantata One","category":"serif","variants":["regular"]},"Cantora One":{"family":"Cantora One","category":"sans-serif","variants":["regular"]},"Capriola":{"family":"Capriola","category":"sans-serif","variants":["regular"]},"Cardo":{"family":"Cardo","category":"serif","variants":["700","italic","regular"]},"Carme":{"family":"Carme","category":"sans-serif","variants":["regular"]},"Carrois Gothic":{"family":"Carrois Gothic","category":"sans-serif","variants":["regular"]},"Carrois Gothic SC":{"family":"Carrois Gothic SC","category":"sans-serif","variants":["regular"]},"Carter One":{"family":"Carter One","category":"display","variants":["regular"]},"Catamaran":{"family":"Catamaran","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Caudex":{"family":"Caudex","category":"serif","variants":["700","700italic","italic","regular"]},"Caveat":{"family":"Caveat","category":"handwriting","variants":["700","regular"]},"Caveat Brush":{"family":"Caveat Brush","category":"handwriting","variants":["regular"]},"Cedarville Cursive":{"family":"Cedarville Cursive","category":"handwriting","variants":["regular"]},"Ceviche One":{"family":"Ceviche One","category":"display","variants":["regular"]},"Chakra Petch":{"family":"Chakra Petch","category":"sans-serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Changa":{"family":"Changa","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Changa One":{"family":"Changa One","category":"display","variants":["italic","regular"]},"Chango":{"family":"Chango","category":"display","variants":["regular"]},"Charm":{"family":"Charm","category":"handwriting","variants":["700","regular"]},"Charmonman":{"family":"Charmonman","category":"handwriting","variants":["700","regular"]},"Chathura":{"family":"Chathura","category":"sans-serif","variants":["100","300","700","800","regular"]},"Chau Philomene One":{"family":"Chau Philomene One","category":"sans-serif","variants":["italic","regular"]},"Chela One":{"family":"Chela One","category":"display","variants":["regular"]},"Chelsea Market":{"family":"Chelsea Market","category":"display","variants":["regular"]},"Chenla":{"family":"Chenla","category":"display","variants":["regular"]},"Cherry Cream Soda":{"family":"Cherry Cream Soda","category":"display","variants":["regular"]},"Cherry Swash":{"family":"Cherry Swash","category":"display","variants":["700","regular"]},"Chewy":{"family":"Chewy","category":"display","variants":["regular"]},"Chicle":{"family":"Chicle","category":"display","variants":["regular"]},"Chivo":{"family":"Chivo","category":"sans-serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Chonburi":{"family":"Chonburi","category":"display","variants":["regular"]},"Cinzel":{"family":"Cinzel","category":"serif","variants":["700","900","regular"]},"Cinzel Decorative":{"family":"Cinzel Decorative","category":"display","variants":["700","900","regular"]},"Clicker Script":{"family":"Clicker Script","category":"handwriting","variants":["regular"]},"Coda":{"family":"Coda","category":"display","variants":["800","regular"]},"Coda Caption":{"family":"Coda Caption","category":"sans-serif","variants":["800"]},"Codystar":{"family":"Codystar","category":"display","variants":["300","regular"]},"Coiny":{"family":"Coiny","category":"display","variants":["regular"]},"Combo":{"family":"Combo","category":"display","variants":["regular"]},"Comfortaa":{"family":"Comfortaa","category":"display","variants":["300","500","600","700","regular"]},"Coming Soon":{"family":"Coming Soon","category":"handwriting","variants":["regular"]},"Concert One":{"family":"Concert One","category":"display","variants":["regular"]},"Condiment":{"family":"Condiment","category":"handwriting","variants":["regular"]},"Content":{"family":"Content","category":"display","variants":["700","regular"]},"Contrail One":{"family":"Contrail One","category":"display","variants":["regular"]},"Convergence":{"family":"Convergence","category":"sans-serif","variants":["regular"]},"Cookie":{"family":"Cookie","category":"handwriting","variants":["regular"]},"Copse":{"family":"Copse","category":"serif","variants":["regular"]},"Corben":{"family":"Corben","category":"display","variants":["700","regular"]},"Cormorant":{"family":"Cormorant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Garamond":{"family":"Cormorant Garamond","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant Infant":{"family":"Cormorant Infant","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Cormorant SC":{"family":"Cormorant SC","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Unicase":{"family":"Cormorant Unicase","category":"serif","variants":["300","500","600","700","regular"]},"Cormorant Upright":{"family":"Cormorant Upright","category":"serif","variants":["300","500","600","700","regular"]},"Courgette":{"family":"Courgette","category":"handwriting","variants":["regular"]},"Cousine":{"family":"Cousine","category":"monospace","variants":["700","700italic","italic","regular"]},"Coustard":{"family":"Coustard","category":"serif","variants":["900","regular"]},"Covered By Your Grace":{"family":"Covered By Your Grace","category":"handwriting","variants":["regular"]},"Crafty Girls":{"family":"Crafty Girls","category":"handwriting","variants":["regular"]},"Creepster":{"family":"Creepster","category":"display","variants":["regular"]},"Crete Round":{"family":"Crete Round","category":"serif","variants":["italic","regular"]},"Crimson Text":{"family":"Crimson Text","category":"serif","variants":["600","600italic","700","700italic","italic","regular"]},"Croissant One":{"family":"Croissant One","category":"display","variants":["regular"]},"Crushed":{"family":"Crushed","category":"display","variants":["regular"]},"Cuprum":{"family":"Cuprum","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Cute Font":{"family":"Cute Font","category":"display","variants":["regular"]},"Cutive":{"family":"Cutive","category":"serif","variants":["regular"]},"Cutive Mono":{"family":"Cutive Mono","category":"monospace","variants":["regular"]},"Damion":{"family":"Damion","category":"handwriting","variants":["regular"]},"Dancing Script":{"family":"Dancing Script","category":"handwriting","variants":["700","regular"]},"Dangrek":{"family":"Dangrek","category":"display","variants":["regular"]},"David Libre":{"family":"David Libre","category":"serif","variants":["500","700","regular"]},"Dawning of a New Day":{"family":"Dawning of a New Day","category":"handwriting","variants":["regular"]},"Days One":{"family":"Days One","category":"sans-serif","variants":["regular"]},"Dekko":{"family":"Dekko","category":"handwriting","variants":["regular"]},"Delius":{"family":"Delius","category":"handwriting","variants":["regular"]},"Delius Swash Caps":{"family":"Delius Swash Caps","category":"handwriting","variants":["regular"]},"Delius Unicase":{"family":"Delius Unicase","category":"handwriting","variants":["700","regular"]},"Della Respira":{"family":"Della Respira","category":"serif","variants":["regular"]},"Denk One":{"family":"Denk One","category":"sans-serif","variants":["regular"]},"Devonshire":{"family":"Devonshire","category":"handwriting","variants":["regular"]},"Dhurjati":{"family":"Dhurjati","category":"sans-serif","variants":["regular"]},"Didact Gothic":{"family":"Didact Gothic","category":"sans-serif","variants":["regular"]},"Diplomata":{"family":"Diplomata","category":"display","variants":["regular"]},"Diplomata SC":{"family":"Diplomata SC","category":"display","variants":["regular"]},"Do Hyeon":{"family":"Do Hyeon","category":"sans-serif","variants":["regular"]},"Dokdo":{"family":"Dokdo","category":"handwriting","variants":["regular"]},"Domine":{"family":"Domine","category":"serif","variants":["700","regular"]},"Donegal One":{"family":"Donegal One","category":"serif","variants":["regular"]},"Doppio One":{"family":"Doppio One","category":"sans-serif","variants":["regular"]},"Dorsa":{"family":"Dorsa","category":"sans-serif","variants":["regular"]},"Dosis":{"family":"Dosis","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Dr Sugiyama":{"family":"Dr Sugiyama","category":"handwriting","variants":["regular"]},"Duru Sans":{"family":"Duru Sans","category":"sans-serif","variants":["regular"]},"Dynalight":{"family":"Dynalight","category":"display","variants":["regular"]},"EB Garamond":{"family":"EB Garamond","category":"serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Eagle Lake":{"family":"Eagle Lake","category":"handwriting","variants":["regular"]},"East Sea Dokdo":{"family":"East Sea Dokdo","category":"handwriting","variants":["regular"]},"Eater":{"family":"Eater","category":"display","variants":["regular"]},"Economica":{"family":"Economica","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Eczar":{"family":"Eczar","category":"serif","variants":["500","600","700","800","regular"]},"El Messiri":{"family":"El Messiri","category":"sans-serif","variants":["500","600","700","regular"]},"Electrolize":{"family":"Electrolize","category":"sans-serif","variants":["regular"]},"Elsie":{"family":"Elsie","category":"display","variants":["900","regular"]},"Elsie Swash Caps":{"family":"Elsie Swash Caps","category":"display","variants":["900","regular"]},"Emblema One":{"family":"Emblema One","category":"display","variants":["regular"]},"Emilys Candy":{"family":"Emilys Candy","category":"display","variants":["regular"]},"Encode Sans":{"family":"Encode Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Condensed":{"family":"Encode Sans Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Expanded":{"family":"Encode Sans Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Condensed":{"family":"Encode Sans Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Encode Sans Semi Expanded":{"family":"Encode Sans Semi Expanded","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Engagement":{"family":"Engagement","category":"handwriting","variants":["regular"]},"Englebert":{"family":"Englebert","category":"sans-serif","variants":["regular"]},"Enriqueta":{"family":"Enriqueta","category":"serif","variants":["700","regular"]},"Erica One":{"family":"Erica One","category":"display","variants":["regular"]},"Esteban":{"family":"Esteban","category":"serif","variants":["regular"]},"Euphoria Script":{"family":"Euphoria Script","category":"handwriting","variants":["regular"]},"Ewert":{"family":"Ewert","category":"display","variants":["regular"]},"Exo":{"family":"Exo","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Exo 2":{"family":"Exo 2","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Expletus Sans":{"family":"Expletus Sans","category":"display","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Fahkwang":{"family":"Fahkwang","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Fanwood Text":{"family":"Fanwood Text","category":"serif","variants":["italic","regular"]},"Farsan":{"family":"Farsan","category":"display","variants":["regular"]},"Fascinate":{"family":"Fascinate","category":"display","variants":["regular"]},"Fascinate Inline":{"family":"Fascinate Inline","category":"display","variants":["regular"]},"Faster One":{"family":"Faster One","category":"display","variants":["regular"]},"Fasthand":{"family":"Fasthand","category":"serif","variants":["regular"]},"Fauna One":{"family":"Fauna One","category":"serif","variants":["regular"]},"Faustina":{"family":"Faustina","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Federant":{"family":"Federant","category":"display","variants":["regular"]},"Federo":{"family":"Federo","category":"sans-serif","variants":["regular"]},"Felipa":{"family":"Felipa","category":"handwriting","variants":["regular"]},"Fenix":{"family":"Fenix","category":"serif","variants":["regular"]},"Finger Paint":{"family":"Finger Paint","category":"display","variants":["regular"]},"Fira Mono":{"family":"Fira Mono","category":"monospace","variants":["500","700","regular"]},"Fira Sans":{"family":"Fira Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Condensed":{"family":"Fira Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fira Sans Extra Condensed":{"family":"Fira Sans Extra Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Fjalla One":{"family":"Fjalla One","category":"sans-serif","variants":["regular"]},"Fjord One":{"family":"Fjord One","category":"serif","variants":["regular"]},"Flamenco":{"family":"Flamenco","category":"display","variants":["300","regular"]},"Flavors":{"family":"Flavors","category":"display","variants":["regular"]},"Fondamento":{"family":"Fondamento","category":"handwriting","variants":["italic","regular"]},"Fontdiner Swanky":{"family":"Fontdiner Swanky","category":"display","variants":["regular"]},"Forum":{"family":"Forum","category":"display","variants":["regular"]},"Francois One":{"family":"Francois One","category":"sans-serif","variants":["regular"]},"Frank Ruhl Libre":{"family":"Frank Ruhl Libre","category":"serif","variants":["300","500","700","900","regular"]},"Freckle Face":{"family":"Freckle Face","category":"display","variants":["regular"]},"Fredericka the Great":{"family":"Fredericka the Great","category":"display","variants":["regular"]},"Fredoka One":{"family":"Fredoka One","category":"display","variants":["regular"]},"Freehand":{"family":"Freehand","category":"display","variants":["regular"]},"Fresca":{"family":"Fresca","category":"sans-serif","variants":["regular"]},"Frijole":{"family":"Frijole","category":"display","variants":["regular"]},"Fruktur":{"family":"Fruktur","category":"display","variants":["regular"]},"Fugaz One":{"family":"Fugaz One","category":"display","variants":["regular"]},"GFS Didot":{"family":"GFS Didot","category":"serif","variants":["regular"]},"GFS Neohellenic":{"family":"GFS Neohellenic","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Gabriela":{"family":"Gabriela","category":"serif","variants":["regular"]},"Gaegu":{"family":"Gaegu","category":"handwriting","variants":["300","700","regular"]},"Gafata":{"family":"Gafata","category":"sans-serif","variants":["regular"]},"Galada":{"family":"Galada","category":"display","variants":["regular"]},"Galdeano":{"family":"Galdeano","category":"sans-serif","variants":["regular"]},"Galindo":{"family":"Galindo","category":"display","variants":["regular"]},"Gamja Flower":{"family":"Gamja Flower","category":"handwriting","variants":["regular"]},"Gentium Basic":{"family":"Gentium Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Gentium Book Basic":{"family":"Gentium Book Basic","category":"serif","variants":["700","700italic","italic","regular"]},"Geo":{"family":"Geo","category":"sans-serif","variants":["italic","regular"]},"Geostar":{"family":"Geostar","category":"display","variants":["regular"]},"Geostar Fill":{"family":"Geostar Fill","category":"display","variants":["regular"]},"Germania One":{"family":"Germania One","category":"display","variants":["regular"]},"Gidugu":{"family":"Gidugu","category":"sans-serif","variants":["regular"]},"Gilda Display":{"family":"Gilda Display","category":"serif","variants":["regular"]},"Give You Glory":{"family":"Give You Glory","category":"handwriting","variants":["regular"]},"Glass Antiqua":{"family":"Glass Antiqua","category":"display","variants":["regular"]},"Glegoo":{"family":"Glegoo","category":"serif","variants":["700","regular"]},"Gloria Hallelujah":{"family":"Gloria Hallelujah","category":"handwriting","variants":["regular"]},"Goblin One":{"family":"Goblin One","category":"display","variants":["regular"]},"Gochi Hand":{"family":"Gochi Hand","category":"handwriting","variants":["regular"]},"Gorditas":{"family":"Gorditas","category":"display","variants":["700","regular"]},"Gothic A1":{"family":"Gothic A1","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Goudy Bookletter 1911":{"family":"Goudy Bookletter 1911","category":"serif","variants":["regular"]},"Graduate":{"family":"Graduate","category":"display","variants":["regular"]},"Grand Hotel":{"family":"Grand Hotel","category":"handwriting","variants":["regular"]},"Gravitas One":{"family":"Gravitas One","category":"display","variants":["regular"]},"Great Vibes":{"family":"Great Vibes","category":"handwriting","variants":["regular"]},"Griffy":{"family":"Griffy","category":"display","variants":["regular"]},"Gruppo":{"family":"Gruppo","category":"display","variants":["regular"]},"Gudea":{"family":"Gudea","category":"sans-serif","variants":["700","italic","regular"]},"Gugi":{"family":"Gugi","category":"display","variants":["regular"]},"Gurajada":{"family":"Gurajada","category":"serif","variants":["regular"]},"Habibi":{"family":"Habibi","category":"serif","variants":["regular"]},"Halant":{"family":"Halant","category":"serif","variants":["300","500","600","700","regular"]},"Hammersmith One":{"family":"Hammersmith One","category":"sans-serif","variants":["regular"]},"Hanalei":{"family":"Hanalei","category":"display","variants":["regular"]},"Hanalei Fill":{"family":"Hanalei Fill","category":"display","variants":["regular"]},"Handlee":{"family":"Handlee","category":"handwriting","variants":["regular"]},"Hanuman":{"family":"Hanuman","category":"serif","variants":["700","regular"]},"Happy Monkey":{"family":"Happy Monkey","category":"display","variants":["regular"]},"Harmattan":{"family":"Harmattan","category":"sans-serif","variants":["regular"]},"Headland One":{"family":"Headland One","category":"serif","variants":["regular"]},"Heebo":{"family":"Heebo","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Henny Penny":{"family":"Henny Penny","category":"display","variants":["regular"]},"Herr Von Muellerhoff":{"family":"Herr Von Muellerhoff","category":"handwriting","variants":["regular"]},"Hi Melody":{"family":"Hi Melody","category":"handwriting","variants":["regular"]},"Hind":{"family":"Hind","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Guntur":{"family":"Hind Guntur","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Madurai":{"family":"Hind Madurai","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Siliguri":{"family":"Hind Siliguri","category":"sans-serif","variants":["300","500","600","700","regular"]},"Hind Vadodara":{"family":"Hind Vadodara","category":"sans-serif","variants":["300","500","600","700","regular"]},"Holtwood One SC":{"family":"Holtwood One SC","category":"serif","variants":["regular"]},"Homemade Apple":{"family":"Homemade Apple","category":"handwriting","variants":["regular"]},"Homenaje":{"family":"Homenaje","category":"sans-serif","variants":["regular"]},"IBM Plex Mono":{"family":"IBM Plex Mono","category":"monospace","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans":{"family":"IBM Plex Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Sans Condensed":{"family":"IBM Plex Sans Condensed","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IBM Plex Serif":{"family":"IBM Plex Serif","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"IM Fell DW Pica":{"family":"IM Fell DW Pica","category":"serif","variants":["italic","regular"]},"IM Fell DW Pica SC":{"family":"IM Fell DW Pica SC","category":"serif","variants":["regular"]},"IM Fell Double Pica":{"family":"IM Fell Double Pica","category":"serif","variants":["italic","regular"]},"IM Fell Double Pica SC":{"family":"IM Fell Double Pica SC","category":"serif","variants":["regular"]},"IM Fell English":{"family":"IM Fell English","category":"serif","variants":["italic","regular"]},"IM Fell English SC":{"family":"IM Fell English SC","category":"serif","variants":["regular"]},"IM Fell French Canon":{"family":"IM Fell French Canon","category":"serif","variants":["italic","regular"]},"IM Fell French Canon SC":{"family":"IM Fell French Canon SC","category":"serif","variants":["regular"]},"IM Fell Great Primer":{"family":"IM Fell Great Primer","category":"serif","variants":["italic","regular"]},"IM Fell Great Primer SC":{"family":"IM Fell Great Primer SC","category":"serif","variants":["regular"]},"Iceberg":{"family":"Iceberg","category":"display","variants":["regular"]},"Iceland":{"family":"Iceland","category":"display","variants":["regular"]},"Imprima":{"family":"Imprima","category":"sans-serif","variants":["regular"]},"Inconsolata":{"family":"Inconsolata","category":"monospace","variants":["700","regular"]},"Inder":{"family":"Inder","category":"sans-serif","variants":["regular"]},"Indie Flower":{"family":"Indie Flower","category":"handwriting","variants":["regular"]},"Inika":{"family":"Inika","category":"serif","variants":["700","regular"]},"Inknut Antiqua":{"family":"Inknut Antiqua","category":"serif","variants":["300","500","600","700","800","900","regular"]},"Irish Grover":{"family":"Irish Grover","category":"display","variants":["regular"]},"Istok Web":{"family":"Istok Web","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Italiana":{"family":"Italiana","category":"serif","variants":["regular"]},"Italianno":{"family":"Italianno","category":"handwriting","variants":["regular"]},"Itim":{"family":"Itim","category":"handwriting","variants":["regular"]},"Jacques Francois":{"family":"Jacques Francois","category":"serif","variants":["regular"]},"Jacques Francois Shadow":{"family":"Jacques Francois Shadow","category":"display","variants":["regular"]},"Jaldi":{"family":"Jaldi","category":"sans-serif","variants":["700","regular"]},"Jim Nightshade":{"family":"Jim Nightshade","category":"handwriting","variants":["regular"]},"Jockey One":{"family":"Jockey One","category":"sans-serif","variants":["regular"]},"Jolly Lodger":{"family":"Jolly Lodger","category":"display","variants":["regular"]},"Jomhuria":{"family":"Jomhuria","category":"display","variants":["regular"]},"Josefin Sans":{"family":"Josefin Sans","category":"sans-serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Josefin Slab":{"family":"Josefin Slab","category":"serif","variants":["100","100italic","300","300italic","600","600italic","700","700italic","italic","regular"]},"Joti One":{"family":"Joti One","category":"display","variants":["regular"]},"Jua":{"family":"Jua","category":"sans-serif","variants":["regular"]},"Judson":{"family":"Judson","category":"serif","variants":["700","italic","regular"]},"Julee":{"family":"Julee","category":"handwriting","variants":["regular"]},"Julius Sans One":{"family":"Julius Sans One","category":"sans-serif","variants":["regular"]},"Junge":{"family":"Junge","category":"serif","variants":["regular"]},"Jura":{"family":"Jura","category":"sans-serif","variants":["300","500","600","700","regular"]},"Just Another Hand":{"family":"Just Another Hand","category":"handwriting","variants":["regular"]},"Just Me Again Down Here":{"family":"Just Me Again Down Here","category":"handwriting","variants":["regular"]},"K2D":{"family":"K2D","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Kadwa":{"family":"Kadwa","category":"serif","variants":["700","regular"]},"Kalam":{"family":"Kalam","category":"handwriting","variants":["300","700","regular"]},"Kameron":{"family":"Kameron","category":"serif","variants":["700","regular"]},"Kanit":{"family":"Kanit","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Kantumruy":{"family":"Kantumruy","category":"sans-serif","variants":["300","700","regular"]},"Karla":{"family":"Karla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Karma":{"family":"Karma","category":"serif","variants":["300","500","600","700","regular"]},"Katibeh":{"family":"Katibeh","category":"display","variants":["regular"]},"Kaushan Script":{"family":"Kaushan Script","category":"handwriting","variants":["regular"]},"Kavivanar":{"family":"Kavivanar","category":"handwriting","variants":["regular"]},"Kavoon":{"family":"Kavoon","category":"display","variants":["regular"]},"Kdam Thmor":{"family":"Kdam Thmor","category":"display","variants":["regular"]},"Keania One":{"family":"Keania One","category":"display","variants":["regular"]},"Kelly Slab":{"family":"Kelly Slab","category":"display","variants":["regular"]},"Kenia":{"family":"Kenia","category":"display","variants":["regular"]},"Khand":{"family":"Khand","category":"sans-serif","variants":["300","500","600","700","regular"]},"Khmer":{"family":"Khmer","category":"display","variants":["regular"]},"Khula":{"family":"Khula","category":"sans-serif","variants":["300","600","700","800","regular"]},"Kirang Haerang":{"family":"Kirang Haerang","category":"display","variants":["regular"]},"Kite One":{"family":"Kite One","category":"sans-serif","variants":["regular"]},"Knewave":{"family":"Knewave","category":"display","variants":["regular"]},"KoHo":{"family":"KoHo","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kodchasan":{"family":"Kodchasan","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kosugi":{"family":"Kosugi","category":"sans-serif","variants":["regular"]},"Kosugi Maru":{"family":"Kosugi Maru","category":"sans-serif","variants":["regular"]},"Kotta One":{"family":"Kotta One","category":"serif","variants":["regular"]},"Koulen":{"family":"Koulen","category":"display","variants":["regular"]},"Kranky":{"family":"Kranky","category":"display","variants":["regular"]},"Kreon":{"family":"Kreon","category":"serif","variants":["300","700","regular"]},"Kristi":{"family":"Kristi","category":"handwriting","variants":["regular"]},"Krona One":{"family":"Krona One","category":"sans-serif","variants":["regular"]},"Krub":{"family":"Krub","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Kumar One":{"family":"Kumar One","category":"display","variants":["regular"]},"Kumar One Outline":{"family":"Kumar One Outline","category":"display","variants":["regular"]},"Kurale":{"family":"Kurale","category":"serif","variants":["regular"]},"La Belle Aurore":{"family":"La Belle Aurore","category":"handwriting","variants":["regular"]},"Laila":{"family":"Laila","category":"serif","variants":["300","500","600","700","regular"]},"Lakki Reddy":{"family":"Lakki Reddy","category":"handwriting","variants":["regular"]},"Lalezar":{"family":"Lalezar","category":"display","variants":["regular"]},"Lancelot":{"family":"Lancelot","category":"display","variants":["regular"]},"Lateef":{"family":"Lateef","category":"handwriting","variants":["regular"]},"Lato":{"family":"Lato","category":"sans-serif","variants":["100","100italic","300","300italic","700","700italic","900","900italic","italic","regular"]},"League Script":{"family":"League Script","category":"handwriting","variants":["regular"]},"Leckerli One":{"family":"Leckerli One","category":"handwriting","variants":["regular"]},"Ledger":{"family":"Ledger","category":"serif","variants":["regular"]},"Lekton":{"family":"Lekton","category":"sans-serif","variants":["700","italic","regular"]},"Lemon":{"family":"Lemon","category":"display","variants":["regular"]},"Lemonada":{"family":"Lemonada","category":"display","variants":["300","600","700","regular"]},"Libre Barcode 128":{"family":"Libre Barcode 128","category":"display","variants":["regular"]},"Libre Barcode 128 Text":{"family":"Libre Barcode 128 Text","category":"display","variants":["regular"]},"Libre Barcode 39":{"family":"Libre Barcode 39","category":"display","variants":["regular"]},"Libre Barcode 39 Extended":{"family":"Libre Barcode 39 Extended","category":"display","variants":["regular"]},"Libre Barcode 39 Extended Text":{"family":"Libre Barcode 39 Extended Text","category":"display","variants":["regular"]},"Libre Barcode 39 Text":{"family":"Libre Barcode 39 Text","category":"display","variants":["regular"]},"Libre Baskerville":{"family":"Libre Baskerville","category":"serif","variants":["700","italic","regular"]},"Libre Franklin":{"family":"Libre Franklin","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Life Savers":{"family":"Life Savers","category":"display","variants":["700","regular"]},"Lilita One":{"family":"Lilita One","category":"display","variants":["regular"]},"Lily Script One":{"family":"Lily Script One","category":"display","variants":["regular"]},"Limelight":{"family":"Limelight","category":"display","variants":["regular"]},"Linden Hill":{"family":"Linden Hill","category":"serif","variants":["italic","regular"]},"Lobster":{"family":"Lobster","category":"display","variants":["regular"]},"Lobster Two":{"family":"Lobster Two","category":"display","variants":["700","700italic","italic","regular"]},"Londrina Outline":{"family":"Londrina Outline","category":"display","variants":["regular"]},"Londrina Shadow":{"family":"Londrina Shadow","category":"display","variants":["regular"]},"Londrina Sketch":{"family":"Londrina Sketch","category":"display","variants":["regular"]},"Londrina Solid":{"family":"Londrina Solid","category":"display","variants":["100","300","900","regular"]},"Lora":{"family":"Lora","category":"serif","variants":["700","700italic","italic","regular"]},"Love Ya Like A Sister":{"family":"Love Ya Like A Sister","category":"display","variants":["regular"]},"Loved by the King":{"family":"Loved by the King","category":"handwriting","variants":["regular"]},"Lovers Quarrel":{"family":"Lovers Quarrel","category":"handwriting","variants":["regular"]},"Luckiest Guy":{"family":"Luckiest Guy","category":"display","variants":["regular"]},"Lusitana":{"family":"Lusitana","category":"serif","variants":["700","regular"]},"Lustria":{"family":"Lustria","category":"serif","variants":["regular"]},"M PLUS 1p":{"family":"M PLUS 1p","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"M PLUS Rounded 1c":{"family":"M PLUS Rounded 1c","category":"sans-serif","variants":["100","300","500","700","800","900","regular"]},"Macondo":{"family":"Macondo","category":"display","variants":["regular"]},"Macondo Swash Caps":{"family":"Macondo Swash Caps","category":"display","variants":["regular"]},"Mada":{"family":"Mada","category":"sans-serif","variants":["200","300","500","600","700","900","regular"]},"Magra":{"family":"Magra","category":"sans-serif","variants":["700","regular"]},"Maiden Orange":{"family":"Maiden Orange","category":"display","variants":["regular"]},"Maitree":{"family":"Maitree","category":"serif","variants":["200","300","500","600","700","regular"]},"Major Mono Display":{"family":"Major Mono Display","category":"monospace","variants":["regular"]},"Mako":{"family":"Mako","category":"sans-serif","variants":["regular"]},"Mali":{"family":"Mali","category":"handwriting","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Mallanna":{"family":"Mallanna","category":"sans-serif","variants":["regular"]},"Mandali":{"family":"Mandali","category":"sans-serif","variants":["regular"]},"Manuale":{"family":"Manuale","category":"serif","variants":["500","500italic","600","600italic","700","700italic","italic","regular"]},"Marcellus":{"family":"Marcellus","category":"serif","variants":["regular"]},"Marcellus SC":{"family":"Marcellus SC","category":"serif","variants":["regular"]},"Marck Script":{"family":"Marck Script","category":"handwriting","variants":["regular"]},"Margarine":{"family":"Margarine","category":"display","variants":["regular"]},"Markazi Text":{"family":"Markazi Text","category":"serif","variants":["500","600","700","regular"]},"Marko One":{"family":"Marko One","category":"serif","variants":["regular"]},"Marmelad":{"family":"Marmelad","category":"sans-serif","variants":["regular"]},"Martel":{"family":"Martel","category":"serif","variants":["200","300","600","700","800","900","regular"]},"Martel Sans":{"family":"Martel Sans","category":"sans-serif","variants":["200","300","600","700","800","900","regular"]},"Marvel":{"family":"Marvel","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Mate":{"family":"Mate","category":"serif","variants":["italic","regular"]},"Mate SC":{"family":"Mate SC","category":"serif","variants":["regular"]},"Maven Pro":{"family":"Maven Pro","category":"sans-serif","variants":["500","700","900","regular"]},"McLaren":{"family":"McLaren","category":"display","variants":["regular"]},"Meddon":{"family":"Meddon","category":"handwriting","variants":["regular"]},"MedievalSharp":{"family":"MedievalSharp","category":"display","variants":["regular"]},"Medula One":{"family":"Medula One","category":"display","variants":["regular"]},"Meera Inimai":{"family":"Meera Inimai","category":"sans-serif","variants":["regular"]},"Megrim":{"family":"Megrim","category":"display","variants":["regular"]},"Meie Script":{"family":"Meie Script","category":"handwriting","variants":["regular"]},"Merienda":{"family":"Merienda","category":"handwriting","variants":["700","regular"]},"Merienda One":{"family":"Merienda One","category":"handwriting","variants":["regular"]},"Merriweather":{"family":"Merriweather","category":"serif","variants":["300","300italic","700","700italic","900","900italic","italic","regular"]},"Merriweather Sans":{"family":"Merriweather Sans","category":"sans-serif","variants":["300","300italic","700","700italic","800","800italic","italic","regular"]},"Metal":{"family":"Metal","category":"display","variants":["regular"]},"Metal Mania":{"family":"Metal Mania","category":"display","variants":["regular"]},"Metamorphous":{"family":"Metamorphous","category":"display","variants":["regular"]},"Metrophobic":{"family":"Metrophobic","category":"sans-serif","variants":["regular"]},"Michroma":{"family":"Michroma","category":"sans-serif","variants":["regular"]},"Milonga":{"family":"Milonga","category":"display","variants":["regular"]},"Miltonian":{"family":"Miltonian","category":"display","variants":["regular"]},"Miltonian Tattoo":{"family":"Miltonian Tattoo","category":"display","variants":["regular"]},"Mina":{"family":"Mina","category":"sans-serif","variants":["700","regular"]},"Miniver":{"family":"Miniver","category":"display","variants":["regular"]},"Miriam Libre":{"family":"Miriam Libre","category":"sans-serif","variants":["700","regular"]},"Mirza":{"family":"Mirza","category":"display","variants":["500","600","700","regular"]},"Miss Fajardose":{"family":"Miss Fajardose","category":"handwriting","variants":["regular"]},"Mitr":{"family":"Mitr","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Modak":{"family":"Modak","category":"display","variants":["regular"]},"Modern Antiqua":{"family":"Modern Antiqua","category":"display","variants":["regular"]},"Mogra":{"family":"Mogra","category":"display","variants":["regular"]},"Molengo":{"family":"Molengo","category":"sans-serif","variants":["regular"]},"Molle":{"family":"Molle","category":"handwriting","variants":["italic"]},"Monda":{"family":"Monda","category":"sans-serif","variants":["700","regular"]},"Monofett":{"family":"Monofett","category":"display","variants":["regular"]},"Monoton":{"family":"Monoton","category":"display","variants":["regular"]},"Monsieur La Doulaise":{"family":"Monsieur La Doulaise","category":"handwriting","variants":["regular"]},"Montaga":{"family":"Montaga","category":"serif","variants":["regular"]},"Montez":{"family":"Montez","category":"handwriting","variants":["regular"]},"Montserrat":{"family":"Montserrat","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Alternates":{"family":"Montserrat Alternates","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Montserrat Subrayada":{"family":"Montserrat Subrayada","category":"sans-serif","variants":["700","regular"]},"Moul":{"family":"Moul","category":"display","variants":["regular"]},"Moulpali":{"family":"Moulpali","category":"display","variants":["regular"]},"Mountains of Christmas":{"family":"Mountains of Christmas","category":"display","variants":["700","regular"]},"Mouse Memoirs":{"family":"Mouse Memoirs","category":"sans-serif","variants":["regular"]},"Mr Bedfort":{"family":"Mr Bedfort","category":"handwriting","variants":["regular"]},"Mr Dafoe":{"family":"Mr Dafoe","category":"handwriting","variants":["regular"]},"Mr De Haviland":{"family":"Mr De Haviland","category":"handwriting","variants":["regular"]},"Mrs Saint Delafield":{"family":"Mrs Saint Delafield","category":"handwriting","variants":["regular"]},"Mrs Sheppards":{"family":"Mrs Sheppards","category":"handwriting","variants":["regular"]},"Mukta":{"family":"Mukta","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Mahee":{"family":"Mukta Mahee","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Malar":{"family":"Mukta Malar","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Mukta Vaani":{"family":"Mukta Vaani","category":"sans-serif","variants":["200","300","500","600","700","800","regular"]},"Muli":{"family":"Muli","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Mystery Quest":{"family":"Mystery Quest","category":"display","variants":["regular"]},"NTR":{"family":"NTR","category":"sans-serif","variants":["regular"]},"Nanum Brush Script":{"family":"Nanum Brush Script","category":"handwriting","variants":["regular"]},"Nanum Gothic":{"family":"Nanum Gothic","category":"sans-serif","variants":["700","800","regular"]},"Nanum Gothic Coding":{"family":"Nanum Gothic Coding","category":"monospace","variants":["700","regular"]},"Nanum Myeongjo":{"family":"Nanum Myeongjo","category":"serif","variants":["700","800","regular"]},"Nanum Pen Script":{"family":"Nanum Pen Script","category":"handwriting","variants":["regular"]},"Neucha":{"family":"Neucha","category":"handwriting","variants":["regular"]},"Neuton":{"family":"Neuton","category":"serif","variants":["200","300","700","800","italic","regular"]},"New Rocker":{"family":"New Rocker","category":"display","variants":["regular"]},"News Cycle":{"family":"News Cycle","category":"sans-serif","variants":["700","regular"]},"Niconne":{"family":"Niconne","category":"handwriting","variants":["regular"]},"Niramit":{"family":"Niramit","category":"sans-serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Nixie One":{"family":"Nixie One","category":"display","variants":["regular"]},"Nobile":{"family":"Nobile","category":"sans-serif","variants":["500","500italic","700","700italic","italic","regular"]},"Nokora":{"family":"Nokora","category":"serif","variants":["700","regular"]},"Norican":{"family":"Norican","category":"handwriting","variants":["regular"]},"Nosifer":{"family":"Nosifer","category":"display","variants":["regular"]},"Notable":{"family":"Notable","category":"sans-serif","variants":["regular"]},"Nothing You Could Do":{"family":"Nothing You Could Do","category":"handwriting","variants":["regular"]},"Noticia Text":{"family":"Noticia Text","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Sans":{"family":"Noto Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Noto Sans HK":{"family":"Noto Sans HK","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans JP":{"family":"Noto Sans JP","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans KR":{"family":"Noto Sans KR","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans SC":{"family":"Noto Sans SC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Sans TC":{"family":"Noto Sans TC","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Noto Serif":{"family":"Noto Serif","category":"serif","variants":["700","700italic","italic","regular"]},"Noto Serif JP":{"family":"Noto Serif JP","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif KR":{"family":"Noto Serif KR","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif SC":{"family":"Noto Serif SC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Noto Serif TC":{"family":"Noto Serif TC","category":"serif","variants":["200","300","500","600","700","900","regular"]},"Nova Cut":{"family":"Nova Cut","category":"display","variants":["regular"]},"Nova Flat":{"family":"Nova Flat","category":"display","variants":["regular"]},"Nova Mono":{"family":"Nova Mono","category":"monospace","variants":["regular"]},"Nova Oval":{"family":"Nova Oval","category":"display","variants":["regular"]},"Nova Round":{"family":"Nova Round","category":"display","variants":["regular"]},"Nova Script":{"family":"Nova Script","category":"display","variants":["regular"]},"Nova Slim":{"family":"Nova Slim","category":"display","variants":["regular"]},"Nova Square":{"family":"Nova Square","category":"display","variants":["regular"]},"Numans":{"family":"Numans","category":"sans-serif","variants":["regular"]},"Nunito":{"family":"Nunito","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Nunito Sans":{"family":"Nunito Sans","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Odor Mean Chey":{"family":"Odor Mean Chey","category":"display","variants":["regular"]},"Offside":{"family":"Offside","category":"display","variants":["regular"]},"Old Standard TT":{"family":"Old Standard TT","category":"serif","variants":["700","italic","regular"]},"Oldenburg":{"family":"Oldenburg","category":"display","variants":["regular"]},"Oleo Script":{"family":"Oleo Script","category":"display","variants":["700","regular"]},"Oleo Script Swash Caps":{"family":"Oleo Script Swash Caps","category":"display","variants":["700","regular"]},"Open Sans":{"family":"Open Sans","category":"sans-serif","variants":["300","300italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Open Sans Condensed":{"family":"Open Sans Condensed","category":"sans-serif","variants":["300","300italic","700"]},"Oranienbaum":{"family":"Oranienbaum","category":"serif","variants":["regular"]},"Orbitron":{"family":"Orbitron","category":"sans-serif","variants":["500","700","900","regular"]},"Oregano":{"family":"Oregano","category":"display","variants":["italic","regular"]},"Orienta":{"family":"Orienta","category":"sans-serif","variants":["regular"]},"Original Surfer":{"family":"Original Surfer","category":"display","variants":["regular"]},"Oswald":{"family":"Oswald","category":"sans-serif","variants":["200","300","500","600","700","regular"]},"Over the Rainbow":{"family":"Over the Rainbow","category":"handwriting","variants":["regular"]},"Overlock":{"family":"Overlock","category":"display","variants":["700","700italic","900","900italic","italic","regular"]},"Overlock SC":{"family":"Overlock SC","category":"display","variants":["regular"]},"Overpass":{"family":"Overpass","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Overpass Mono":{"family":"Overpass Mono","category":"monospace","variants":["300","600","700","regular"]},"Ovo":{"family":"Ovo","category":"serif","variants":["regular"]},"Oxygen":{"family":"Oxygen","category":"sans-serif","variants":["300","700","regular"]},"Oxygen Mono":{"family":"Oxygen Mono","category":"monospace","variants":["regular"]},"PT Mono":{"family":"PT Mono","category":"monospace","variants":["regular"]},"PT Sans":{"family":"PT Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"PT Sans Caption":{"family":"PT Sans Caption","category":"sans-serif","variants":["700","regular"]},"PT Sans Narrow":{"family":"PT Sans Narrow","category":"sans-serif","variants":["700","regular"]},"PT Serif":{"family":"PT Serif","category":"serif","variants":["700","700italic","italic","regular"]},"PT Serif Caption":{"family":"PT Serif Caption","category":"serif","variants":["italic","regular"]},"Pacifico":{"family":"Pacifico","category":"handwriting","variants":["regular"]},"Padauk":{"family":"Padauk","category":"sans-serif","variants":["700","regular"]},"Palanquin":{"family":"Palanquin","category":"sans-serif","variants":["100","200","300","500","600","700","regular"]},"Palanquin Dark":{"family":"Palanquin Dark","category":"sans-serif","variants":["500","600","700","regular"]},"Pangolin":{"family":"Pangolin","category":"handwriting","variants":["regular"]},"Paprika":{"family":"Paprika","category":"display","variants":["regular"]},"Parisienne":{"family":"Parisienne","category":"handwriting","variants":["regular"]},"Passero One":{"family":"Passero One","category":"display","variants":["regular"]},"Passion One":{"family":"Passion One","category":"display","variants":["700","900","regular"]},"Pathway Gothic One":{"family":"Pathway Gothic One","category":"sans-serif","variants":["regular"]},"Patrick Hand":{"family":"Patrick Hand","category":"handwriting","variants":["regular"]},"Patrick Hand SC":{"family":"Patrick Hand SC","category":"handwriting","variants":["regular"]},"Pattaya":{"family":"Pattaya","category":"sans-serif","variants":["regular"]},"Patua One":{"family":"Patua One","category":"display","variants":["regular"]},"Pavanam":{"family":"Pavanam","category":"sans-serif","variants":["regular"]},"Paytone One":{"family":"Paytone One","category":"sans-serif","variants":["regular"]},"Peddana":{"family":"Peddana","category":"serif","variants":["regular"]},"Peralta":{"family":"Peralta","category":"display","variants":["regular"]},"Permanent Marker":{"family":"Permanent Marker","category":"handwriting","variants":["regular"]},"Petit Formal Script":{"family":"Petit Formal Script","category":"handwriting","variants":["regular"]},"Petrona":{"family":"Petrona","category":"serif","variants":["regular"]},"Philosopher":{"family":"Philosopher","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Piedra":{"family":"Piedra","category":"display","variants":["regular"]},"Pinyon Script":{"family":"Pinyon Script","category":"handwriting","variants":["regular"]},"Pirata One":{"family":"Pirata One","category":"display","variants":["regular"]},"Plaster":{"family":"Plaster","category":"display","variants":["regular"]},"Play":{"family":"Play","category":"sans-serif","variants":["700","regular"]},"Playball":{"family":"Playball","category":"display","variants":["regular"]},"Playfair Display":{"family":"Playfair Display","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Playfair Display SC":{"family":"Playfair Display SC","category":"serif","variants":["700","700italic","900","900italic","italic","regular"]},"Podkova":{"family":"Podkova","category":"serif","variants":["500","600","700","800","regular"]},"Poiret One":{"family":"Poiret One","category":"display","variants":["regular"]},"Poller One":{"family":"Poller One","category":"display","variants":["regular"]},"Poly":{"family":"Poly","category":"serif","variants":["italic","regular"]},"Pompiere":{"family":"Pompiere","category":"display","variants":["regular"]},"Pontano Sans":{"family":"Pontano Sans","category":"sans-serif","variants":["regular"]},"Poor Story":{"family":"Poor Story","category":"display","variants":["regular"]},"Poppins":{"family":"Poppins","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Port Lligat Sans":{"family":"Port Lligat Sans","category":"sans-serif","variants":["regular"]},"Port Lligat Slab":{"family":"Port Lligat Slab","category":"serif","variants":["regular"]},"Pragati Narrow":{"family":"Pragati Narrow","category":"sans-serif","variants":["700","regular"]},"Prata":{"family":"Prata","category":"serif","variants":["regular"]},"Preahvihear":{"family":"Preahvihear","category":"display","variants":["regular"]},"Press Start 2P":{"family":"Press Start 2P","category":"display","variants":["regular"]},"Pridi":{"family":"Pridi","category":"serif","variants":["200","300","500","600","700","regular"]},"Princess Sofia":{"family":"Princess Sofia","category":"handwriting","variants":["regular"]},"Prociono":{"family":"Prociono","category":"serif","variants":["regular"]},"Prompt":{"family":"Prompt","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Prosto One":{"family":"Prosto One","category":"display","variants":["regular"]},"Proza Libre":{"family":"Proza Libre","category":"sans-serif","variants":["500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Puritan":{"family":"Puritan","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Purple Purse":{"family":"Purple Purse","category":"display","variants":["regular"]},"Quando":{"family":"Quando","category":"serif","variants":["regular"]},"Quantico":{"family":"Quantico","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Quattrocento":{"family":"Quattrocento","category":"serif","variants":["700","regular"]},"Quattrocento Sans":{"family":"Quattrocento Sans","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Questrial":{"family":"Questrial","category":"sans-serif","variants":["regular"]},"Quicksand":{"family":"Quicksand","category":"sans-serif","variants":["300","500","700","regular"]},"Quintessential":{"family":"Quintessential","category":"handwriting","variants":["regular"]},"Qwigley":{"family":"Qwigley","category":"handwriting","variants":["regular"]},"Racing Sans One":{"family":"Racing Sans One","category":"display","variants":["regular"]},"Radley":{"family":"Radley","category":"serif","variants":["italic","regular"]},"Rajdhani":{"family":"Rajdhani","category":"sans-serif","variants":["300","500","600","700","regular"]},"Rakkas":{"family":"Rakkas","category":"display","variants":["regular"]},"Raleway":{"family":"Raleway","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Raleway Dots":{"family":"Raleway Dots","category":"display","variants":["regular"]},"Ramabhadra":{"family":"Ramabhadra","category":"sans-serif","variants":["regular"]},"Ramaraja":{"family":"Ramaraja","category":"serif","variants":["regular"]},"Rambla":{"family":"Rambla","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rammetto One":{"family":"Rammetto One","category":"display","variants":["regular"]},"Ranchers":{"family":"Ranchers","category":"display","variants":["regular"]},"Rancho":{"family":"Rancho","category":"handwriting","variants":["regular"]},"Ranga":{"family":"Ranga","category":"display","variants":["700","regular"]},"Rasa":{"family":"Rasa","category":"serif","variants":["300","500","600","700","regular"]},"Rationale":{"family":"Rationale","category":"sans-serif","variants":["regular"]},"Ravi Prakash":{"family":"Ravi Prakash","category":"display","variants":["regular"]},"Redressed":{"family":"Redressed","category":"handwriting","variants":["regular"]},"Reem Kufi":{"family":"Reem Kufi","category":"sans-serif","variants":["regular"]},"Reenie Beanie":{"family":"Reenie Beanie","category":"handwriting","variants":["regular"]},"Revalia":{"family":"Revalia","category":"display","variants":["regular"]},"Rhodium Libre":{"family":"Rhodium Libre","category":"serif","variants":["regular"]},"Ribeye":{"family":"Ribeye","category":"display","variants":["regular"]},"Ribeye Marrow":{"family":"Ribeye Marrow","category":"display","variants":["regular"]},"Righteous":{"family":"Righteous","category":"display","variants":["regular"]},"Risque":{"family":"Risque","category":"display","variants":["regular"]},"Roboto":{"family":"Roboto","category":"sans-serif","variants":["100","100italic","300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Roboto Condensed":{"family":"Roboto Condensed","category":"sans-serif","variants":["300","300italic","700","700italic","italic","regular"]},"Roboto Mono":{"family":"Roboto Mono","category":"monospace","variants":["100","100italic","300","300italic","500","500italic","700","700italic","italic","regular"]},"Roboto Slab":{"family":"Roboto Slab","category":"serif","variants":["100","300","700","regular"]},"Rochester":{"family":"Rochester","category":"handwriting","variants":["regular"]},"Rock Salt":{"family":"Rock Salt","category":"handwriting","variants":["regular"]},"Rokkitt":{"family":"Rokkitt","category":"serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Romanesco":{"family":"Romanesco","category":"handwriting","variants":["regular"]},"Ropa Sans":{"family":"Ropa Sans","category":"sans-serif","variants":["italic","regular"]},"Rosario":{"family":"Rosario","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Rosarivo":{"family":"Rosarivo","category":"serif","variants":["italic","regular"]},"Rouge Script":{"family":"Rouge Script","category":"handwriting","variants":["regular"]},"Rozha One":{"family":"Rozha One","category":"serif","variants":["regular"]},"Rubik":{"family":"Rubik","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","900","900italic","italic","regular"]},"Rubik Mono One":{"family":"Rubik Mono One","category":"sans-serif","variants":["regular"]},"Ruda":{"family":"Ruda","category":"sans-serif","variants":["700","900","regular"]},"Rufina":{"family":"Rufina","category":"serif","variants":["700","regular"]},"Ruge Boogie":{"family":"Ruge Boogie","category":"handwriting","variants":["regular"]},"Ruluko":{"family":"Ruluko","category":"sans-serif","variants":["regular"]},"Rum Raisin":{"family":"Rum Raisin","category":"sans-serif","variants":["regular"]},"Ruslan Display":{"family":"Ruslan Display","category":"display","variants":["regular"]},"Russo One":{"family":"Russo One","category":"sans-serif","variants":["regular"]},"Ruthie":{"family":"Ruthie","category":"handwriting","variants":["regular"]},"Rye":{"family":"Rye","category":"display","variants":["regular"]},"Sacramento":{"family":"Sacramento","category":"handwriting","variants":["regular"]},"Sahitya":{"family":"Sahitya","category":"serif","variants":["700","regular"]},"Sail":{"family":"Sail","category":"display","variants":["regular"]},"Saira":{"family":"Saira","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Condensed":{"family":"Saira Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Extra Condensed":{"family":"Saira Extra Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Saira Semi Condensed":{"family":"Saira Semi Condensed","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Salsa":{"family":"Salsa","category":"display","variants":["regular"]},"Sanchez":{"family":"Sanchez","category":"serif","variants":["italic","regular"]},"Sancreek":{"family":"Sancreek","category":"display","variants":["regular"]},"Sansita":{"family":"Sansita","category":"sans-serif","variants":["700","700italic","800","800italic","900","900italic","italic","regular"]},"Sarabun":{"family":"Sarabun","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Sarala":{"family":"Sarala","category":"sans-serif","variants":["700","regular"]},"Sarina":{"family":"Sarina","category":"display","variants":["regular"]},"Sarpanch":{"family":"Sarpanch","category":"sans-serif","variants":["500","600","700","800","900","regular"]},"Satisfy":{"family":"Satisfy","category":"handwriting","variants":["regular"]},"Sawarabi Gothic":{"family":"Sawarabi Gothic","category":"sans-serif","variants":["regular"]},"Sawarabi Mincho":{"family":"Sawarabi Mincho","category":"sans-serif","variants":["regular"]},"Scada":{"family":"Scada","category":"sans-serif","variants":["700","700italic","italic","regular"]},"Scheherazade":{"family":"Scheherazade","category":"serif","variants":["700","regular"]},"Schoolbell":{"family":"Schoolbell","category":"handwriting","variants":["regular"]},"Scope One":{"family":"Scope One","category":"serif","variants":["regular"]},"Seaweed Script":{"family":"Seaweed Script","category":"display","variants":["regular"]},"Secular One":{"family":"Secular One","category":"sans-serif","variants":["regular"]},"Sedgwick Ave":{"family":"Sedgwick Ave","category":"handwriting","variants":["regular"]},"Sedgwick Ave Display":{"family":"Sedgwick Ave Display","category":"handwriting","variants":["regular"]},"Sevillana":{"family":"Sevillana","category":"display","variants":["regular"]},"Seymour One":{"family":"Seymour One","category":"sans-serif","variants":["regular"]},"Shadows Into Light":{"family":"Shadows Into Light","category":"handwriting","variants":["regular"]},"Shadows Into Light Two":{"family":"Shadows Into Light Two","category":"handwriting","variants":["regular"]},"Shanti":{"family":"Shanti","category":"sans-serif","variants":["regular"]},"Share":{"family":"Share","category":"display","variants":["700","700italic","italic","regular"]},"Share Tech":{"family":"Share Tech","category":"sans-serif","variants":["regular"]},"Share Tech Mono":{"family":"Share Tech Mono","category":"monospace","variants":["regular"]},"Shojumaru":{"family":"Shojumaru","category":"display","variants":["regular"]},"Short Stack":{"family":"Short Stack","category":"handwriting","variants":["regular"]},"Shrikhand":{"family":"Shrikhand","category":"display","variants":["regular"]},"Siemreap":{"family":"Siemreap","category":"display","variants":["regular"]},"Sigmar One":{"family":"Sigmar One","category":"display","variants":["regular"]},"Signika":{"family":"Signika","category":"sans-serif","variants":["300","600","700","regular"]},"Signika Negative":{"family":"Signika Negative","category":"sans-serif","variants":["300","600","700","regular"]},"Simonetta":{"family":"Simonetta","category":"display","variants":["900","900italic","italic","regular"]},"Sintony":{"family":"Sintony","category":"sans-serif","variants":["700","regular"]},"Sirin Stencil":{"family":"Sirin Stencil","category":"display","variants":["regular"]},"Six Caps":{"family":"Six Caps","category":"sans-serif","variants":["regular"]},"Skranji":{"family":"Skranji","category":"display","variants":["700","regular"]},"Slabo 13px":{"family":"Slabo 13px","category":"serif","variants":["regular"]},"Slabo 27px":{"family":"Slabo 27px","category":"serif","variants":["regular"]},"Slackey":{"family":"Slackey","category":"display","variants":["regular"]},"Smokum":{"family":"Smokum","category":"display","variants":["regular"]},"Smythe":{"family":"Smythe","category":"display","variants":["regular"]},"Sniglet":{"family":"Sniglet","category":"display","variants":["800","regular"]},"Snippet":{"family":"Snippet","category":"sans-serif","variants":["regular"]},"Snowburst One":{"family":"Snowburst One","category":"display","variants":["regular"]},"Sofadi One":{"family":"Sofadi One","category":"display","variants":["regular"]},"Sofia":{"family":"Sofia","category":"handwriting","variants":["regular"]},"Song Myung":{"family":"Song Myung","category":"serif","variants":["regular"]},"Sonsie One":{"family":"Sonsie One","category":"display","variants":["regular"]},"Sorts Mill Goudy":{"family":"Sorts Mill Goudy","category":"serif","variants":["italic","regular"]},"Source Code Pro":{"family":"Source Code Pro","category":"monospace","variants":["200","300","500","600","700","900","regular"]},"Source Sans Pro":{"family":"Source Sans Pro","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","900italic","italic","regular"]},"Source Serif Pro":{"family":"Source Serif Pro","category":"serif","variants":["600","700","regular"]},"Space Mono":{"family":"Space Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Special Elite":{"family":"Special Elite","category":"display","variants":["regular"]},"Spectral":{"family":"Spectral","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spectral SC":{"family":"Spectral SC","category":"serif","variants":["200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","italic","regular"]},"Spicy Rice":{"family":"Spicy Rice","category":"display","variants":["regular"]},"Spinnaker":{"family":"Spinnaker","category":"sans-serif","variants":["regular"]},"Spirax":{"family":"Spirax","category":"display","variants":["regular"]},"Squada One":{"family":"Squada One","category":"display","variants":["regular"]},"Sree Krushnadevaraya":{"family":"Sree Krushnadevaraya","category":"serif","variants":["regular"]},"Sriracha":{"family":"Sriracha","category":"handwriting","variants":["regular"]},"Srisakdi":{"family":"Srisakdi","category":"display","variants":["700","regular"]},"Staatliches":{"family":"Staatliches","category":"display","variants":["regular"]},"Stalemate":{"family":"Stalemate","category":"handwriting","variants":["regular"]},"Stalinist One":{"family":"Stalinist One","category":"display","variants":["regular"]},"Stardos Stencil":{"family":"Stardos Stencil","category":"display","variants":["700","regular"]},"Stint Ultra Condensed":{"family":"Stint Ultra Condensed","category":"display","variants":["regular"]},"Stint Ultra Expanded":{"family":"Stint Ultra Expanded","category":"display","variants":["regular"]},"Stoke":{"family":"Stoke","category":"serif","variants":["300","regular"]},"Strait":{"family":"Strait","category":"sans-serif","variants":["regular"]},"Stylish":{"family":"Stylish","category":"sans-serif","variants":["regular"]},"Sue Ellen Francisco":{"family":"Sue Ellen Francisco","category":"handwriting","variants":["regular"]},"Suez One":{"family":"Suez One","category":"serif","variants":["regular"]},"Sumana":{"family":"Sumana","category":"serif","variants":["700","regular"]},"Sunflower":{"family":"Sunflower","category":"sans-serif","variants":["300","500","700"]},"Sunshiney":{"family":"Sunshiney","category":"handwriting","variants":["regular"]},"Supermercado One":{"family":"Supermercado One","category":"display","variants":["regular"]},"Sura":{"family":"Sura","category":"serif","variants":["700","regular"]},"Suranna":{"family":"Suranna","category":"serif","variants":["regular"]},"Suravaram":{"family":"Suravaram","category":"serif","variants":["regular"]},"Suwannaphum":{"family":"Suwannaphum","category":"display","variants":["regular"]},"Swanky and Moo Moo":{"family":"Swanky and Moo Moo","category":"handwriting","variants":["regular"]},"Syncopate":{"family":"Syncopate","category":"sans-serif","variants":["700","regular"]},"Tajawal":{"family":"Tajawal","category":"sans-serif","variants":["200","300","500","700","800","900","regular"]},"Tangerine":{"family":"Tangerine","category":"handwriting","variants":["700","regular"]},"Taprom":{"family":"Taprom","category":"display","variants":["regular"]},"Tauri":{"family":"Tauri","category":"sans-serif","variants":["regular"]},"Taviraj":{"family":"Taviraj","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Teko":{"family":"Teko","category":"sans-serif","variants":["300","500","600","700","regular"]},"Telex":{"family":"Telex","category":"sans-serif","variants":["regular"]},"Tenali Ramakrishna":{"family":"Tenali Ramakrishna","category":"sans-serif","variants":["regular"]},"Tenor Sans":{"family":"Tenor Sans","category":"sans-serif","variants":["regular"]},"Text Me One":{"family":"Text Me One","category":"sans-serif","variants":["regular"]},"Thasadith":{"family":"Thasadith","category":"sans-serif","variants":["700","700italic","italic","regular"]},"The Girl Next Door":{"family":"The Girl Next Door","category":"handwriting","variants":["regular"]},"Tienne":{"family":"Tienne","category":"serif","variants":["700","900","regular"]},"Tillana":{"family":"Tillana","category":"handwriting","variants":["500","600","700","800","regular"]},"Timmana":{"family":"Timmana","category":"sans-serif","variants":["regular"]},"Tinos":{"family":"Tinos","category":"serif","variants":["700","700italic","italic","regular"]},"Titan One":{"family":"Titan One","category":"display","variants":["regular"]},"Titillium Web":{"family":"Titillium Web","category":"sans-serif","variants":["200","200italic","300","300italic","600","600italic","700","700italic","900","italic","regular"]},"Trade Winds":{"family":"Trade Winds","category":"display","variants":["regular"]},"Trirong":{"family":"Trirong","category":"serif","variants":["100","100italic","200","200italic","300","300italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic","italic","regular"]},"Trocchi":{"family":"Trocchi","category":"serif","variants":["regular"]},"Trochut":{"family":"Trochut","category":"display","variants":["700","italic","regular"]},"Trykker":{"family":"Trykker","category":"serif","variants":["regular"]},"Tulpen One":{"family":"Tulpen One","category":"display","variants":["regular"]},"Ubuntu":{"family":"Ubuntu","category":"sans-serif","variants":["300","300italic","500","500italic","700","700italic","italic","regular"]},"Ubuntu Condensed":{"family":"Ubuntu Condensed","category":"sans-serif","variants":["regular"]},"Ubuntu Mono":{"family":"Ubuntu Mono","category":"monospace","variants":["700","700italic","italic","regular"]},"Ultra":{"family":"Ultra","category":"serif","variants":["regular"]},"Uncial Antiqua":{"family":"Uncial Antiqua","category":"display","variants":["regular"]},"Underdog":{"family":"Underdog","category":"display","variants":["regular"]},"Unica One":{"family":"Unica One","category":"display","variants":["regular"]},"UnifrakturCook":{"family":"UnifrakturCook","category":"display","variants":["700"]},"UnifrakturMaguntia":{"family":"UnifrakturMaguntia","category":"display","variants":["regular"]},"Unkempt":{"family":"Unkempt","category":"display","variants":["700","regular"]},"Unlock":{"family":"Unlock","category":"display","variants":["regular"]},"Unna":{"family":"Unna","category":"serif","variants":["700","700italic","italic","regular"]},"VT323":{"family":"VT323","category":"monospace","variants":["regular"]},"Vampiro One":{"family":"Vampiro One","category":"display","variants":["regular"]},"Varela":{"family":"Varela","category":"sans-serif","variants":["regular"]},"Varela Round":{"family":"Varela Round","category":"sans-serif","variants":["regular"]},"Vast Shadow":{"family":"Vast Shadow","category":"display","variants":["regular"]},"Vesper Libre":{"family":"Vesper Libre","category":"serif","variants":["500","700","900","regular"]},"Vibur":{"family":"Vibur","category":"handwriting","variants":["regular"]},"Vidaloka":{"family":"Vidaloka","category":"serif","variants":["regular"]},"Viga":{"family":"Viga","category":"sans-serif","variants":["regular"]},"Voces":{"family":"Voces","category":"display","variants":["regular"]},"Volkhov":{"family":"Volkhov","category":"serif","variants":["700","700italic","italic","regular"]},"Vollkorn":{"family":"Vollkorn","category":"serif","variants":["600","600italic","700","700italic","900","900italic","italic","regular"]},"Vollkorn SC":{"family":"Vollkorn SC","category":"serif","variants":["600","700","900","regular"]},"Voltaire":{"family":"Voltaire","category":"sans-serif","variants":["regular"]},"Waiting for the Sunrise":{"family":"Waiting for the Sunrise","category":"handwriting","variants":["regular"]},"Wallpoet":{"family":"Wallpoet","category":"display","variants":["regular"]},"Walter Turncoat":{"family":"Walter Turncoat","category":"handwriting","variants":["regular"]},"Warnes":{"family":"Warnes","category":"display","variants":["regular"]},"Wellfleet":{"family":"Wellfleet","category":"display","variants":["regular"]},"Wendy One":{"family":"Wendy One","category":"sans-serif","variants":["regular"]},"Wire One":{"family":"Wire One","category":"sans-serif","variants":["regular"]},"Work Sans":{"family":"Work Sans","category":"sans-serif","variants":["100","200","300","500","600","700","800","900","regular"]},"Yanone Kaffeesatz":{"family":"Yanone Kaffeesatz","category":"sans-serif","variants":["200","300","700","regular"]},"Yantramanav":{"family":"Yantramanav","category":"sans-serif","variants":["100","300","500","700","900","regular"]},"Yatra One":{"family":"Yatra One","category":"display","variants":["regular"]},"Yellowtail":{"family":"Yellowtail","category":"handwriting","variants":["regular"]},"Yeon Sung":{"family":"Yeon Sung","category":"display","variants":["regular"]},"Yeseva One":{"family":"Yeseva One","category":"display","variants":["regular"]},"Yesteryear":{"family":"Yesteryear","category":"handwriting","variants":["regular"]},"Yrsa":{"family":"Yrsa","category":"serif","variants":["300","500","600","700","regular"]},"ZCOOL KuaiLe":{"family":"ZCOOL KuaiLe","category":"display","variants":["regular"]},"ZCOOL QingKe HuangYou":{"family":"ZCOOL QingKe HuangYou","category":"display","variants":["regular"]},"ZCOOL XiaoWei":{"family":"ZCOOL XiaoWei","category":"serif","variants":["regular"]},"Zeyada":{"family":"Zeyada","category":"handwriting","variants":["regular"]},"Zilla Slab":{"family":"Zilla Slab","category":"serif","variants":["300","300italic","500","500italic","600","600italic","700","700italic","italic","regular"]},"Zilla Slab Highlight":{"family":"Zilla Slab Highlight","category":"display","variants":["700","regular"]}},"order":{"popularity":["Roboto","Open Sans","Lato","Montserrat","Roboto Condensed","Oswald","Source Sans Pro","Raleway","Merriweather","Roboto Slab","Roboto Mono","Poppins","PT Sans","Noto Sans","Ubuntu","Slabo 27px","Open Sans Condensed","Playfair Display","Lora","PT Serif","Muli","Titillium Web","Nunito","PT Sans Narrow","Noto Sans JP","Rubik","Noto Serif","Fira Sans","Nanum Gothic","Arimo","Work Sans","Quicksand","Noto Sans KR","Dosis","Heebo","Oxygen","Inconsolata","Crimson Text","Josefin Sans","Nunito Sans","Libre Baskerville","Libre Franklin","Anton","Bitter","Hind","Cabin","Fjalla One","Karla","Indie Flower","Lobster","Arvo","Abel","Noto Sans TC","Hind Siliguri","Teko","Exo 2","Pacifico","Varela Round","Dancing Script","Source Serif Pro","Merriweather Sans","Mukta","Asap","Yanone Kaffeesatz","Barlow","Shadows Into Light","Abril Fatface","Cairo","Source Code Pro","Catamaran","Kanit","Bree Serif","EB Garamond","Acme","Archivo Narrow","Righteous","Questrial","Comfortaa","Exo","Amatic SC","Fira Sans Condensed","Ubuntu Condensed","Maven Pro","Play","Barlow Condensed","Amiri","Rajdhani","Cinzel","Domine","Signika","News Cycle","Ropa Sans","Francois One","Permanent Marker","Crete Round","Assistant","Vollkorn","Noticia Text","Overpass","Satisfy","Gloria Hallelujah","Patua One","Hind Madurai","Cutive Mono","Gothic A1","Prompt","Rokkitt","Alegreya","IBM Plex Sans","Cuprum","Noto Sans SC","Courgette","PT Sans Caption","Old Standard TT","Alfa Slab One","Martel","Alegreya Sans","ABeeZee","Caveat","Concert One","Frank Ruhl Libre","Cardo","Cormorant Garamond","Cookie","Kaushan Script","Great Vibes","Kalam","Didact Gothic","Pathway Gothic One","Barlow Semi Condensed","Tinos","Viga","Orbitron","Special Elite","Fira Sans Extra Condensed","Quattrocento Sans","Cantarell","Archivo Black","Playfair Display SC","Zilla Slab","Lobster Two","Volkhov","Russo One","Fredoka One","Chivo","Nanum Myeongjo","Tajawal","Tangerine","Hind Guntur","Saira","Poiret One","Sacramento","Boogaloo","Quattrocento","Monda","Luckiest Guy","Passion One","Hind Vadodara","Saira Extra Condensed","Gochi Hand","M PLUS 1p","BenchNine","Neucha","IBM Plex Serif","Changa","Cabin Condensed","Khand","Prata","Handlee","Lalezar","Ultra","Patrick Hand","Istok Web","Josefin Slab","Arapey","Gudea","Sanchez","Asap Condensed","Sawarabi Mincho","Neuton","Merienda","Philosopher","Allerta Stencil","Ruda","Sorts Mill Goudy","Bangers","Hammersmith One","Yantramanav","Pontano Sans","Pragati Narrow","Montserrat Alternates","Taviraj","Monoton","Yrsa","Signika Negative","Unica One","Sigmar One","Economica","Pridi","Vidaloka","Marck Script","Audiowide","Archivo","Advent Pro","Armata","Saira Semi Condensed","Schoolbell","Varela","Press Start 2P","Noto Serif JP","Bad Script","Yellowtail","Adamina","Kreon","Amaranth","Alice","Gentium Basic","Staatliches","Architects Daughter","Gentium Book Basic","Sintony","Enriqueta","Playball","Julius Sans One","PT Mono","Days One","Rasa","Sarala","Spectral","Rock Salt","Fugaz One","Paytone One","Glegoo","El Messiri","Carter One","Damion","Alegreya Sans SC","Allura","Shadows Into Light Two","Unna","Cousine","Share Tech Mono","Actor","Arbutus Slab","Homemade Apple","Mitr","Ubuntu Mono","Oleo Script","Antic Slab","Italianno","Covered By Your Grace","Parisienne","Lusitana","Molengo","PT Serif Caption","Marcellus","Bevan","Khula","Nothing You Could Do","Baloo","Aldrich","Cormorant","Karma","Sawarabi Gothic","Belleza","Scheherazade","Chewy","Rubik Mono One","Jura","Cantata One","Rancho","Allerta","Scada","Leckerli One","Mr Dafoe","Alex Brush","Antic","Encode Sans Condensed","Abhaya Libre","Rambla","Pinyon Script","Lustria","Michroma","Niconne","Sunflower","Spinnaker","Pangolin","Reenie Beanie","Radley","Basic","Hanuman","Average","Nanum Gothic Coding","Nobile","Black Ops One","Nanum Pen Script","Jaldi","Kameron","Fredericka the Great","Coda","M PLUS Rounded 1c","Forum","Caveat Brush","Lemonada","IBM Plex Mono","Lateef","Candal","Palanquin","Cabin Sketch","Syncopate","Cinzel Decorative","Biryani","Magra","Quantico","Electrolize","Tenor Sans","Share","Berkshire Swash","Alef","Just Another Hand","Marcellus SC","Oranienbaum","Rochester","Coming Soon","Overlock","Rufina","Annie Use Your Telescope","Reem Kufi","Voltaire","Lilita One","Itim","Buenard","Laila","Love Ya Like A Sister","Yesteryear","Shojumaru","Gruppo","Changa One","Encode Sans","Arima Madurai","Slabo 13px","Space Mono","Ovo","Knewave","Marmelad","Aclonica","Bungee","Halant","Fauna One","Squada One","Grand Hotel","Saira Condensed","Prosto One","Sarabun","Carme","Martel Sans","Anonymous Pro","Tulpen One","Markazi Text","Marvel","Cambo","Alegreya SC","Nanum Brush Script","Coda Caption","Telex","Petit Formal Script","Lekton","Jockey One","Raleway Dots","Fira Mono","Shrikhand","Trirong","Arizonia","Mada","Racing Sans One","Yeseva One","GFS Didot","VT323","Bungee Inline","Gilda Display","Nixie One","Carrois Gothic","Oxygen Mono","Patrick Hand SC","Contrail One","Copse","Arsenal","Merienda One","Eczar","Coustard","IM Fell English SC","Kosugi Maru","Rosario","Baloo Bhaina","Titan One","Londrina Solid","Metrophobic","Pompiere","Ceviche One","Suranna","Norican","Allan","Freckle Face","Calligraffitti","Mr De Haviland","Bowlby One SC","Aladin","Bubblegum Sans","Goudy Bookletter 1911","Herr Von Muellerhoff","Caudex","Delius","Noto Serif SC","Homenaje","Sue Ellen Francisco","Mukta Malar","Judson","Graduate","Niramit","Pattaya","Maitree","Kelly Slab","Doppio One","Give You Glory","Capriola","Suez One","Happy Monkey","Encode Sans Expanded","Puritan","Tauri","Do Hyeon","Mali","Trocchi","Balthazar","Duru Sans","Noto Serif KR","IM Fell Double Pica","Cutive","Emilys Candy","Cambay","Miriam Libre","Secular One","Faster One","Palanquin Dark","Black Han Sans","Kristi","Average Sans","Wendy One","Rye","Andada","Averia Serif Libre","Baloo Bhaijaan","Athiti","Chonburi","Gabriela","Alike","Cedarville Cursive","Rozha One","Bai Jamjuree","Six Caps","Poller One","Anaheim","Corben","Carrois Gothic SC","Chelsea Market","Bentham","Mukta Vaani","Sriracha","Skranji","Mate","Seaweed Script","Convergence","Qwigley","Oregano","IM Fell DW Pica","Lily Script One","Poly","Amiko","Montez","Faustina","Federo","IM Fell English","Rouge Script","Baloo Bhai","Fanwood Text","Artifika","Cormorant Infant","Hanalei Fill","Inder","Encode Sans Semi Expanded","Short Stack","Proza Libre","Vesper Libre","Rationale","Ramabhadra","Andika","Gravitas One","Rammetto One","Mirza","Crafty Girls","Baumans","Overpass Mono","Cormorant SC","Bilbo Swash Caps","Denk One","Fondamento","La Belle Aurore","Clicker Script","Amethysta","Limelight","Stardos Stencil","Walter Turncoat","Unkempt","Gurajada","Vast Shadow","Kadwa","Iceland","Mallanna","Quando","Battambang","Sniglet","Oleo Script Swash Caps","Meddon","Expletus Sans","Wallpoet","Sansita","UnifrakturMaguntia","Galada","Wire One","Kotta One","Podkova","Gafata","Loved by the King","Aguafina Script","Brawler","Spicy Rice","Mouse Memoirs","Noto Serif TC","Zeyada","Sofia","Prociono","Waiting for the Sunrise","Scope One","Bellefair","The Girl Next Door","Harmattan","Padauk","Strait","Mako","IBM Plex Sans Condensed","Megrim","Lemon","Bungee Shade","Bowlby One","Kurale","Orienta","McLaren","Baloo Paaji","Belgrano","Euphoria Script","Vampiro One","Medula One","Amita","Just Me Again Down Here","Vibur","Italiana","Delius Swash Caps","Tienne","Mandali","Chakra Petch","Spectral SC","Averia Libre","Quintessential","Katibeh","Finger Paint","Cantora One","Arya","Fresca","Libre Barcode 39","Cormorant Upright","Imprima","Spirax","Atma","Charm","Codystar","Rakkas","Krona One","Dawning of a New Day","Alike Angular","Cherry Swash","Baloo Chettan","Salsa","Headland One","Metamorphous","Frijole","Jua","Aleo","Nova Mono","Holtwood One SC","Over the Rainbow","David Libre","Averia Sans Libre","Ledger","Crushed","Sedgwick Ave","Almendra","Aref Ruqaa","Sarpanch","Kosugi","Montserrat Subrayada","Nova Square","Fontdiner Swanky","Life Savers","Habibi","Mrs Saint Delafield","Chicle","Uncial Antiqua","Fjord One","Dekko","Elsie","Engagement","Kranky","Voces","K2D","Port Lligat Slab","Sumana","Mogra","Share Tech","Nova Round","NTR","Gugi","Encode Sans Semi Condensed","Baloo Tamma","Creepster","Shanti","Kumar One","Mukta Mahee","Germania One","Esteban","Numans","Geo","Swanky and Moo Moo","Pirata One","Slackey","Koulen","Taprom","Antic Didone","Cherry Cream Soda","BioRhyme","Yatra One","Milonga","Fenix","Mate SC","Krub","Chau Philomene One","Baloo Thambi","Delius Unicase","Condiment","Sail","Mountains of Christmas","Kite One","Ribeye","Dynalight","Flamenco","Modak","Chela One","Londrina Outline","Peralta","Asul","Paprika","Ruslan Display","Timmana","Plaster","Eater","League Script","Cagliostro","Sarina","Lovers Quarrel","Khmer","Meera Inimai","Ramaraja","Bubbler One","Amarante","Maiden Orange","Stint Ultra Condensed","Averia Gruesa Libre","Mystery Quest","Nova Slim","Nosifer","Pavanam","Simonetta","Stylish","Gaegu","Dorsa","Sura","Princess Sofia","Junge","Inknut Antiqua","Sancreek","Englebert","Overlock SC","Ranchers","Rosarivo","Trade Winds","Stoke","Farsan","Coiny","Ruluko","Donegal One","Noto Sans HK","IM Fell French Canon","Manuale","Major Mono Display","Nokora","IM Fell Great Primer","Stint Ultra Expanded","Croissant One","Stalemate","Akronim","Nova Flat","Sonsie One","Port Lligat Sans","ZCOOL QingKe HuangYou","Buda","IM Fell DW Pica SC","Linden Hill","Glass Antiqua","Marko One","Revalia","Margarine","Sirin Stencil","Baloo Tammudu","Text Me One","Kavoon","Monsieur La Doulaise","Thasadith","Diplomata","Julee","Offside","Mina","Ranga","New Rocker","Bilbo","Elsie Swash Caps","Autour One","Eagle Lake","Griffy","Bahiana","Song Myung","Wellfleet","Henny Penny","B612 Mono","Joti One","Cormorant Unicase","Angkor","Miniver","Petrona","Dokdo","Della Respira","IM Fell Great Primer SC","Underdog","UnifrakturCook","Moul","Dangrek","Inika","Sree Krushnadevaraya","Rhodium Libre","Bokor","Trykker","Barrio","Redressed","Vollkorn SC","Montaga","Miss Fajardose","Galdeano","Monofett","Srisakdi","Ruge Boogie","Ravi Prakash","Tillana","Fascinate Inline","MedievalSharp","Smythe","Ruthie","KoHo","Siemreap","Suwannaphum","Content","Baloo Da","Rum Raisin","Iceberg","Jim Nightshade","Purple Purse","Mrs Sheppards","Oldenburg","Macondo Swash Caps","Keania One","Chathura","Lancelot","Chango","Metal Mania","Snippet","Asar","Bigshot One","Sahitya","Charmonman","Original Surfer","Ribeye Marrow","Miltonian Tattoo","Poor Story","Meie Script","Asset","Zilla Slab Highlight","Dr Sugiyama","Modern Antiqua","IM Fell French Canon SC","Jacques Francois Shadow","Freehand","Arbutus","Goblin One","Atomic Age","Snowburst One","Odor Mean Chey","Kodchasan","Bayon","Galindo","Kavivanar","Molle","Nova Script","Kantumruy","Caesar Dressing","Devonshire","Irish Grover","Tenali Ramakrishna","Ewert","Diplomata SC","Smokum","Felipa","IM Fell Double Pica SC","Piedra","ZCOOL KuaiLe","Jomhuria","Kirang Haerang","Kenia","Chenla","Libre Barcode 128","ZCOOL XiaoWei","Almendra Display","Flavors","Romanesco","Sunshiney","Kdam Thmor","Risque","Jacques Francois","Seymour One","Astloch","Macondo","Almendra SC","Londrina Shadow","Lakki Reddy","Fahkwang","Gorditas","Nova Oval","Libre Barcode 39 Text","Butterfly Kids","Geostar Fill","Gamja Flower","GFS Neohellenic","Sedgwick Ave Display","Nova Cut","Supermercado One","Trochut","Fascinate","Jolly Lodger","Londrina Sketch","Miltonian","Kumar One Outline","Combo","East Sea Dokdo","Butcherman","Libre Barcode 39 Extended Text","Metal","Bungee Outline","Bungee Hairline","Sofadi One","Libre Barcode 39 Extended","Bigelow Rules","Passero One","Black And White Picture","Cute Font","Unlock","Sevillana","Emblema One","Erica One","Mr Bedfort","Bonbon","Geostar","Aubrey","Suravaram","Fruktur","Preahvihear","Hanalei","Federant","Gidugu","B612","Fasthand","Peddana","Libre Barcode 128 Text","Stalinist One","Dhurjati","Hi Melody","Moulpali","BioRhyme Expanded","Yeon Sung","Warnes","Notable"],"trending":["Noto Sans HK","B612 Mono","Cutive Mono","Mali","Rubik Mono One","Aguafina Script","Teko","Saira Semi Condensed","Swanky and Moo Moo","Encode Sans Expanded","Chenla","Tulpen One","Vollkorn SC","Stylish","Kumar One","Chakra Petch","Barlow Condensed","Gochi Hand","Meera Inimai","Fresca","Kotta One","Chonburi","IM Fell English SC","Cormorant Upright","Share Tech Mono","Kodchasan","Special Elite","Libre Barcode 39","Sarabun","Bungee Inline","Viga","Jaldi","Sunflower","Zilla Slab","Koulen","Asap Condensed","Satisfy","Aldrich","K2D","Noto Sans SC","Baloo Bhai","Lily Script One","Ruge Boogie","Hi Melody","Allerta Stencil","Major Mono Display","Italiana","Cookie","ZCOOL QingKe HuangYou","IM Fell Great Primer","Elsie Swash Caps","Cantora One","Nova Flat","Faster One","Arapey","Belleza","Monoton","Englebert","Bai Jamjuree","IM Fell DW Pica SC","Bungee","Iceland","Coda Caption","Jacques Francois Shadow","Cambo","Averia Gruesa Libre","Barlow Semi Condensed","Patrick Hand SC","Timmana","Srisakdi","IBM Plex Sans","Lilita One","Arya","Cairo","Spectral","Bungee Hairline","Noto Sans TC","Italianno","Kalam","Carter One","Pridi","Caudex","Press Start 2P","Scheherazade","Ubuntu Mono","Yantramanav","Suez One","M PLUS Rounded 1c","Alegreya Sans SC","IM Fell Great Primer SC","Martel","Hanalei","Hind Siliguri","Playfair Display SC","Playball","Laila","Catamaran","Risque","Battambang","Londrina Sketch","Schoolbell","Bokor","Mogra","Almendra","Gurajada","Gaegu","Gugi","Saira","Norican","Margarine","Encode Sans Semi Expanded","Hanalei Fill","Kosugi Maru","Sirin Stencil","Monofett","Prata","Bevan","Unna","Fira Sans Condensed","Maitree","Katibeh","Baumans","Vampiro One","Rozha One","Sarala","Bangers","Mitr","Aref Ruqaa","Allerta","Engagement","Frijole","Staatliches","Oxygen","Metamorphous","Kadwa","Ultra","Trirong","Sree Krushnadevaraya","Encode Sans Semi Condensed","Baloo Bhaijaan","Sigmar One","Baloo Paaji","Arima Madurai","Sumana","Trade Winds","Noto Sans JP","Kosugi","Caveat Brush","Dancing Script","Aladin","Days One","Cormorant SC","Baloo Chettan","Ravi Prakash","Baloo Bhaina","Markazi Text","Headland One","Scada","Caveat","Meie Script","Encode Sans","Balthazar","Buenard","Voltaire","Lekton","Seaweed Script","Habibi","Barlow","Ruda","Prompt","Halant","Oregano","Domine","Rakkas","Leckerli One","Carrois Gothic SC","Permanent Marker","Pirata One","Numans","Fenix","M PLUS 1p","Amiri","Knewave","Changa One","Spirax","Rancho","Gothic A1","Pompiere","Nosifer","Marcellus SC","Puritan","Bentham","Volkhov","Quintessential","Boogaloo","Princess Sofia","UnifrakturCook","Geostar Fill","Comfortaa","Asap","Forum","Neucha","Sorts Mill Goudy","Averia Sans Libre","Hanuman","Athiti","Space Mono","Merienda","Merienda One","Medula One","Jomhuria","Changa","Padauk","Do Hyeon","Harmattan","Vast Shadow","Sedgwick Ave Display","Pathway Gothic One","Krona One","Rajdhani","Damion","Average Sans","Aclonica","Overlock SC","Sahitya","Almendra Display","Iceberg","Aleo","Sansita","David Libre","Mina","Palanquin","Exo 2","Noto Serif KR","Secular One","Herr Von Muellerhoff","Magra","Over the Rainbow","Handlee","Pattaya","Pavanam","Stint Ultra Condensed","Sawarabi Mincho","Fugaz One","Wendy One","Tenali Ramakrishna","Oleo Script Swash Caps","Libre Franklin","Rationale","Ropa Sans","Emblema One","Alfa Slab One","Delius Swash Caps","Mukta Malar","Source Serif Pro","Libre Barcode 128 Text","Antic Didone","Abhaya Libre","Euphoria Script","Flamenco","Didact Gothic","Michroma","EB Garamond","Chela One","BioRhyme","Lalezar","IM Fell Double Pica SC","Ribeye Marrow","Barrio","Poppins","Josefin Sans","Stint Ultra Expanded","Monda","Inknut Antiqua","Rochester","Rouge Script","Sue Ellen Francisco","Bungee Shade","NTR","Ovo","Alegreya SC","Metrophobic","Ceviche One","Stardos Stencil","Pinyon Script","Rasa","Galada","Alegreya","Amaranth","Manuale","Playfair Display","Fira Mono","Quicksand","Rock Salt","Heebo","Asul","Mallanna","Wire One","Fondamento","Rufina","Kdam Thmor","Noto Serif SC","Mr De Haviland","Miltonian","Song Myung","Charm","Khula","Courgette","Noto Serif","Lora","Amatic SC","Galindo","Mirza","Ubuntu Condensed","IM Fell French Canon","Abel","Patua One","Brawler","Freehand","Bree Serif","Roboto","Quando","Black Han Sans","Spectral SC","Vibur","Creepster","Annie Use Your Telescope","Chelsea Market","Nixie One","Pangolin","Mukta Mahee","Hind Vadodara","Slackey","Dawning of a New Day","Noto Sans KR","Dorsa","Trykker","Nanum Gothic","Noto Sans","Metal Mania","Walter Turncoat","Nanum Myeongjo","Fira Sans","Actor","PT Serif Caption","Adamina","Aubrey","Gudea","Delius Unicase","Archivo","Tangerine","Oldenburg","Scope One","Yellowtail","Sedgwick Ave","Freckle Face","Moul","Atma","Rhodium Libre","Bellefair","Anonymous Pro","Modak","Miss Fajardose","Merriweather","Diplomata SC","Bitter","Ewert","Cherry Swash","Yrsa","IM Fell Double Pica","Angkor","BioRhyme Expanded","Poor Story","Arimo","Montserrat","Snowburst One","Peralta","Nova Slim","Macondo","Abril Fatface","IBM Plex Serif","Fahkwang","Radley","Sarina","Germania One","Mate SC","Source Code Pro","Righteous","Allura","Vollkorn","Chivo","Life Savers","Great Vibes","Poiret One","Mrs Sheppards","Kantumruy","Raleway","Della Respira","Chango","Titillium Web","Crimson Text","Kreon","BenchNine","Proza Libre","Old Standard TT","Milonga","Dekko","Sevillana","Mouse Memoirs","Karma","News Cycle","PT Sans","Rye","IM Fell English","Trochut","Rubik","Kristi","Averia Serif Libre","Enriqueta","Gafata","Ubuntu","Poly","Nova Round","Romanesco","Dosis","Yatra One","PT Mono","Erica One","Diplomata","Shadows Into Light","Tenor Sans","Baloo Tammudu","Allan","Esteban","Hammersmith One","Bahiana","Happy Monkey","Nanum Brush Script","Open Sans","Sanchez","Glegoo","Basic","Chewy","Nova Oval","Monsieur La Doulaise","Ribeye","Emilys Candy","McLaren","Oxygen Mono","Roboto Condensed","Russo One","Lobster","Inika","Yeseva One","Fjalla One","IM Fell DW Pica","Gentium Book Basic","Elsie","Sonsie One","Sura","Andika","Geostar","Jura","Paprika","Content","Sacramento","Gravitas One","Architects Daughter","Lobster Two","Cabin Condensed","Atomic Age","Cantarell","Capriola","Corben","Arizonia","Nunito","Niconne","Alike Angular","Rammetto One","Karla","Anton","Cousine","Astloch","Assistant","Lemonada","Noto Serif JP","Alike","Oranienbaum","Neuton","Lato","Joti One","League Script","Calligraffitti","PT Serif","Combo","Slabo 13px","Overpass","Belgrano","Maven Pro","Tillana","Telex","Tienne","Arbutus","Average","Sintony","Coda","Passion One","Nothing You Could Do","Kumar One Outline","Francois One","Rosario","Concert One","Alex Brush","Amita","Qwigley","Sunshiney","KoHo","Baloo","Oswald","Josefin Slab","Miltonian Tattoo","Sawarabi Gothic","Marck Script","Text Me One","Questrial","PT Sans Narrow","Henny Penny","Rokkitt","Sancreek","Roboto Mono","Rambla","Flavors","Libre Barcode 128","Glass Antiqua","Ruthie","Muli","Cabin Sketch","Offside","Galdeano","Carrois Gothic","Jockey One","Gorditas","Black Ops One","Ranga","Devonshire","Judson","Luckiest Guy","Unica One","La Belle Aurore","Yesteryear","Play","Eczar","Gabriela","Faustina","Julius Sans One","Cinzel Decorative","Shadows Into Light Two","Gilda Display","Racing Sans One","Ruluko","Sofadi One","Syncopate","Nova Mono","Ledger","Homemade Apple","Shanti","Philosopher","Hind","Crete Round","Dynalight","Nobile","Suranna","Alef","Rosarivo","Biryani","Cabin","Smokum","Goblin One","Cantata One","Stalinist One","Quattrocento Sans","Open Sans Condensed","Dr Sugiyama","Original Surfer","Berkshire Swash","Fanwood Text","Six Caps","Julee","Gruppo","Linden Hill","Cormorant Garamond","Cormorant Infant","Kelly Slab","Covered By Your Grace","Exo","Libre Baskerville","Macondo Swash Caps","Clicker Script","Montserrat Subrayada","Baloo Da","Squada One","Archivo Narrow","Merriweather Sans","Baloo Tamma","Alice","Lusitana","Supermercado One","Petit Formal Script","Kirang Haerang","Junge","Nova Square","Kanit","Noticia Text","Kaushan Script","Give You Glory","Orbitron","Roboto Slab","Wellfleet","Duru Sans","Amiko","Source Sans Pro","Meddon","Condiment","Cuprum","Goudy Bookletter 1911","Cormorant","Podkova","Eater","Slabo 27px","MedievalSharp","Coming Soon","Quattrocento","Arbutus Slab","Audiowide","Marcellus","Antic","Advent Pro","Codystar","Mr Bedfort","Varela Round","Palanquin Dark","Indie Flower","Graduate","Nova Cut","Felipa","Eagle Lake","Vidaloka","Homenaje","Poller One","Nanum Gothic Coding","Jacques Francois","Federo","Cardo","Lovers Quarrel","Quantico","Arsenal","Croissant One","Arvo","Trocchi","Crushed","Bad Script","Kurale","Varela","Bonbon","Doppio One","Istok Web","Krub","Bubblegum Sans","Signika","Purple Purse","Smythe","Shrikhand","Spinnaker","Ranchers","PT Sans Caption","Patrick Hand","Londrina Solid","Zeyada","Geo","Dhurjati","Imprima","Waiting for the Sunrise","Bowlby One SC","Contrail One","Archivo Black","Acme","Work Sans","Andada","Sriracha","Revalia","Alegreya Sans","Asar","Mountains of Christmas","Inder","Gentium Basic","Butcherman","Anaheim","Plaster","Hind Guntur","Bowlby One","Inconsolata","Kameron","Antic Slab","Pontano Sans","Rum Raisin","Ramaraja","Cagliostro","Federant","Metal","Lustria","Khand","Londrina Shadow","Denk One","Dangrek","Bungee Outline","Libre Barcode 39 Extended Text","ABeeZee","Cutive","Bilbo Swash Caps","Kite One","Cinzel","Siemreap","Overlock","Prociono","Share Tech","Salsa","Bigshot One","Cherry Cream Soda","Modern Antiqua","Pacifico","Asset","Odor Mean Chey","Taviraj","Passero One","Just Me Again Down Here","Nova Script","Montez","Shojumaru","Molle","Libre Barcode 39 Extended","Kranky","Mr Dafoe","Noto Serif TC","Carme","Piedra","Mako","Kavoon","Crafty Girls","Montserrat Alternates","Loved by the King","Love Ya Like A Sister","Tinos","Ruslan Display","GFS Didot","Short Stack","Titan One","Fasthand","Port Lligat Slab","Limelight","Mystery Quest","Tajawal","Share","Marvel","Gloria Hallelujah","Keania One","Fascinate","Ramabhadra","Gidugu","Lakki Reddy","Unkempt","Coustard","Wallpoet","Autour One","Peddana","Baloo Thambi","Mate","Snippet","Reem Kufi","Warnes","Mukta Vaani","Lancelot","Nanum Pen Script","Holtwood One SC","Niramit","Megrim","Reenie Beanie","Bigelow Rules","New Rocker","Saira Condensed","Redressed","IM Fell French Canon SC","Orienta","Averia Libre","Griffy","Simonetta","Sail","Kavivanar","Mrs Saint Delafield","Vesper Libre","Chicle","Martel Sans","Frank Ruhl Libre","Copse","Stoke","Gamja Flower","Farsan","Convergence","Unlock","Caesar Dressing","Fruktur","Delius","Parisienne","Zilla Slab Highlight","Petrona","Butterfly Kids","Chau Philomene One","Cedarville Cursive","Chathura","Cambay","Expletus Sans","Almendra SC","Libre Barcode 39 Text","Marmelad","El Messiri","Signika Negative","Fauna One","Jua","Thasadith","Voces","Bilbo","ZCOOL XiaoWei","IBM Plex Mono","Yanone Kaffeesatz","Fjord One","UnifrakturMaguntia","Fontdiner Swanky","Fascinate Inline","Grand Hotel","Armata","Stalemate","Lemon","Tauri","Strait","Mukta","Taprom","Finger Paint","Londrina Outline","Bayon","Irish Grover","Overpass Mono","GFS Neohellenic","Molengo","Maiden Orange","Bubbler One","Sarpanch","Underdog","Saira Extra Condensed","Fredericka the Great","Seymour One","The Girl Next Door","Skranji","Fredoka One","Nunito Sans","Fira Sans Extra Condensed","Moulpali","Just Another Hand","Economica","B612","Notable","Charmonman","Black And White Picture","Mada","Oleo Script","Preahvihear","IBM Plex Sans Condensed","Raleway Dots","Miniver","Buda","Kenia","Hind Madurai","Marko One","Jim Nightshade","Electrolize","Pragati Narrow","Itim","Donegal One","Miriam Libre","Suwannaphum","Uncial Antiqua","Encode Sans Condensed","Khmer","Coiny","Port Lligat Sans","Montaga","Artifika","Suravaram","Paytone One","Nokora","Prosto One","Amethysta","Candal","Sofia","Lateef","Dokdo","VT323","Mandali","Sniglet","Jolly Lodger","East Sea Dokdo","Amarante","Spicy Rice","Cormorant Unicase","Akronim","Yeon Sung","Cute Font","ZCOOL KuaiLe"]}}
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: customizer, options framework, theme, mods, toolkit, gutenberg
4
  Donate link: https://aristath.github.io/donate
5
  Requires at least: 4.9
6
  Tested up to: 5.2
7
- Stable tag: 3.0.43
8
  License: MIT
9
  License URI: https://opensource.org/licenses/MIT
10
 
@@ -59,6 +59,8 @@ Premium controls are also available for premium themes:
59
  * [Kirki Box Model](https://wplemon.com/downloads/kirki-box-model/)
60
  * [Kirki Box Shadow](https://wplemon.com/downloads/kirki-box-shadow/)
61
 
 
 
62
  Theme developers should be familiar with the Customizer API before you start writing your theme using Kirki. An excellent handbook for the WordPress Customizer can be found on the [developer.wordpress.org](https://developer.wordpress.org/themes/customize-api/) website.
63
 
64
  You can find detailed documentation on how to use Kirki on [kirki.org](https://kirki.org)
@@ -73,11 +75,10 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
73
 
74
  == Changelog ==
75
 
76
- = 3.0.43 =
77
 
78
- Jun.16 2019, dev time: 30m
79
 
80
- * Fix: Google Fonts URL references in multisites.
81
- * New: It is now possible to reset Kirki google-font caches by visiting {site-url}/?action=kirki-reset-cache
82
 
83
  [See the previous changelogs here](https://github.com/aristath/kirki/blob/master/CHANGELOG.md).
4
  Donate link: https://aristath.github.io/donate
5
  Requires at least: 4.9
6
  Tested up to: 5.2
7
+ Stable tag: 3.0.44
8
  License: MIT
9
  License URI: https://opensource.org/licenses/MIT
10
 
59
  * [Kirki Box Model](https://wplemon.com/downloads/kirki-box-model/)
60
  * [Kirki Box Shadow](https://wplemon.com/downloads/kirki-box-shadow/)
61
 
62
+ All premium controls are also [available as a pack](https://wplemon.com/downloads/kirki-premium-controls-pack/)
63
+
64
  Theme developers should be familiar with the Customizer API before you start writing your theme using Kirki. An excellent handbook for the WordPress Customizer can be found on the [developer.wordpress.org](https://developer.wordpress.org/themes/customize-api/) website.
65
 
66
  You can find detailed documentation on how to use Kirki on [kirki.org](https://kirki.org)
75
 
76
  == Changelog ==
77
 
78
+ = 3.0.44 =
79
 
80
+ Jun.25 2019, dev time: 30m
81
 
82
+ * Fix: Google fonts getting constantly downloaded when `WP_DEBUG` was set to `true`
 
83
 
84
  [See the previous changelogs here](https://github.com/aristath/kirki/blob/master/CHANGELOG.md).