Version Description
March 23, 2016, dev time: 7 hours
- FIX: Google fonts now loaded via a PHP array instead of a JSON file.
- FIX: CSS issue due to escaped quotes on standard fonts.
- FIX: Issue when using
units
onjs_vars
combined with thestyle
method. - FIX: Missing textdomain on a string.
- NEW: Refactored postMessage scripts.
- NEW: Allow passing options to iris using the
choices
argument on color controls. - NEW: Allow disabling the custom loader using the
disable_loader
argument in thekirki/config
filter.
Download this release
Release Info
Developer | aristath |
Plugin | Kirki |
Version | 2.2.5 |
Comparing to | |
See all releases |
Code changes from version 2.2.4 to 2.2.5
- .codeclimate.yml +0 -28
- .coveralls.yml +0 -3
- .csslintrc +0 -2
- .editorconfig +0 -25
- .gitignore +0 -18
- .simplecov +0 -7
- .travis.yml +0 -48
- Gruntfile.js +15 -1
- README.md +13 -1
- assets/css/{customizer-dynamic-css-colors.css → customizer-dynamic-css-colors.php} +4 -0
- assets/css/{customizer-dynamic-css-width.css → customizer-dynamic-css-width.php} +4 -0
- assets/css/{customizer-dynamic-css.css → customizer-dynamic-css.php} +3 -0
- assets/js/controls/color-alpha.js +4 -0
- assets/js/controls/custom.js +0 -0
- assets/js/customizer.js +4 -0
- assets/js/customizer.min.js +1 -1
- assets/js/customizer.min.js.map +1 -1
- assets/js/kirki-postmessage.js +67 -48
- assets/json/webfonts.json +0 -13772
- assets/json/webfonts.php +5 -0
- includes/class-kirki-enqueue.php +13 -0
- includes/class-kirki-fonts.php +2 -11
- includes/class-kirki-init.php +0 -4
- includes/class-kirki-scripts-registry.php +0 -1
- includes/class-kirki-toolkit.php +1 -1
- includes/customizer/scripts/class-kirki-customizer-scripts-loading.php +7 -0
- includes/customizer/scripts/class-kirki-customizer-scripts-postmessage.php +0 -177
- includes/output/property/class-kirki-output-property-font-family.php +4 -0
- includes/sections/class-kirki-sections-hover-section.php +2 -2
- includes/styles/class-kirki-styles-customizer.php +6 -6
- kirki.php +1 -1
- languages/kirki.pot +2 -2
- package.json +4 -2
- readme.txt +13 -1
.codeclimate.yml
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
---
|
2 |
-
engines:
|
3 |
-
csslint:
|
4 |
-
enabled: true
|
5 |
-
duplication:
|
6 |
-
enabled: false
|
7 |
-
config:
|
8 |
-
languages:
|
9 |
-
- javascript
|
10 |
-
- php
|
11 |
-
fixme:
|
12 |
-
enabled: true
|
13 |
-
phpmd:
|
14 |
-
enabled: true
|
15 |
-
checks:
|
16 |
-
Controversial/CamelCaseMethodName:
|
17 |
-
enabled: false
|
18 |
-
ratings:
|
19 |
-
paths:
|
20 |
-
- "**.css"
|
21 |
-
- "**.js"
|
22 |
-
- "**.php"
|
23 |
-
exclude_paths:
|
24 |
-
- assets/css/customizer-dynamic-css-colors.css
|
25 |
-
- assets/js/customizer.js
|
26 |
-
- assets/js/vendor/*
|
27 |
-
- tests/*
|
28 |
-
- bin/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.coveralls.yml
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
coverage_clover: build/logs/clover.xml
|
2 |
-
service_name: travis-ci
|
3 |
-
json_path: tests/logs/coveralls-upload.json
|
|
|
|
|
|
.csslintrc
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
--exclude-exts=.min.css
|
2 |
-
--ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes
|
|
|
|
.editorconfig
DELETED
@@ -1,25 +0,0 @@
|
|
1 |
-
# This file is for unifying the coding style for different editors and IDEs
|
2 |
-
# editorconfig.org
|
3 |
-
|
4 |
-
# WordPress Coding Standards
|
5 |
-
# http://make.wordpress.org/core/handbook/coding-standards/
|
6 |
-
|
7 |
-
root = true
|
8 |
-
|
9 |
-
[*]
|
10 |
-
charset = utf-8
|
11 |
-
end_of_line = lf
|
12 |
-
insert_final_newline = true
|
13 |
-
trim_trailing_whitespace = true
|
14 |
-
indent_style = tab
|
15 |
-
|
16 |
-
[*.json]
|
17 |
-
indent_style = space
|
18 |
-
indent_size = 2
|
19 |
-
|
20 |
-
[*.css]
|
21 |
-
indent_style = space
|
22 |
-
indent_size = 2
|
23 |
-
|
24 |
-
[*.txt]
|
25 |
-
end_of_line = crlf
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.gitignore
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
# npm #
|
2 |
-
#######
|
3 |
-
node_modules
|
4 |
-
npm-debug.log
|
5 |
-
|
6 |
-
# grunt-contrib-sass #
|
7 |
-
######################
|
8 |
-
.sass-cache
|
9 |
-
|
10 |
-
# OS generated files #
|
11 |
-
######################
|
12 |
-
.DS_Store
|
13 |
-
.DS_Store?
|
14 |
-
._*
|
15 |
-
.Spotlight-V100
|
16 |
-
.Trashes
|
17 |
-
ehthumbs.db
|
18 |
-
Thumbs.db
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.simplecov
DELETED
@@ -1,7 +0,0 @@
|
|
1 |
-
require 'simplecov'
|
2 |
-
require 'coveralls'
|
3 |
-
|
4 |
-
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
5 |
-
SimpleCov.start do
|
6 |
-
add_filter "/test/"
|
7 |
-
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.travis.yml
DELETED
@@ -1,48 +0,0 @@
|
|
1 |
-
language: php
|
2 |
-
|
3 |
-
sudo: false
|
4 |
-
|
5 |
-
notifications:
|
6 |
-
on_success: never
|
7 |
-
on_failure: change
|
8 |
-
|
9 |
-
php:
|
10 |
-
- 7.0
|
11 |
-
- hhvm
|
12 |
-
|
13 |
-
env:
|
14 |
-
- WP_VERSION=latest WP_MULTISITE=0
|
15 |
-
|
16 |
-
matrix:
|
17 |
-
# include:
|
18 |
-
# - php: 5.6
|
19 |
-
# env: WP_VERSION=latest WP_MULTISITE=1
|
20 |
-
exclude:
|
21 |
-
- php: hhvm
|
22 |
-
env: WP_VERSION=latest WP_MULTISITE=1
|
23 |
-
|
24 |
-
defore_install:
|
25 |
-
- pip install --user codecov
|
26 |
-
- composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master
|
27 |
-
- composer install --dev
|
28 |
-
|
29 |
-
before_script:
|
30 |
-
- bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
|
31 |
-
- curl -s http://getcomposer.org/installer | php
|
32 |
-
- php composer.phar install --dev --no-interaction
|
33 |
-
|
34 |
-
script:
|
35 |
-
- mkdir -p build/logs
|
36 |
-
- phpunit --coverage-clover=coverage.clover
|
37 |
-
- find . \( -name '*kirki*.php' \) -exec php -lf {} \;
|
38 |
-
- ./vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
|
39 |
-
|
40 |
-
after_script:
|
41 |
-
- php vendor/bin/coveralls
|
42 |
-
- wget https://scrutinizer-ci.com/ocular.phar
|
43 |
-
- php ocular.phar code-coverage:upload --format=php-clover coverage.clove
|
44 |
-
|
45 |
-
after_success:
|
46 |
-
- coveralls
|
47 |
-
- codecov
|
48 |
-
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Gruntfile.js
CHANGED
@@ -72,6 +72,18 @@ module.exports = function(grunt) {
|
|
72 |
},
|
73 |
},
|
74 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
// Watch task (run with "grunt watch")
|
76 |
watch: {
|
77 |
css: {
|
@@ -97,8 +109,10 @@ module.exports = function(grunt) {
|
|
97 |
grunt.loadNpmTasks('grunt-contrib-watch');
|
98 |
grunt.loadNpmTasks('grunt-curl');
|
99 |
grunt.loadNpmTasks('grunt-wp-readme-to-markdown');
|
|
|
|
|
100 |
|
101 |
grunt.registerTask('default', ['sass', 'concat', 'uglify', 'cssmin', 'makepot', 'wp_readme_to_markdown']);
|
102 |
-
grunt.registerTask('googlefonts', ['curl:google-fonts-source']);
|
103 |
|
104 |
};
|
72 |
},
|
73 |
},
|
74 |
},
|
75 |
+
// Convert json array to PHP array
|
76 |
+
json2php: {
|
77 |
+
convert: {
|
78 |
+
expand: true,
|
79 |
+
ext: '.php',
|
80 |
+
src: ['assets/json/webfonts.json']
|
81 |
+
}
|
82 |
+
},
|
83 |
+
// Delete the json array
|
84 |
+
clean: [
|
85 |
+
'assets/json/webfonts.json'
|
86 |
+
],
|
87 |
// Watch task (run with "grunt watch")
|
88 |
watch: {
|
89 |
css: {
|
109 |
grunt.loadNpmTasks('grunt-contrib-watch');
|
110 |
grunt.loadNpmTasks('grunt-curl');
|
111 |
grunt.loadNpmTasks('grunt-wp-readme-to-markdown');
|
112 |
+
grunt.loadNpmTasks('grunt-json2php');
|
113 |
+
grunt.loadNpmTasks('grunt-contrib-clean');
|
114 |
|
115 |
grunt.registerTask('default', ['sass', 'concat', 'uglify', 'cssmin', 'makepot', 'wp_readme_to_markdown']);
|
116 |
+
grunt.registerTask('googlefonts', ['curl:google-fonts-source', 'json2php', 'clean']);
|
117 |
|
118 |
};
|
README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
**Donate link:** http://kirki.org/
|
5 |
**Requires at least:** 4.4
|
6 |
**Tested up to:** 4.5
|
7 |
-
**Stable tag:** 2.2.
|
8 |
**License:** GPLv2 or later
|
9 |
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -37,6 +37,18 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
|
|
37 |
|
38 |
## Changelog ##
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
### 2.2.4 ###
|
41 |
|
42 |
March 20, 2016, dev time: 6 hours
|
4 |
**Donate link:** http://kirki.org/
|
5 |
**Requires at least:** 4.4
|
6 |
**Tested up to:** 4.5
|
7 |
+
**Stable tag:** 2.2.5
|
8 |
**License:** GPLv2 or later
|
9 |
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
37 |
|
38 |
## Changelog ##
|
39 |
|
40 |
+
### 2.2.5 ###
|
41 |
+
|
42 |
+
March 23, 2016, dev time: 7 hours
|
43 |
+
|
44 |
+
* FIX: Google fonts now loaded via a PHP array instead of a JSON file.
|
45 |
+
* FIX: CSS issue due to escaped quotes on standard fonts.
|
46 |
+
* FIX: Issue when using `units` on `js_vars` combined with the `style` method.
|
47 |
+
* FIX: Missing textdomain on a string.
|
48 |
+
* NEW: Refactored postMessage scripts.
|
49 |
+
* NEW: Allow passing options to iris using the `choices` argument on color controls.
|
50 |
+
* NEW: Allow disabling the custom loader using the `disable_loader` argument in the `kirki/config` filter.
|
51 |
+
|
52 |
### 2.2.4 ###
|
53 |
|
54 |
March 20, 2016, dev time: 6 hours
|
assets/css/{customizer-dynamic-css-colors.css → customizer-dynamic-css-colors.php}
RENAMED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
/** Generic background color **/
|
2 |
.wp-full-overlay-sidebar {
|
3 |
background: COLOR_BACK;
|
@@ -105,3 +108,4 @@ h3.customize-section-title {
|
|
105 |
#customize-controls .customize-info .preview-notice {
|
106 |
color: COLOR_FONT;
|
107 |
}
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
return '
|
4 |
/** Generic background color **/
|
5 |
.wp-full-overlay-sidebar {
|
6 |
background: COLOR_BACK;
|
108 |
#customize-controls .customize-info .preview-notice {
|
109 |
color: COLOR_FONT;
|
110 |
}
|
111 |
+
';
|
assets/css/{customizer-dynamic-css-width.css → customizer-dynamic-css-width.php}
RENAMED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
.wp-full-overlay-sidebar {
|
2 |
width: WIDTH;
|
3 |
}
|
@@ -5,3 +8,4 @@
|
|
5 |
.wp-full-overlay.expanded {
|
6 |
margin-left: WIDTH;
|
7 |
}
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
return '
|
4 |
.wp-full-overlay-sidebar {
|
5 |
width: WIDTH;
|
6 |
}
|
8 |
.wp-full-overlay.expanded {
|
9 |
margin-left: WIDTH;
|
10 |
}
|
11 |
+
';
|
assets/css/{customizer-dynamic-css.css → customizer-dynamic-css.php}
RENAMED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
/** Button styles **/
|
2 |
.wp-core-ui .button-primary-disabled,
|
3 |
.wp-core-ui .button-primary.disabled,
|
@@ -63,3 +65,4 @@
|
|
63 |
.customize-control-palette label.ui-state-active.ui-button.ui-widget span.ui-button-text {
|
64 |
border-color: COLOR_ACCENT;
|
65 |
}
|
|
1 |
+
<?php
|
2 |
+
return '
|
3 |
/** Button styles **/
|
4 |
.wp-core-ui .button-primary-disabled,
|
5 |
.wp-core-ui .button-primary.disabled,
|
65 |
.customize-control-palette label.ui-state-active.ui-button.ui-widget span.ui-button-text {
|
66 |
border-color: COLOR_ACCENT;
|
67 |
}
|
68 |
+
';
|
assets/js/controls/color-alpha.js
CHANGED
@@ -7,6 +7,10 @@ wp.customize.controlConstructor['color-alpha'] = wp.customize.Control.extend( {
|
|
7 |
var picker = this.container.find( '.kirki-color-control' );
|
8 |
var new_color = picker.val();
|
9 |
|
|
|
|
|
|
|
|
|
10 |
picker.wpColorPicker({
|
11 |
change: function( event, ui ) {
|
12 |
setTimeout( function(){
|
7 |
var picker = this.container.find( '.kirki-color-control' );
|
8 |
var new_color = picker.val();
|
9 |
|
10 |
+
if ( undefined !== control.params.choices ) {
|
11 |
+
picker.wpColorPicker( control.params.choices );
|
12 |
+
}
|
13 |
+
|
14 |
picker.wpColorPicker({
|
15 |
change: function( event, ui ) {
|
16 |
setTimeout( function(){
|
assets/js/controls/custom.js
ADDED
File without changes
|
assets/js/customizer.js
CHANGED
@@ -100,6 +100,10 @@ wp.customize.controlConstructor['color-alpha'] = wp.customize.Control.extend( {
|
|
100 |
var picker = this.container.find( '.kirki-color-control' );
|
101 |
var new_color = picker.val();
|
102 |
|
|
|
|
|
|
|
|
|
103 |
picker.wpColorPicker({
|
104 |
change: function( event, ui ) {
|
105 |
setTimeout( function(){
|
100 |
var picker = this.container.find( '.kirki-color-control' );
|
101 |
var new_color = picker.val();
|
102 |
|
103 |
+
if ( undefined !== control.params.choices ) {
|
104 |
+
picker.wpColorPicker( control.params.choices );
|
105 |
+
}
|
106 |
+
|
107 |
picker.wpColorPicker({
|
108 |
change: function( event, ui ) {
|
109 |
setTimeout( function(){
|
assets/js/customizer.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
function kirkiArrayToObject(a){var b={};if(null!==a)for(var c=0;c<a.length;++c)void 0!==a[c]&&(b[c]=a[c]);return b}function kirkiObjectToArray(a){var b=[];if(null!==a)for(var c=0;c<a.length;++c)void 0!==a[c]&&b.push(a[c]);return b}function kirkiValidateCSSValue(a){var b=!0;if("0"==a)return!0;var c=["rem","em","ex","%","px","cm","mm","in","pt","pc","ch","vh","vw","vmin","vmax"],d=parseFloat(a),e=a.replace(d,"");return NaN===d&&(b=!1),-1===jQuery.inArray(e,c)&&(b=!1),b}function RepeaterRow(a,b){this.rowIndex=a,this.rowNumber=a+1,this.$el=b,this.$dragger=this.$el.find(".repeater-row-move"),this.$minimizer=this.$el.find(".repeater-row-minimize"),this.$remover=this.$el.find(".repeater-row-remove"),this.$number=this.$el.find(".repeater-row-number"),this.$fields=this.$el.find("input,select,textarea");var c=this;this.$minimizer.on("click",function(){c.toggleMinimize()}),this.$remover.on("click",function(){c.remove()}),this.$dragger.on("mousedown",function(){c.$el.trigger("row:start-dragging")}),this.$el.on("keyup change","input, select, textarea",function(a){c.$el.trigger("row:update",[c.getRowIndex(),jQuery(a.target).data("field"),a.target])}),this.renderNumber()}wp.customize.controlConstructor["kirki-checkbox"]=wp.customize.Control.extend({ready:function(){var a=this,b=a.setting._value;this.container.on("change","input",function(){b=!!jQuery(this).is(":checked"),a.setting.set(b)})}}),wp.customize.controlConstructor.code=wp.customize.Control.extend({ready:function(){var a=this,b=a.container.find("#kirki-codemirror-editor-"+a.id),c=CodeMirror.fromTextArea(b[0]);if("html"==a.params.choices.language)var d={name:"htmlmixed"};else d=a.params.choices.language;c.setOption("value",a.setting._value),c.setOption("mode",d),c.setOption("lineNumbers",!0),c.setOption("theme",a.params.choices.theme),c.setOption("height",a.params.choices.height+"px"),c.on("change",function(){a.setting.set(c.getValue())}),b.parents(".accordion-section").on("click",function(){c.refresh()})}}),wp.customize.controlConstructor["color-alpha"]=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find(".kirki-color-control");b.val();b.wpColorPicker({change:function(c,d){setTimeout(function(){a.setting.set(b.val())},100)}})}}),wp.customize.controlConstructor.dashicons=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.dimension=wp.customize.Control.extend({ready:function(){var a=this;!1===kirkiValidateCSSValue(a.setting._value)?jQuery(a.selector+" .input-wrapper").addClass("invalid"):jQuery(a.selector+" .input-wrapper").removeClass("invalid"),this.container.on("change keyup paste","input",function(){var b=jQuery(this).val();!1===kirkiValidateCSSValue(b)?jQuery(a.selector+" .input-wrapper").addClass("invalid"):(jQuery(a.selector+" .input-wrapper").removeClass("invalid"),a.setting.set(b))})}}),function(a){wp.customizerCtrlEditor={init:function(){a(window).load(function(){a("textarea.wp-editor-area").each(function(){var b,c,d=a(this),e=d.attr("id"),f=tinyMCE.get(e);f&&f.onChange.add(function(a,e){a.save(),c=f.getContent(),clearTimeout(b),b=setTimeout(function(){d.val(c).trigger("change")},500)}),d.css({visibility:"visible"}).on("keyup",function(){c=d.val(),clearTimeout(b),b=setTimeout(function(){c.trigger("change")},500)})})})}},wp.customizerCtrlEditor.init()}(jQuery),wp.customize.controlConstructor["kirki-generic"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("change keyup paste",a.params.choices.element,function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.multicheck=wp.customize.Control.extend({ready:function(){var a=this;a.container.on("change","input",function(){var b=[],c=0;jQuery.each(a.params.choices,function(d,e){a.container.find('input[value="'+d+'"]').is(":checked")&&(b[c]=d,c++)}),a.setting.set(b),wp.customize.previewer.refresh()})}}),wp.customize.controlConstructor.number=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find("input");jQuery(b).spinner(),a.params.choices.min&&jQuery(b).spinner("option","min",a.params.choices.min),a.params.choices.max&&jQuery(b).spinner("option","max",a.params.choices.max),a.params.choices.step&&("any"==a.params.choices.step?jQuery(b).spinner("option","step","0.001"):jQuery(b).spinner("option","step",a.params.choices.step)),this.container.on("change click keyup paste","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.palette=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.preset=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find("select");jQuery(b).selectize(),this.container.on("change","select",function(){var b=jQuery(this).val();a.setting.set(b),jQuery.each(a.params.choices,function(a,c){b==a&&jQuery.each(c.settings,function(a,b){var c=wp.customize.settings.controls[a];if(void 0===typeof c)return!0;var d=c.type;if("checkbox"==d||"switch"==d||"toggle"==d||"kirki-checkbox"==d){var e=wp.customize.control(a).container.find("input");1==b?(jQuery(e).prop("checked",!0),wp.customize.instance(a).set(!0)):(jQuery(e).prop("checked",!1),wp.customize.instance(a).set(!1))}else if("select"==d||"select2"==d||"select2-multiple"==d||"kirki-select"==d){var e=wp.customize.control(a).container.find("select"),f=jQuery(e).selectize(),g=f[0].selectize;g.setValue(b,!0),wp.customize.instance(a).set(b)}else if("slider"==d){var e=wp.customize.control(a).container.find("input");jQuery(e).prop("value",b);var h=wp.customize.control(a).container.find(".kirki_range_value .value");jQuery(h).html(b),wp.customize.instance(a).set(b)}else if("textarea"==d||"kirki-textarea"==d){var e=wp.customize.control(a).container.find("textarea");jQuery(e).prop("value",b),wp.customize(a).set(b)}else if("color-alpha"==d||"kirki-color"==d||"color"==d){var i=wp.customize.control(a).container.find(".kirki-color-control");i.attr("data-default-color",b).data("default-color",b).wpColorPicker("color",b),wp.customize.instance(a).set(b)}else if("dimension"==d){wp.customize.instance(a).set(b);var e=wp.customize.control(a).container.find("input[type=number]"),j=parseFloat(b);jQuery(e).prop("value",j);var k=wp.customize.control(a).container.find("select"),l=b.replace(parseFloat(b),"");jQuery(k).prop("value",l)}else if("multicheck"==d)for(wp.customize.instance(a).set(b),wp.customize.control(a).container.find("input").each(function(){jQuery(this).prop("checked",!1)}),index=0;index<b.length;index++){var e=wp.customize.control(a).container.find('input[value="'+b[index]+'"]');jQuery(e).prop("checked",!0)}else if("radio-buttonset"==d||"radio-image"==d||"radio"==d||"kirki-radio"==d){var e=wp.customize.control(a).container.find('input[value="'+b+'"]');jQuery(e).prop("checked",!0),wp.customize.instance(a).set(b)}else{var e=wp.customize.control(a).container.find("input");jQuery(e).prop("value",b),wp.customize.instance(a).set(b)}})}),wp.customize.previewer.refresh()})}}),wp.customize.controlConstructor["radio-buttonset"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor["radio-image"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor["kirki-radio"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("change","input",function(){a.setting.set(jQuery(this).val())})}}),RepeaterRow.prototype.getRowIndex=function(){return this.rowIndex},RepeaterRow.prototype.getRowNumber=function(){return this.rowNumber},RepeaterRow.prototype.setRowNumber=function(a){this.rowNumber=a,this.renderNumber()},RepeaterRow.prototype.getElement=function(){return this.$el},RepeaterRow.prototype.setRowIndex=function(a){this.rowIndex=a,this.$el.attr("data-row",a),this.$el.data("row",a)},RepeaterRow.prototype.toggleMinimize=function(){this.$el.toggleClass("minimized"),this.$minimizer.find(".repeater-minimize").toggleClass("dashicons-arrow-up"),this.$minimizer.find(".repeater-minimize").toggleClass("dashicons-arrow-down")},RepeaterRow.prototype.minimize=function(){this.$el.addClass("minimized"),this.$minimizer.find(".repeater-minimize").removeClass("dashicons-arrow-up"),this.$minimizer.find(".repeater-minimize").addClass("dashicons-arrow-down")},RepeaterRow.prototype.remove=function(){confirm("Are you sure?")&&(this.$el.slideUp(300,function(){jQuery(this).detach()}),this.$el.trigger("row:remove",[this.getRowIndex()]))},RepeaterRow.prototype.renderNumber=function(){this.$number.text(this.getRowNumber())},wp.customize.controlConstructor.repeater=wp.customize.Control.extend({ready:function(){var a=this,b=this.params.value;if(this.settingField=this.container.find("[data-customize-setting-link]").first(),this.setValue([],!1),this.repeaterFieldsContainer=this.container.find(".repeater-fields").first(),this.currentIndex=0,this.rows=[],void 0!==this.params.choices.limit)if(this.params.choices.limit<=0)var c=!1;else var c=parseInt(this.params.choices.limit);else var c=!1;if(this.container.on("click","button.repeater-add",function(b){b.preventDefault(),!c||a.currentIndex<c?a.addRow():jQuery(a.selector+" .limit").toggleClass("highlight")}),this.container.on("click keypress",".repeater-field-image .upload-button",function(b){b.preventDefault(),a.$thisButton=jQuery(this),a.openFrame(b)}),this.container.on("click keypress",".repeater-field-image .remove-button",function(b){b.preventDefault(),a.$thisButton=jQuery(this),a.removeImage(b)}),this.repeaterTemplate=_.memoize(function(){var b,c={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(d){return(b=_.template(a.container.find(".customize-control-repeater-content").first().html(),null,c))(d)}}),b.length)for(var d=0;d<b.length;d++)a.addRow(b[d]);this.repeaterFieldsContainer.sortable({handle:".repeater-row-move",update:function(b,c){a.sort()}})},openFrame:function(a){wp.customize.utils.isKeydownButNotEnterEvent(a)||(this.frame||this.initFrame(),this.frame.open())},initFrame:function(){var a=this;this.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query({type:"image"}),multiple:!1,date:!1})]}),this.frame.on("select",function(b){a.selectImage()})},selectImage:function(){var a=this.frame.state().get("selection").first().toJSON(),b=a.url,c=this.$thisButton.closest(".repeater-field-image");c.find(".kirki-image-attachment").html('<img src="'+b+'">').hide().slideDown("slow"),c.find(".hidden-field").val(b),this.$thisButton.text(this.$thisButton.data("alt-label")),c.find(".remove-button").show(),c.find("input, textarea, select").trigger("change")},removeImage:function(a){if(!wp.customize.utils.isKeydownButNotEnterEvent(a)){var b=this.$thisButton.closest(".repeater-field-image"),c=b.find(".upload-button");b.find(".kirki-image-attachment").slideUp("fast",function(){jQuery(this).show().html(jQuery(this).data("placeholder"))}),b.find(".hidden-field").val(""),c.text(c.data("label")),this.$thisButton.hide(),b.find("input, textarea, select").trigger("change")}},getValue:function(){return JSON.parse(decodeURI(this.setting.get()))},setValue:function(a,b){this.setting.set(encodeURI(JSON.stringify(a))),b&&this.settingField.trigger("change")},addRow:function(a){var b,c,d=this,e=d.repeaterTemplate(),f=this.getValue(),g={};if(e){if(c=jQuery.extend(!0,{},d.params.fields),a)for(b in a)a.hasOwnProperty(b)&&c.hasOwnProperty(b)&&(c[b]["default"]=a[b]);c.index=this.currentIndex,c.ControlId=this.id,e=e(c);var h=new RepeaterRow(d.currentIndex,jQuery(e).appendTo(d.repeaterFieldsContainer));h.getElement().one("row:remove",function(a,b){d.deleteRow(b)}),h.getElement().on("row:update",function(a,b,c,e){d.updateField.call(d,a,b,c,e)}),h.getElement().on("row:start-dragging",function(){for(b in d.rows)d.rows.hasOwnProperty(b)&&d.rows[b]&&d.rows[b].minimize()}),this.rows[this.currentIndex]=h;for(b in c)c.hasOwnProperty(b)&&(g[b]=c[b]["default"]);f[this.currentIndex]=g,this.setValue(f,!0),this.currentIndex++}},sort:function(){var a=this,b=this.repeaterFieldsContainer.find(".repeater-row"),c=[];b.each(function(a,b){c.push(jQuery(b).data("row"))});var d=a.getValue(),e=[],f=[];jQuery.each(c,function(b,c){e[b]=a.rows[c],e[b].setRowIndex(b),e[b].setRowNumber(b+1),f[b]=d[c]}),a.rows=e,a.setValue(f)},deleteRow:function(a){var b=this.getValue();if(b[a]){var c=this.rows[a];c&&(delete b[a],delete this.rows[a],this.setValue(b,!0))}var d=1;for(prop in this.rows)this.rows.hasOwnProperty(prop)&&this.rows[prop]&&(this.rows[prop].setRowNumber(d),d++)},updateField:function(a,b,c,d){if(this.rows[b]&&this.params.fields[c]){var e=this.params.fields[c].type,f=this.rows[b],g=this.getValue();d=jQuery(d),void 0!=typeof g[f.getRowIndex()][c]&&("checkbox"==e?g[f.getRowIndex()][c]=d.is(":checked"):g[f.getRowIndex()][c]=d.val(),this.setValue(g,!0))}}}),wp.customize.controlConstructor["kirki-select"]=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find("select"),c=parseInt(b.data("multiple"));c>1?jQuery(b).selectize({maxItems:c,plugins:["remove_button","drag_drop"]}):jQuery(b).selectize(),this.container.on("change","select",function(){if(c>1)var b=kirkiArrayToObject(jQuery(this).val());else var b=jQuery(this).val();a.setting.set(b)})}}),jQuery(document).ready(function(a){a("input[type=range]").on("mousedown",function(){value=a(this).attr("value"),a(this).mousemove(function(){value=a(this).attr("value"),a(this).closest("label").find(".kirki_range_value .value").text(value)})}),a(".kirki-slider-reset").click(function(){var b=a(this).closest("label").find("input"),c=(b.data("customize-setting-link"),b.data("reset_value"));b.val(c),b.change(),a(this).closest("label").find(".kirki_range_value .value").text(c)})}),wp.customize.controlConstructor.slider=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("change","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.sortable=wp.customize.Control.extend({ready:function(){var a=this;this.settingField=this.container.find("[data-customize-setting-link]").first(),this.sortableContainer=this.container.find("ul.sortable").first(),this.setValue(this.setting.get(),!1),this.sortableContainer.sortable().disableSelection().on("sortstop",function(b,c){a.sort()}).find("li").each(function(){jQuery(this).find("i.visibility").click(function(){jQuery(this).toggleClass("dashicons-visibility-faint").parents("li:eq(0)").toggleClass("invisible")})}).click(function(){a.sort()})},sort:function(){var a=[];this.sortableContainer.find("li").each(function(){var b=jQuery(this);b.is(".invisible")||a.push(b.data("value"))}),this.setValue(a,!0)},getValue:function(){return unserialize(this.setting.get())},setValue:function(a,b){a=serialize(a),this.setting.set(a),this.settingField.val(a),b&&this.settingField.trigger("change")}}),wp.customize.controlConstructor.spacing=wp.customize.Control.extend({ready:function(){var a=this,b={};jQuery.each(["top","bottom","left","right"],function(c,d){a.container.has("."+d).size()&&(b[d]=a.setting._value[d],!1===kirkiValidateCSSValue(a.setting._value[d])?jQuery(a.selector+" ."+d+".input-wrapper").addClass("invalid"):jQuery(a.selector+" ."+d+".input-wrapper").removeClass("invalid")),a.container.has("."+d).size()&&a.container.on("change keyup paste","."+d+" input",function(){subValue=jQuery(this).val(),!1===kirkiValidateCSSValue(subValue)?jQuery(a.selector+" ."+d+".input-wrapper").addClass("invalid"):(jQuery(a.selector+" ."+d+".input-wrapper").removeClass("invalid"),b[d]=subValue,a.setting.set(b),wp.customize.previewer.refresh())})})}}),wp.customize.controlConstructor["switch"]=wp.customize.Control.extend({ready:function(){var a=this,b=a.setting._value;this.container.on("change","input",function(){b=!!jQuery(this).is(":checked"),a.setting.set(b)})}}),wp.customize.controlConstructor.toggle=wp.customize.Control.extend({ready:function(){var a=this,b=a.setting._value;this.container.on("change","input",function(){b=!!jQuery(this).is(":checked"),a.setting.set(b)})}}),wp.customize.controlConstructor.typography=wp.customize.Control.extend({ready:function(){var a=this,b=a.selector+" .font-family select",c=a.selector+" .variant select",d=a.selector+" .subset select",e={};e["font-family"]=void 0!==a.setting._value["font-family"]?a.setting._value["font-family"]:"",e["font-size"]=void 0!==a.setting._value["font-size"]?a.setting._value["font-size"]:"",e.variant=void 0!==a.setting._value.variant?a.setting._value.variant:"",e.subset=void 0!==a.setting._value.subset?a.setting._value.subset:"",e["line-height"]=void 0!==a.setting._value["line-height"]?a.setting._value["line-height"]:"",e["letter-spacing"]=void 0!==a.setting._value["letter-spacing"]?a.setting._value["letter-spacing"]:"",e.color=void 0!==a.setting._value.color?a.setting._value.color:"";var f=function(b,f,g){subSelector="variant"==f?c:d;var h=!1,i={};void 0!==jQuery(subSelector).selectize()[0]&&jQuery(subSelector).selectize()[0].selectize.destroy();for(var j=0,k=kirkiAllFonts.length;k>j;j++)b===kirkiAllFonts[j].family&&(void 0!==kirkiAllFonts[j].is_standard&&!0===kirkiAllFonts[j].is_standard&&(h=!0),i=kirkiAllFonts[j][f+"s"]);if(!1===h||"subset"!==f){if(null===g){if("variant"==f)for(var j=0,k=i.length;k>j;j++)if(void 0!==i[j].id)var l=e.variant;else{var m="regular";if(m==i[j].id)var n=!0;else if(void 0===o)var o=i[j].id}else if("subset"==f){for(var p={},j=0,k=i.length;k>j;j++)if(null!==e.subset)for(var q=0,k=e.subset.length;k>q;q++)void 0!==i[j]&&e.subset[q]==i[j].id&&(p[e.subset[q]]=e.subset[q]);if(0==p.length)l=["latin"];else{var r=jQuery.map(p,function(a,b){return[a]});l=r}}subValue=void 0!==l?l:void 0!==n?"regular":o}else subValue=g;var s;s=jQuery(subSelector).selectize({maxItems:"variant"==f?1:null,valueField:"id",labelField:"label",searchField:["label"],options:i,items:"variant"==f?[subValue]:subValue,create:!1,plugins:"variant"==f?"":["remove_button"],render:{item:function(a,b){return"<div>"+b(a.label)+"</div>"},option:function(a,b){return"<div>"+b(a.label)+"</div>"}}}).data("selectize")}"variant"==f?1===i.length||0===i.length?a.container.find(".kirki-variant-wrapper").css("display","none"):a.container.find(".kirki-variant-wrapper").css("display","block"):"subset"==f&&(0===i.length?a.container.find(".kirki-subset-wrapper").css("display","none"):a.container.find(".kirki-subset-wrapper").css("display","block")),!0===h?a.container.find(".hide-on-standard-fonts").css("display","none"):a.container.find(".hide-on-standard-fonts").css("display","block")};jQuery(b).selectize({options:kirkiAllFonts,items:[a.setting._value["font-family"]],persist:!1,maxItems:1,valueField:"family",labelField:"label",searchField:["family","label","subsets"],create:!1,render:{item:function(a,b){return"<div>"+b(a.label)+"</div>"},option:function(a,b){return"<div>"+b(a.label)+"</div>"}}}),f(e["font-family"],"variant",e.variant),f(e["font-family"],"subset",e.subset),this.container.on("change",".font-family select",function(){e["font-family"]=jQuery(this).val(),a.setting.set(e),f(jQuery(this).val(),"variant",null),f(jQuery(this).val(),"subset",null),wp.customize.previewer.refresh()}),this.container.on("change",".variant select",function(){e.variant=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change",".subset select",function(){e.subset=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change keyup paste",".font-size input",function(){e["font-size"]=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change keyup paste",".line-height input",function(){e["line-height"]=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change keyup paste",".letter-spacing input",function(){e["letter-spacing"]=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()});var g=this.container.find(".kirki-color-control");g.wpColorPicker({change:function(){setTimeout(function(){e.color=g.val(),a.setting.set(e),wp.customize.previewer.refresh()},100)}})}});
|
2 |
//# sourceMappingURL=customizer.min.js.map
|
1 |
+
function kirkiArrayToObject(a){var b={};if(null!==a)for(var c=0;c<a.length;++c)void 0!==a[c]&&(b[c]=a[c]);return b}function kirkiObjectToArray(a){var b=[];if(null!==a)for(var c=0;c<a.length;++c)void 0!==a[c]&&b.push(a[c]);return b}function kirkiValidateCSSValue(a){var b=!0;if("0"==a)return!0;var c=["rem","em","ex","%","px","cm","mm","in","pt","pc","ch","vh","vw","vmin","vmax"],d=parseFloat(a),e=a.replace(d,"");return NaN===d&&(b=!1),-1===jQuery.inArray(e,c)&&(b=!1),b}function RepeaterRow(a,b){this.rowIndex=a,this.rowNumber=a+1,this.$el=b,this.$dragger=this.$el.find(".repeater-row-move"),this.$minimizer=this.$el.find(".repeater-row-minimize"),this.$remover=this.$el.find(".repeater-row-remove"),this.$number=this.$el.find(".repeater-row-number"),this.$fields=this.$el.find("input,select,textarea");var c=this;this.$minimizer.on("click",function(){c.toggleMinimize()}),this.$remover.on("click",function(){c.remove()}),this.$dragger.on("mousedown",function(){c.$el.trigger("row:start-dragging")}),this.$el.on("keyup change","input, select, textarea",function(a){c.$el.trigger("row:update",[c.getRowIndex(),jQuery(a.target).data("field"),a.target])}),this.renderNumber()}wp.customize.controlConstructor["kirki-checkbox"]=wp.customize.Control.extend({ready:function(){var a=this,b=a.setting._value;this.container.on("change","input",function(){b=!!jQuery(this).is(":checked"),a.setting.set(b)})}}),wp.customize.controlConstructor.code=wp.customize.Control.extend({ready:function(){var a=this,b=a.container.find("#kirki-codemirror-editor-"+a.id),c=CodeMirror.fromTextArea(b[0]);if("html"==a.params.choices.language)var d={name:"htmlmixed"};else d=a.params.choices.language;c.setOption("value",a.setting._value),c.setOption("mode",d),c.setOption("lineNumbers",!0),c.setOption("theme",a.params.choices.theme),c.setOption("height",a.params.choices.height+"px"),c.on("change",function(){a.setting.set(c.getValue())}),b.parents(".accordion-section").on("click",function(){c.refresh()})}}),wp.customize.controlConstructor["color-alpha"]=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find(".kirki-color-control");b.val();void 0!==a.params.choices&&b.wpColorPicker(a.params.choices),b.wpColorPicker({change:function(c,d){setTimeout(function(){a.setting.set(b.val())},100)}})}}),wp.customize.controlConstructor.dashicons=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.dimension=wp.customize.Control.extend({ready:function(){var a=this;!1===kirkiValidateCSSValue(a.setting._value)?jQuery(a.selector+" .input-wrapper").addClass("invalid"):jQuery(a.selector+" .input-wrapper").removeClass("invalid"),this.container.on("change keyup paste","input",function(){var b=jQuery(this).val();!1===kirkiValidateCSSValue(b)?jQuery(a.selector+" .input-wrapper").addClass("invalid"):(jQuery(a.selector+" .input-wrapper").removeClass("invalid"),a.setting.set(b))})}}),function(a){wp.customizerCtrlEditor={init:function(){a(window).load(function(){a("textarea.wp-editor-area").each(function(){var b,c,d=a(this),e=d.attr("id"),f=tinyMCE.get(e);f&&f.onChange.add(function(a,e){a.save(),c=f.getContent(),clearTimeout(b),b=setTimeout(function(){d.val(c).trigger("change")},500)}),d.css({visibility:"visible"}).on("keyup",function(){c=d.val(),clearTimeout(b),b=setTimeout(function(){c.trigger("change")},500)})})})}},wp.customizerCtrlEditor.init()}(jQuery),wp.customize.controlConstructor["kirki-generic"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("change keyup paste",a.params.choices.element,function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.multicheck=wp.customize.Control.extend({ready:function(){var a=this;a.container.on("change","input",function(){var b=[],c=0;jQuery.each(a.params.choices,function(d,e){a.container.find('input[value="'+d+'"]').is(":checked")&&(b[c]=d,c++)}),a.setting.set(b),wp.customize.previewer.refresh()})}}),wp.customize.controlConstructor.number=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find("input");jQuery(b).spinner(),a.params.choices.min&&jQuery(b).spinner("option","min",a.params.choices.min),a.params.choices.max&&jQuery(b).spinner("option","max",a.params.choices.max),a.params.choices.step&&("any"==a.params.choices.step?jQuery(b).spinner("option","step","0.001"):jQuery(b).spinner("option","step",a.params.choices.step)),this.container.on("change click keyup paste","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.palette=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.preset=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find("select");jQuery(b).selectize(),this.container.on("change","select",function(){var b=jQuery(this).val();a.setting.set(b),jQuery.each(a.params.choices,function(a,c){b==a&&jQuery.each(c.settings,function(a,b){var c=wp.customize.settings.controls[a];if(void 0===typeof c)return!0;var d=c.type;if("checkbox"==d||"switch"==d||"toggle"==d||"kirki-checkbox"==d){var e=wp.customize.control(a).container.find("input");1==b?(jQuery(e).prop("checked",!0),wp.customize.instance(a).set(!0)):(jQuery(e).prop("checked",!1),wp.customize.instance(a).set(!1))}else if("select"==d||"select2"==d||"select2-multiple"==d||"kirki-select"==d){var e=wp.customize.control(a).container.find("select"),f=jQuery(e).selectize(),g=f[0].selectize;g.setValue(b,!0),wp.customize.instance(a).set(b)}else if("slider"==d){var e=wp.customize.control(a).container.find("input");jQuery(e).prop("value",b);var h=wp.customize.control(a).container.find(".kirki_range_value .value");jQuery(h).html(b),wp.customize.instance(a).set(b)}else if("textarea"==d||"kirki-textarea"==d){var e=wp.customize.control(a).container.find("textarea");jQuery(e).prop("value",b),wp.customize(a).set(b)}else if("color-alpha"==d||"kirki-color"==d||"color"==d){var i=wp.customize.control(a).container.find(".kirki-color-control");i.attr("data-default-color",b).data("default-color",b).wpColorPicker("color",b),wp.customize.instance(a).set(b)}else if("dimension"==d){wp.customize.instance(a).set(b);var e=wp.customize.control(a).container.find("input[type=number]"),j=parseFloat(b);jQuery(e).prop("value",j);var k=wp.customize.control(a).container.find("select"),l=b.replace(parseFloat(b),"");jQuery(k).prop("value",l)}else if("multicheck"==d)for(wp.customize.instance(a).set(b),wp.customize.control(a).container.find("input").each(function(){jQuery(this).prop("checked",!1)}),index=0;index<b.length;index++){var e=wp.customize.control(a).container.find('input[value="'+b[index]+'"]');jQuery(e).prop("checked",!0)}else if("radio-buttonset"==d||"radio-image"==d||"radio"==d||"kirki-radio"==d){var e=wp.customize.control(a).container.find('input[value="'+b+'"]');jQuery(e).prop("checked",!0),wp.customize.instance(a).set(b)}else{var e=wp.customize.control(a).container.find("input");jQuery(e).prop("value",b),wp.customize.instance(a).set(b)}})}),wp.customize.previewer.refresh()})}}),wp.customize.controlConstructor["radio-buttonset"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor["radio-image"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("click","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor["kirki-radio"]=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("change","input",function(){a.setting.set(jQuery(this).val())})}}),RepeaterRow.prototype.getRowIndex=function(){return this.rowIndex},RepeaterRow.prototype.getRowNumber=function(){return this.rowNumber},RepeaterRow.prototype.setRowNumber=function(a){this.rowNumber=a,this.renderNumber()},RepeaterRow.prototype.getElement=function(){return this.$el},RepeaterRow.prototype.setRowIndex=function(a){this.rowIndex=a,this.$el.attr("data-row",a),this.$el.data("row",a)},RepeaterRow.prototype.toggleMinimize=function(){this.$el.toggleClass("minimized"),this.$minimizer.find(".repeater-minimize").toggleClass("dashicons-arrow-up"),this.$minimizer.find(".repeater-minimize").toggleClass("dashicons-arrow-down")},RepeaterRow.prototype.minimize=function(){this.$el.addClass("minimized"),this.$minimizer.find(".repeater-minimize").removeClass("dashicons-arrow-up"),this.$minimizer.find(".repeater-minimize").addClass("dashicons-arrow-down")},RepeaterRow.prototype.remove=function(){confirm("Are you sure?")&&(this.$el.slideUp(300,function(){jQuery(this).detach()}),this.$el.trigger("row:remove",[this.getRowIndex()]))},RepeaterRow.prototype.renderNumber=function(){this.$number.text(this.getRowNumber())},wp.customize.controlConstructor.repeater=wp.customize.Control.extend({ready:function(){var a=this,b=this.params.value;if(this.settingField=this.container.find("[data-customize-setting-link]").first(),this.setValue([],!1),this.repeaterFieldsContainer=this.container.find(".repeater-fields").first(),this.currentIndex=0,this.rows=[],void 0!==this.params.choices.limit)if(this.params.choices.limit<=0)var c=!1;else var c=parseInt(this.params.choices.limit);else var c=!1;if(this.container.on("click","button.repeater-add",function(b){b.preventDefault(),!c||a.currentIndex<c?a.addRow():jQuery(a.selector+" .limit").toggleClass("highlight")}),this.container.on("click keypress",".repeater-field-image .upload-button",function(b){b.preventDefault(),a.$thisButton=jQuery(this),a.openFrame(b)}),this.container.on("click keypress",".repeater-field-image .remove-button",function(b){b.preventDefault(),a.$thisButton=jQuery(this),a.removeImage(b)}),this.repeaterTemplate=_.memoize(function(){var b,c={evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g,variable:"data"};return function(d){return(b=_.template(a.container.find(".customize-control-repeater-content").first().html(),null,c))(d)}}),b.length)for(var d=0;d<b.length;d++)a.addRow(b[d]);this.repeaterFieldsContainer.sortable({handle:".repeater-row-move",update:function(b,c){a.sort()}})},openFrame:function(a){wp.customize.utils.isKeydownButNotEnterEvent(a)||(this.frame||this.initFrame(),this.frame.open())},initFrame:function(){var a=this;this.frame=wp.media({states:[new wp.media.controller.Library({library:wp.media.query({type:"image"}),multiple:!1,date:!1})]}),this.frame.on("select",function(b){a.selectImage()})},selectImage:function(){var a=this.frame.state().get("selection").first().toJSON(),b=a.url,c=this.$thisButton.closest(".repeater-field-image");c.find(".kirki-image-attachment").html('<img src="'+b+'">').hide().slideDown("slow"),c.find(".hidden-field").val(b),this.$thisButton.text(this.$thisButton.data("alt-label")),c.find(".remove-button").show(),c.find("input, textarea, select").trigger("change")},removeImage:function(a){if(!wp.customize.utils.isKeydownButNotEnterEvent(a)){var b=this.$thisButton.closest(".repeater-field-image"),c=b.find(".upload-button");b.find(".kirki-image-attachment").slideUp("fast",function(){jQuery(this).show().html(jQuery(this).data("placeholder"))}),b.find(".hidden-field").val(""),c.text(c.data("label")),this.$thisButton.hide(),b.find("input, textarea, select").trigger("change")}},getValue:function(){return JSON.parse(decodeURI(this.setting.get()))},setValue:function(a,b){this.setting.set(encodeURI(JSON.stringify(a))),b&&this.settingField.trigger("change")},addRow:function(a){var b,c,d=this,e=d.repeaterTemplate(),f=this.getValue(),g={};if(e){if(c=jQuery.extend(!0,{},d.params.fields),a)for(b in a)a.hasOwnProperty(b)&&c.hasOwnProperty(b)&&(c[b]["default"]=a[b]);c.index=this.currentIndex,c.ControlId=this.id,e=e(c);var h=new RepeaterRow(d.currentIndex,jQuery(e).appendTo(d.repeaterFieldsContainer));h.getElement().one("row:remove",function(a,b){d.deleteRow(b)}),h.getElement().on("row:update",function(a,b,c,e){d.updateField.call(d,a,b,c,e)}),h.getElement().on("row:start-dragging",function(){for(b in d.rows)d.rows.hasOwnProperty(b)&&d.rows[b]&&d.rows[b].minimize()}),this.rows[this.currentIndex]=h;for(b in c)c.hasOwnProperty(b)&&(g[b]=c[b]["default"]);f[this.currentIndex]=g,this.setValue(f,!0),this.currentIndex++}},sort:function(){var a=this,b=this.repeaterFieldsContainer.find(".repeater-row"),c=[];b.each(function(a,b){c.push(jQuery(b).data("row"))});var d=a.getValue(),e=[],f=[];jQuery.each(c,function(b,c){e[b]=a.rows[c],e[b].setRowIndex(b),e[b].setRowNumber(b+1),f[b]=d[c]}),a.rows=e,a.setValue(f)},deleteRow:function(a){var b=this.getValue();if(b[a]){var c=this.rows[a];c&&(delete b[a],delete this.rows[a],this.setValue(b,!0))}var d=1;for(prop in this.rows)this.rows.hasOwnProperty(prop)&&this.rows[prop]&&(this.rows[prop].setRowNumber(d),d++)},updateField:function(a,b,c,d){if(this.rows[b]&&this.params.fields[c]){var e=this.params.fields[c].type,f=this.rows[b],g=this.getValue();d=jQuery(d),void 0!=typeof g[f.getRowIndex()][c]&&("checkbox"==e?g[f.getRowIndex()][c]=d.is(":checked"):g[f.getRowIndex()][c]=d.val(),this.setValue(g,!0))}}}),wp.customize.controlConstructor["kirki-select"]=wp.customize.Control.extend({ready:function(){var a=this,b=this.container.find("select"),c=parseInt(b.data("multiple"));c>1?jQuery(b).selectize({maxItems:c,plugins:["remove_button","drag_drop"]}):jQuery(b).selectize(),this.container.on("change","select",function(){if(c>1)var b=kirkiArrayToObject(jQuery(this).val());else var b=jQuery(this).val();a.setting.set(b)})}}),jQuery(document).ready(function(a){a("input[type=range]").on("mousedown",function(){value=a(this).attr("value"),a(this).mousemove(function(){value=a(this).attr("value"),a(this).closest("label").find(".kirki_range_value .value").text(value)})}),a(".kirki-slider-reset").click(function(){var b=a(this).closest("label").find("input"),c=(b.data("customize-setting-link"),b.data("reset_value"));b.val(c),b.change(),a(this).closest("label").find(".kirki_range_value .value").text(c)})}),wp.customize.controlConstructor.slider=wp.customize.Control.extend({ready:function(){var a=this;this.container.on("change","input",function(){a.setting.set(jQuery(this).val())})}}),wp.customize.controlConstructor.sortable=wp.customize.Control.extend({ready:function(){var a=this;this.settingField=this.container.find("[data-customize-setting-link]").first(),this.sortableContainer=this.container.find("ul.sortable").first(),this.setValue(this.setting.get(),!1),this.sortableContainer.sortable().disableSelection().on("sortstop",function(b,c){a.sort()}).find("li").each(function(){jQuery(this).find("i.visibility").click(function(){jQuery(this).toggleClass("dashicons-visibility-faint").parents("li:eq(0)").toggleClass("invisible")})}).click(function(){a.sort()})},sort:function(){var a=[];this.sortableContainer.find("li").each(function(){var b=jQuery(this);b.is(".invisible")||a.push(b.data("value"))}),this.setValue(a,!0)},getValue:function(){return unserialize(this.setting.get())},setValue:function(a,b){a=serialize(a),this.setting.set(a),this.settingField.val(a),b&&this.settingField.trigger("change")}}),wp.customize.controlConstructor.spacing=wp.customize.Control.extend({ready:function(){var a=this,b={};jQuery.each(["top","bottom","left","right"],function(c,d){a.container.has("."+d).size()&&(b[d]=a.setting._value[d],!1===kirkiValidateCSSValue(a.setting._value[d])?jQuery(a.selector+" ."+d+".input-wrapper").addClass("invalid"):jQuery(a.selector+" ."+d+".input-wrapper").removeClass("invalid")),a.container.has("."+d).size()&&a.container.on("change keyup paste","."+d+" input",function(){subValue=jQuery(this).val(),!1===kirkiValidateCSSValue(subValue)?jQuery(a.selector+" ."+d+".input-wrapper").addClass("invalid"):(jQuery(a.selector+" ."+d+".input-wrapper").removeClass("invalid"),b[d]=subValue,a.setting.set(b),wp.customize.previewer.refresh())})})}}),wp.customize.controlConstructor["switch"]=wp.customize.Control.extend({ready:function(){var a=this,b=a.setting._value;this.container.on("change","input",function(){b=!!jQuery(this).is(":checked"),a.setting.set(b)})}}),wp.customize.controlConstructor.toggle=wp.customize.Control.extend({ready:function(){var a=this,b=a.setting._value;this.container.on("change","input",function(){b=!!jQuery(this).is(":checked"),a.setting.set(b)})}}),wp.customize.controlConstructor.typography=wp.customize.Control.extend({ready:function(){var a=this,b=a.selector+" .font-family select",c=a.selector+" .variant select",d=a.selector+" .subset select",e={};e["font-family"]=void 0!==a.setting._value["font-family"]?a.setting._value["font-family"]:"",e["font-size"]=void 0!==a.setting._value["font-size"]?a.setting._value["font-size"]:"",e.variant=void 0!==a.setting._value.variant?a.setting._value.variant:"",e.subset=void 0!==a.setting._value.subset?a.setting._value.subset:"",e["line-height"]=void 0!==a.setting._value["line-height"]?a.setting._value["line-height"]:"",e["letter-spacing"]=void 0!==a.setting._value["letter-spacing"]?a.setting._value["letter-spacing"]:"",e.color=void 0!==a.setting._value.color?a.setting._value.color:"";var f=function(b,f,g){subSelector="variant"==f?c:d;var h=!1,i={};void 0!==jQuery(subSelector).selectize()[0]&&jQuery(subSelector).selectize()[0].selectize.destroy();for(var j=0,k=kirkiAllFonts.length;k>j;j++)b===kirkiAllFonts[j].family&&(void 0!==kirkiAllFonts[j].is_standard&&!0===kirkiAllFonts[j].is_standard&&(h=!0),i=kirkiAllFonts[j][f+"s"]);if(!1===h||"subset"!==f){if(null===g){if("variant"==f)for(var j=0,k=i.length;k>j;j++)if(void 0!==i[j].id)var l=e.variant;else{var m="regular";if(m==i[j].id)var n=!0;else if(void 0===o)var o=i[j].id}else if("subset"==f){for(var p={},j=0,k=i.length;k>j;j++)if(null!==e.subset)for(var q=0,k=e.subset.length;k>q;q++)void 0!==i[j]&&e.subset[q]==i[j].id&&(p[e.subset[q]]=e.subset[q]);if(0==p.length)l=["latin"];else{var r=jQuery.map(p,function(a,b){return[a]});l=r}}subValue=void 0!==l?l:void 0!==n?"regular":o}else subValue=g;var s;s=jQuery(subSelector).selectize({maxItems:"variant"==f?1:null,valueField:"id",labelField:"label",searchField:["label"],options:i,items:"variant"==f?[subValue]:subValue,create:!1,plugins:"variant"==f?"":["remove_button"],render:{item:function(a,b){return"<div>"+b(a.label)+"</div>"},option:function(a,b){return"<div>"+b(a.label)+"</div>"}}}).data("selectize")}"variant"==f?1===i.length||0===i.length?a.container.find(".kirki-variant-wrapper").css("display","none"):a.container.find(".kirki-variant-wrapper").css("display","block"):"subset"==f&&(0===i.length?a.container.find(".kirki-subset-wrapper").css("display","none"):a.container.find(".kirki-subset-wrapper").css("display","block")),!0===h?a.container.find(".hide-on-standard-fonts").css("display","none"):a.container.find(".hide-on-standard-fonts").css("display","block")};jQuery(b).selectize({options:kirkiAllFonts,items:[a.setting._value["font-family"]],persist:!1,maxItems:1,valueField:"family",labelField:"label",searchField:["family","label","subsets"],create:!1,render:{item:function(a,b){return"<div>"+b(a.label)+"</div>"},option:function(a,b){return"<div>"+b(a.label)+"</div>"}}}),f(e["font-family"],"variant",e.variant),f(e["font-family"],"subset",e.subset),this.container.on("change",".font-family select",function(){e["font-family"]=jQuery(this).val(),a.setting.set(e),f(jQuery(this).val(),"variant",null),f(jQuery(this).val(),"subset",null),wp.customize.previewer.refresh()}),this.container.on("change",".variant select",function(){e.variant=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change",".subset select",function(){e.subset=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change keyup paste",".font-size input",function(){e["font-size"]=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change keyup paste",".line-height input",function(){e["line-height"]=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()}),this.container.on("change keyup paste",".letter-spacing input",function(){e["letter-spacing"]=jQuery(this).val(),a.setting.set(e),wp.customize.previewer.refresh()});var g=this.container.find(".kirki-color-control");g.wpColorPicker({change:function(){setTimeout(function(){e.color=g.val(),a.setting.set(e),wp.customize.previewer.refresh()},100)}})}});
|
2 |
//# sourceMappingURL=customizer.min.js.map
|
assets/js/customizer.min.js.map
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"version":3,"sources":["customizer.js"],"names":["kirkiArrayToObject","arr","obj","i","length","undefined","kirkiObjectToArray","push","kirkiValidateCSSValue","value","valueIsValid","validUnits","numericValue","parseFloat","unit","replace","NaN","jQuery","inArray","RepeaterRow","rowIndex","element","this","rowNumber","$el","$dragger","find","$minimizer","$remover","$number","$fields","self","on","toggleMinimize","remove","trigger","e","getRowIndex","target","data","renderNumber","wp","customize","controlConstructor","Control","extend","ready","control","checkbox_value","setting","_value","container","is","set","id","editor","CodeMirror","fromTextArea","params","choices","language","name","setOption","theme","height","getValue","parents","refresh","picker","val","wpColorPicker","change","event","ui","setTimeout","selector","addClass","removeClass","$","customizerCtrlEditor","init","window","load","each","setChange","content","tArea","attr","tinyMCE","get","onChange","add","ed","save","getContent","clearTimeout","css","visibility","compiled_value","key","previewer","spinner","min","max","step","selectize","select_value","preset_setting","preset_setting_value","sub_control","settings","controls","sub_control_type","input_element","prop","instance","$select","setValue","numeric_element","html","alphaColorControl","numeric_value","select_element","units_value","index","prototype","getRowNumber","setRowNumber","getElement","setRowIndex","toggleClass","minimize","confirm","slideUp","detach","text","settingValue","settingField","first","repeaterFieldsContainer","currentIndex","rows","limit","parseInt","preventDefault","addRow","$thisButton","openFrame","removeImage","repeaterTemplate","_","memoize","compiled","options","evaluate","interpolate","escape","variable","template","sortable","handle","update","sort","utils","isKeydownButNotEnterEvent","frame","initFrame","open","media","states","controller","Library","library","query","type","multiple","date","selectImage","attachment","state","toJSON","image_src","url","$targetDiv","closest","hide","slideDown","show","$uploadButton","JSON","parse","decodeURI","newValue","encodeURI","stringify","templateData","newRowSetting","fields","hasOwnProperty","newRow","appendTo","one","deleteRow","fieldName","updateField","call","$rows","newOrder","newRows","newSettings","newPosition","oldPosition","currentSettings","row","fieldId","maxItems","plugins","document","mousemove","click","$this_input","input_default","sortableContainer","disableSelection","$this","unserialize","serialize","dimension","has","size","subValue","fontFamilySelector","variantSelector","subsetSelector","renderSubControl","fontFamily","sub","startValue","subSelector","is_standard","subList","destroy","len","kirkiAllFonts","activeItem","defaultValue","hasDefault","firstAvailable","subsetValues","s","subsetValuesArray","map","subSelectize","valueField","labelField","searchField","items","create","render","item","label","option","persist"],"mappings":"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","file":"customizer.min.js"}
|
1 |
+
{"version":3,"sources":["customizer.js"],"names":["kirkiArrayToObject","arr","obj","i","length","undefined","kirkiObjectToArray","push","kirkiValidateCSSValue","value","valueIsValid","validUnits","numericValue","parseFloat","unit","replace","NaN","jQuery","inArray","RepeaterRow","rowIndex","element","this","rowNumber","$el","$dragger","find","$minimizer","$remover","$number","$fields","self","on","toggleMinimize","remove","trigger","e","getRowIndex","target","data","renderNumber","wp","customize","controlConstructor","Control","extend","ready","control","checkbox_value","setting","_value","container","is","set","id","editor","CodeMirror","fromTextArea","params","choices","language","name","setOption","theme","height","getValue","parents","refresh","picker","val","wpColorPicker","change","event","ui","setTimeout","selector","addClass","removeClass","$","customizerCtrlEditor","init","window","load","each","setChange","content","tArea","attr","tinyMCE","get","onChange","add","ed","save","getContent","clearTimeout","css","visibility","compiled_value","key","previewer","spinner","min","max","step","selectize","select_value","preset_setting","preset_setting_value","sub_control","settings","controls","sub_control_type","input_element","prop","instance","$select","setValue","numeric_element","html","alphaColorControl","numeric_value","select_element","units_value","index","prototype","getRowNumber","setRowNumber","getElement","setRowIndex","toggleClass","minimize","confirm","slideUp","detach","text","settingValue","settingField","first","repeaterFieldsContainer","currentIndex","rows","limit","parseInt","preventDefault","addRow","$thisButton","openFrame","removeImage","repeaterTemplate","_","memoize","compiled","options","evaluate","interpolate","escape","variable","template","sortable","handle","update","sort","utils","isKeydownButNotEnterEvent","frame","initFrame","open","media","states","controller","Library","library","query","type","multiple","date","selectImage","attachment","state","toJSON","image_src","url","$targetDiv","closest","hide","slideDown","show","$uploadButton","JSON","parse","decodeURI","newValue","encodeURI","stringify","templateData","newRowSetting","fields","hasOwnProperty","newRow","appendTo","one","deleteRow","fieldName","updateField","call","$rows","newOrder","newRows","newSettings","newPosition","oldPosition","currentSettings","row","fieldId","maxItems","plugins","document","mousemove","click","$this_input","input_default","sortableContainer","disableSelection","$this","unserialize","serialize","dimension","has","size","subValue","fontFamilySelector","variantSelector","subsetSelector","renderSubControl","fontFamily","sub","startValue","subSelector","is_standard","subList","destroy","len","kirkiAllFonts","activeItem","defaultValue","hasDefault","firstAvailable","subsetValues","s","subsetValuesArray","map","subSelectize","valueField","labelField","searchField","items","create","render","item","label","option","persist"],"mappings":"AAAA,QAASA,oBAAoBC,GAC5B,GAAIC,KACJ,IAAK,OAASD,EACb,IAAM,GAAIE,GAAI,EAAGA,EAAIF,EAAIG,SAAUD,EAC7BE,SAAcJ,EAAKE,KACvBD,EAAKC,GAAMF,EAAKE,GAInB,OAAOD,GAGR,QAASI,oBAAoBJ,GAC5B,GAAID,KACJ,IAAK,OAASC,EACb,IAAM,GAAIC,GAAI,EAAGA,EAAID,EAAIE,SAAUD,EAC7BE,SAAcH,EAAKC,IACvBF,EAAIM,KAAML,EAAKC,GAIlB,OAAOF,GAGR,QAASO,uBAAuBC,GAC/B,GAAIC,IAAe,CAEnB,IAAK,KAAOD,EACX,OAAO,CAGR,IAAIE,IAAgB,MAAO,KAAM,KAAM,IAAK,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,KAAM,OAAQ,QAEtGC,EAAeC,WAAYJ,GAE3BK,EAAOL,EAAMM,QAASH,EAAc,GAUxC,OARKI,OAAQJ,IACZF,GAAe,GAGX,KAAOO,OAAOC,QAASJ,EAAMH,KACjCD,GAAe,GAGTA,EAuhBR,QAASS,aAAaC,EAAUC,GAC5BC,KAAKF,SAAWA,EAChBE,KAAKC,UAAYH,EAAW,EAC5BE,KAAKE,IAAMH,EACXC,KAAKG,SAAWH,KAAKE,IAAIE,KAAM,sBAC/BJ,KAAKK,WAAaL,KAAKE,IAAIE,KAAM,0BACjCJ,KAAKM,SAAWN,KAAKE,IAAIE,KAAM,wBAC/BJ,KAAKO,QAAUP,KAAKE,IAAIE,KAAM,wBAC9BJ,KAAKQ,QAAUR,KAAKE,IAAIE,KAAM,wBAE9B,IAAIK,GAAOT,IAEXA,MAAKK,WAAWK,GAAI,QAAS,WACzBD,EAAKE,mBAGTX,KAAKM,SAASI,GAAI,QAAS,WACvBD,EAAKG,WAGTZ,KAAKG,SAASO,GAAI,YAAa,WAC3BD,EAAKP,IAAIW,QAAS,wBAItBb,KAAKE,IAAIQ,GAAI,eAAgB,0BAA2B,SAAUI,GAC9DL,EAAKP,IAAIW,QAAS,cAAgBJ,EAAKM,cAAepB,OAAQmB,EAAEE,QAASC,KAAM,SAAWH,EAAEE,WAGhGhB,KAAKkB,eA/iBTC,GAAGC,UAAUC,mBAAmB,kBAAoBF,GAAGC,UAAUE,QAAQC,QACxEC,MAAO,WACN,GAAIC,GAAUzB,KAGV0B,EAAiBD,EAAQE,QAAQC,MAErC5B,MAAK6B,UAAUnB,GAAI,SAAU,QAAS,WACrCgB,IAAmB/B,OAAQK,MAAO8B,GAAI,YACtCL,EAAQE,QAAQI,IAAKL,QAOxBP,GAAGC,UAAUC,mBAAyB,KAAIF,GAAGC,UAAUE,QAAQC,QAC9DC,MAAO,WACN,GAAIC,GAAUzB,KACVD,EAAU0B,EAAQI,UAAUzB,KAAM,4BAA8BqB,EAAQO,IACxEC,EAAUC,WAAWC,aAAcpC,EAAQ,GAE/C,IAAwC,QAAnC0B,EAAQW,OAAOC,QAAQC,SAC3B,GAAIA,IAAaC,KAAM,iBAEvBD,GAAWb,EAAQW,OAAOC,QAAQC,QAGnCL,GAAOO,UAAW,QAASf,EAAQE,QAAQC,QAC3CK,EAAOO,UAAW,OAAQF,GAC1BL,EAAOO,UAAW,eAAe,GACjCP,EAAOO,UAAW,QAASf,EAAQW,OAAOC,QAAQI,OAClDR,EAAOO,UAAW,SAAUf,EAAQW,OAAOC,QAAQK,OAAS,MAE5DT,EAAOvB,GAAG,SAAU,WACnBe,EAAQE,QAAQI,IAAKE,EAAOU,cAG7B5C,EAAQ6C,QAAQ,sBAAsBlC,GAAG,QAAS,WAC9CuB,EAAOY,eAOb1B,GAAGC,UAAUC,mBAAmB,eAAiBF,GAAGC,UAAUE,QAAQC,QACrEC,MAAO,WACN,GAAIC,GAAYzB,KACZ8C,EAAY9C,KAAK6B,UAAUzB,KAAM,uBACrB0C,GAAOC,KAElBhE,UAAc0C,EAAQW,OAAOC,SACjCS,EAAOE,cAAevB,EAAQW,OAAOC,SAGtCS,EAAOE,eACNC,OAAQ,SAAUC,EAAOC,GACxBC,WAAY,WACX3B,EAAQE,QAAQI,IAAKe,EAAOC,QAC1B,WAQP5B,GAAGC,UAAUC,mBAA8B,UAAIF,GAAGC,UAAUE,QAAQC,QACnEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,QAAS,QAAS,WACpCe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAOvC5B,GAAGC,UAAUC,mBAA8B,UAAIF,GAAGC,UAAUE,QAAQC,QACnEC,MAAO,WACN,GAAIC,GAAUzB,MAGT,IAAUd,sBAAuBuC,EAAQE,QAAQC,QACrDjC,OAAQ8B,EAAQ4B,SAAW,mBAAoBC,SAAU,WAEzD3D,OAAQ8B,EAAQ4B,SAAW,mBAAoBE,YAAa,WAG7DvD,KAAK6B,UAAUnB,GAAI,qBAAsB,QAAS,WACjD,GAAIvB,GAAQQ,OAAQK,MAAO+C,OAEtB,IAAU7D,sBAAuBC,GACrCQ,OAAQ8B,EAAQ4B,SAAW,mBAAoBC,SAAU,YAEzD3D,OAAQ8B,EAAQ4B,SAAW,mBAAoBE,YAAa,WAE5D9B,EAAQE,QAAQI,IAAK5C,SAQzB,SAAYqE,GACXrC,GAAGsC,sBACFC,KAAM,WACLF,EAAGG,QAASC,KAAM,WACjBJ,EAAG,2BAA4BK,KAAM,WACpC,GAGCC,GACAC,EAJGC,EAASR,EAAGxD,MACZgC,EAASgC,EAAMC,KAAM,MACxBhC,EAASiC,QAAQC,IAAKnC,EAIlBC,IACJA,EAAOmC,SAASC,IAAK,SAASC,EAAIxD,GACjCwD,EAAGC,OACHR,EAAU9B,EAAOuC,aACjBC,aAAcX,GACdA,EAAYV,WAAY,WACvBY,EAAMjB,IAAKgB,GAAUlD,QAAS,WAC5B,OAILmD,EAAMU,KAAMC,WAAY,YAAajE,GAAG,QAAS,WAChDqD,EAAUC,EAAMjB,MAChB0B,aAAcX,GACdA,EAAYV,WAAY,WACvBW,EAAQlD,QAAS,WACf,aAMRM,GAAGsC,qBAAqBC,QACrB/D,QAIJwB,GAAGC,UAAUC,mBAAmB,iBAAmBF,GAAGC,UAAUE,QAAQC,QACvEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,qBAAsBe,EAAQW,OAAOC,QAAQtC,QAAS,WACxE0B,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAOvC5B,GAAGC,UAAUC,mBAA+B,WAAIF,GAAGC,UAAUE,QAAQC,QACpEC,MAAO,WACN,GAAIC,GAAUzB,IAGdyB,GAAQI,UAAUnB,GAAI,SAAU,QAAS,WACxC,GAAIkE,MACA/F,EAAI,CACRc,QAAOkE,KAAMpC,EAAQW,OAAOC,QAAS,SAAUwC,EAAK1F,GAC9CsC,EAAQI,UAAUzB,KAAM,gBAAkByE,EAAM,MAAO/C,GAAI,cAC/D8C,EAAe/F,GAAKgG,EACpBhG,OAGF4C,EAAQE,QAAQI,IAAK6C,GACrBzD,GAAGC,UAAU0D,UAAUjC,eAO1B1B,GAAGC,UAAUC,mBAA2B,OAAIF,GAAGC,UAAUE,QAAQC,QAChEC,MAAO,WACN,GAAIC,GAAUzB,KACVD,EAAUC,KAAK6B,UAAUzB,KAAM,QAEnCT,QAAQI,GAAUgF,UACbtD,EAAQW,OAAOC,QAAQ2C,KAC3BrF,OAAQI,GAAUgF,QAAS,SAAU,MAAOtD,EAAQW,OAAOC,QAAQ2C,KAE/DvD,EAAQW,OAAOC,QAAQ4C,KAC3BtF,OAAQI,GAAUgF,QAAS,SAAU,MAAOtD,EAAQW,OAAOC,QAAQ4C,KAE/DxD,EAAQW,OAAOC,QAAQ6C,OACtB,OAASzD,EAAQW,OAAOC,QAAQ6C,KACpCvF,OAAQI,GAAUgF,QAAS,SAAU,OAAQ,SAE7CpF,OAAQI,GAAUgF,QAAS,SAAU,OAAQtD,EAAQW,OAAOC,QAAQ6C,OAItElF,KAAK6B,UAAUnB,GAAI,2BAA4B,QAAS,WACvDe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAOvC5B,GAAGC,UAAUC,mBAA4B,QAAIF,GAAGC,UAAUE,QAAQC,QACjEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,QAAS,QAAS,WACpCe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAQvC5B,GAAGC,UAAUC,mBAA2B,OAAIF,GAAGC,UAAUE,QAAQC,QAChEC,MAAO,WACN,GAAIC,GAAUzB,KACVD,EAAUC,KAAK6B,UAAUzB,KAAM,SAEnCT,QAAQI,GAAUoF,YAElBnF,KAAK6B,UAAUnB,GAAI,SAAU,SAAU,WAKtC,GAAI0E,GAAezF,OAAQK,MAAO+C,KAIlCtB,GAAQE,QAAQI,IAAKqD,GAKrBzF,OAAOkE,KAAMpC,EAAQW,OAAOC,QAAS,SAAUwC,EAAK1F,GAM9CiG,GAAgBP,GAKpBlF,OAAOkE,KAAM1E,EAAgB,SAAG,SAAUkG,EAAgBC,GAMzD,GAAIC,GAAcpE,GAAGC,UAAUoE,SAASC,SAAUJ,EAKlD,IAA4BtG,eAAhBwG,GACX,OAAO,CAQR,IAAIG,GAAmBH,EAAkB,IAczC,IAAK,YAAcG,GAAoB,UAAYA,GAAoB,UAAYA,GAAoB,kBAAoBA,EAAmB,CAE7I,GAAIC,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,QACtE,IAAKkF,GAIT3F,OAAQgG,GAAgBC,KAAM,WAAW,GAIzCzE,GAAGC,UAAUyE,SAAUR,GAAiBtD,KAAK,KAK7CpC,OAAQgG,GAAgBC,KAAM,WAAW,GAIzCzE,GAAGC,UAAUyE,SAAUR,GAAiBtD,KAAK,QAW1C,IAAK,UAAY2D,GAAoB,WAAaA,GAAoB,oBAAsBA,GAAoB,gBAAkBA,EAAmB,CAKzJ,GAAIC,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,UACvE0F,EAAUnG,OAAQgG,GAAgBR,YAClCA,EAAYW,EAAQ,GAAGX,SAC3BA,GAAUY,SAAUT,GAAsB,GAI1CnE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,OAOzC,IAAK,UAAYI,EAAmB,CAKxC,GAAIC,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,QAC3ET,QAAQgG,GAAgBC,KAAM,QAASN,EAIvC,IAAIU,GAAkB7E,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,4BAC7ET,QAAQqG,GAAkBC,KAAMX,GAIhCnE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,OAQzC,IAAK,YAAcI,GAAoB,kBAAoBA,EAAmB,CAKlF,GAAIC,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,WAC3ET,QAAQgG,GAAgBC,KAAM,QAASN,GAIvCnE,GAAGC,UAAWiE,GAAiBtD,IAAKuD,OAShC,IAAK,eAAiBI,GAAoB,eAAiBA,GAAoB,SAAWA,EAAmB,CAKjH,GAAIQ,GAAoB/E,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,uBAE/E8F,GACEjC,KAAM,qBAAsBqB,GAC5BrE,KAAM,gBAAiBqE,GACvBtC,cAAe,QAASsC,GAK1BnE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,OAOzC,IAAK,aAAeI,EAAmB,CAK3CvE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,EAI7C,IAAIK,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,sBACvE+F,EAAgB5G,WAAY+F,EAChC3F,QAAQgG,GAAgBC,KAAM,QAASO,EAIvC,IAAIC,GAAiBjF,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,UACxEiG,EAAiBf,EAAqB7F,QAASF,WAAY+F,GAAwB,GACvF3F,QAAQyG,GAAiBR,KAAM,QAASS,OAOpC,IAAK,cAAgBX,EAkBzB,IAbAvE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,GAS7CnE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,SAAUyD,KAAK,WACrElE,OAAQK,MAAO4F,KAAM,WAAW,KAG3BU,MAAQ,EAAGA,MAAQhB,EAAqBxG,OAAQwH,QAAU,CAC/D,GAAIX,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,gBAAkBkF,EAAsBgB,OAAU,KAC7H3G,QAAQgG,GAAgBC,KAAM,WAAW,OAWtC,IAAK,mBAAqBF,GAAoB,eAAiBA,GAAoB,SAAWA,GAAoB,eAAiBA,EAAmB,CAK1J,GAAIC,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,gBAAkBkF,EAAuB,KACpH3F,QAAQgG,GAAgBC,KAAM,WAAW,GAIzCzE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,OAMzC,CAKJ,GAAIK,GAAgBxE,GAAGC,UAAUK,QAAS4D,GAAiBxD,UAAUzB,KAAM,QAC3ET,QAAQgG,GAAgBC,KAAM,QAASN,GAIvCnE,GAAGC,UAAUyE,SAAUR,GAAiBtD,IAAKuD,QAUjDnE,GAAGC,UAAU0D,UAAUjC,eAS1B1B,GAAGC,UAAUC,mBAAmB,mBAAqBF,GAAGC,UAAUE,QAAQC,QACzEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,QAAS,QAAS,WACpCe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAOvC5B,GAAGC,UAAUC,mBAAmB,eAAiBF,GAAGC,UAAUE,QAAQC,QACrEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,QAAS,QAAS,WACpCe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAOvC5B,GAAGC,UAAUC,mBAAmB,eAAiBF,GAAGC,UAAUE,QAAQC,QACrEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,SAAU,QAAS,WACrCe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAwCvClD,YAAY0G,UAAUxF,YAAc,WAChC,MAAOf,MAAKF,UAIhBD,YAAY0G,UAAUC,aAAe,WACjC,MAAOxG,MAAKC,WAGhBJ,YAAY0G,UAAUE,aAAe,SAAUxG,GAC3CD,KAAKC,UAAYA,EACjBD,KAAKkB,gBAGTrB,YAAY0G,UAAUG,WAAa,WAC/B,MAAO1G,MAAKE,KAGhBL,YAAY0G,UAAUI,YAAc,SAAU7G,GAC1CE,KAAKF,SAAWA,EAChBE,KAAKE,IAAI+D,KAAM,WAAYnE,GAC3BE,KAAKE,IAAIe,KAAM,MAAOnB,IAG1BD,YAAY0G,UAAU5F,eAAiB,WAEnCX,KAAKE,IAAI0G,YAAa,aACtB5G,KAAKK,WAAWD,KAAM,sBAAuBwG,YAAa,sBAC1D5G,KAAKK,WAAWD,KAAM,sBAAsBwG,YAAa,yBAG7D/G,YAAY0G,UAAUM,SAAW,WAC7B7G,KAAKE,IAAIoD,SAAU,aACnBtD,KAAKK,WAAWD,KAAM,sBAAuBmD,YAAa,sBAC1DvD,KAAKK,WAAWD,KAAM,sBAAsBkD,SAAU,yBAG1DzD,YAAY0G,UAAU3F,OAAS,WACtBkG,QAAS,mBACV9G,KAAKE,IAAI6G,QAAS,IAAK,WACnBpH,OAAOK,MAAMgH,WAEjBhH,KAAKE,IAAIW,QAAS,cAAgBb,KAAKe,kBAI/ClB,YAAY0G,UAAUrF,aAAe,WACjClB,KAAKO,QAAQ0G,KAAMjH,KAAKwG,iBAG5BrF,GAAGC,UAAUC,mBAA6B,SAAIF,GAAGC,UAAUE,QAAQC,QAC/DC,MAAO,WACH,GAAIC,GAAUzB,KAGVkH,EAAelH,KAAKoC,OAAOjD,KAkB/B,IAfAa,KAAKmH,aAAenH,KAAK6B,UAAUzB,KAAK,iCAAiCgH,QAGzEpH,KAAK+F,aAAc,GAGnB/F,KAAKqH,wBAA0BrH,KAAK6B,UAAUzB,KAAK,oBAAoBgH,QAGvEpH,KAAKsH,aAAe,EAGpBtH,KAAKuH,QAG8BxI,SAA9BiB,KAAKoC,OAAOC,QAAQmF,MACrB,GAAKxH,KAAKoC,OAAOC,QAAQmF,OAAS,EAC9B,GAAIA,IAAQ,MAEZ,IAAIA,GAAQC,SAASzH,KAAKoC,OAAOC,QAAQmF,WAG7C,IAAIA,IAAQ,CAkDhB,IA/CAxH,KAAK6B,UAAUnB,GAAG,QAAS,sBAAuB,SAAUI,GACxDA,EAAE4G,kBACIF,GAAS/F,EAAQ6F,aAAeE,EAClC/F,EAAQkG,SAERhI,OAAQ8B,EAAQ4B,SAAW,WAAYuD,YAAa,eAI5D5G,KAAK6B,UAAUnB,GAAG,iBAAkB,uCAAwC,SAAUI,GAClFA,EAAE4G,iBACFjG,EAAQmG,YAAcjI,OAAOK,MAC7ByB,EAAQoG,UAAU/G,KAGtBd,KAAK6B,UAAUnB,GAAG,iBAAkB,uCAAwC,SAAUI,GAClFA,EAAE4G,iBACFjG,EAAQmG,YAAcjI,OAAOK,MAC7ByB,EAAQqG,YAAYhH,KAMxBd,KAAK+H,iBAAmBC,EAAEC,QAAQ,WAC9B,GAAIC,GAOAC,GACIC,SAAU,kBACVC,YAAa,0BACbC,OAAQ,2BACRC,SAAU,OAGlB,OAAO,UAAUtH,GAEb,OADAiH,EAAWF,EAAEQ,SAAS/G,EAAQI,UAAUzB,KAAK,uCAAuCgH,QAAQnB,OAAQ,KAAMkC,IAC1FlH,MAMpBiG,EAAapI,OACb,IAAK,GAAID,GAAI,EAAGA,EAAIqI,EAAapI,OAAQD,IACrC4C,EAAQkG,OAAOT,EAAarI,GAIpCmB,MAAKqH,wBAAwBoB,UACzBC,OAAQ,qBACRC,OAAQ,SAAU7H,EAAGqC,GACjB1B,EAAQmH,WASpBf,UAAW,SAAU3E,GACZ/B,GAAGC,UAAUyH,MAAMC,0BAA2B5F,KAE5ClD,KAAK+I,OACR/I,KAAKgJ,YAGThJ,KAAK+I,MAAME,SAGfD,UAAY,WAER,GAAIvH,GAAUzB,IAEdA,MAAK+I,MAAQ5H,GAAG+H,OACZC,QACI,GAAIhI,IAAG+H,MAAME,WAAWC,SACpBC,QAAWnI,GAAG+H,MAAMK,OAAQC,KAAM,UAClCC,UAAW,EACXC,MAAW,OAMvB1J,KAAK+I,MAAMrI,GAAI,SAAU,SAASI,GAC9BW,EAAQkI,iBAIhBA,YAAc,WAEV,GAAIC,GAAa5J,KAAK+I,MAAMc,QAAQ1F,IAAK,aAAciD,QAAQ0C,SAE3DC,EAAYH,EAAWI,IAEvBC,EAAajK,KAAK4H,YAAYsC,QAAQ,wBAE1CD,GAAW7J,KAAK,2BAA2B6F,KAAM,aAAc8D,EAAW,MACzEI,OAAOC,UAAU,QAClBH,EAAW7J,KAAK,iBAAiB2C,IAAIgH,GACrC/J,KAAK4H,YAAYX,KAAMjH,KAAK4H,YAAY3G,KAAK,cAC7CgJ,EAAW7J,KAAK,kBAAkBiK,OAGlCJ,EAAW7J,KAAK,2BAA2BS,QAAQ,WAGvDiH,YAAc,SAAU5E,GAEpB,IAAK/B,GAAGC,UAAUyH,MAAMC,0BAA2B5F,GAAnD,CAEA,GAAI+G,GAAajK,KAAK4H,YAAYsC,QAAQ,yBACtCI,EAAgBL,EAAW7J,KAAK,iBAEpC6J,GAAW7J,KAAK,2BAA2B2G,QAAS,OAAQ,WACxDpH,OAAOK,MAAMqK,OAAOpE,KAAMtG,OAAOK,MAAMiB,KAAK,kBAEhDgJ,EAAW7J,KAAK,iBAAiB2C,IAAI,IACrCuH,EAAcrD,KAAKqD,EAAcrJ,KAAK,UACtCjB,KAAK4H,YAAYuC,OAEjBF,EAAW7J,KAAK,2BAA2BS,QAAQ,YASvD8B,SAAU,WAEN,MAAO4H,MAAKC,MAAOC,UAAWzK,KAAK2B,QAAQwC,SAS/C4B,SAAU,SAAU2E,EAAU7H,GAC1B7C,KAAK2B,QAAQI,IAAK4I,UAAWJ,KAAKK,UAAWF,KAExC7H,GAGD7C,KAAKmH,aAAatG,QAAQ,WASlC8G,OAAQ,SAAU1G,GACd,GACIpC,GAaAgM,EAdApJ,EAAUzB,KAKVwI,EAAW/G,EAAQsG,mBAGnBb,EAAelH,KAAK2C,WAGpBmI,IAKJ,IAAKtC,EAAW,CAQZ,GAHAqC,EAAelL,OAAO4B,QAAQ,KAAUE,EAAQW,OAAO2I,QAGlD9J,EACD,IAAMpC,IAAKoC,GACFA,EAAK+J,eAAgBnM,IAAOgM,EAAaG,eAAgBnM,KAC1DgM,EAAahM,GAAbgM,WAA0B5J,EAAKpC,GAK3CgM,GAAoB,MAAI7K,KAAKsH,aAC7BuD,EAAwB,UAAI7K,KAAKgC,GAGjCwG,EAAWA,EAAUqC,EAGrB,IAAII,GAAS,GAAIpL,aACb4B,EAAQ6F,aACR3H,OAAQ6I,GAAW0C,SAAUzJ,EAAQ4F,yBAGzC4D,GAAOvE,aAAayE,IAAK,aAAc,SAAUrK,EAAGhB,GAChD2B,EAAQ2J,UAAWtL,KAGvBmL,EAAOvE,aAAahG,GAAI,aAAc,SAAUI,EAAGhB,EAAUuL,EAAWtL,GACpE0B,EAAQ6J,YAAYC,KAAM9J,EAASX,EAAGhB,EAAUuL,EAAWtL,KAG/DkL,EAAOvE,aAAahG,GAAI,qBAAsB,WAE1C,IAAM7B,IAAK4C,GAAQ8F,KACV9F,EAAQ8F,KAAKyD,eAAgBnM,IAAO4C,EAAQ8F,KAAK1I,IAClD4C,EAAQ8F,KAAK1I,GAAGgI,aAM5B7G,KAAKuH,KAAMvH,KAAKsH,cAAiB2D,CAEjC,KAAMpM,IAAKgM,GACFA,EAAaG,eAAgBnM,KAC9BiM,EAAejM,GAAMgM,EAAahM,GAAbgM,WAI7B3D,GAAalH,KAAKsH,cAAgBwD,EAClC9K,KAAK+F,SAAUmB,GAAc,GAE7BlH,KAAKsH,iBAMbsB,KAAM,WACF,GAAInH,GAAUzB,KACVwL,EAAQxL,KAAKqH,wBAAwBjH,KAAM,iBAC3CqL,IAEJD,GAAM3H,KAAM,SAAUhF,EAAGkB,GACrB0L,EAASxM,KAAMU,OAAQI,GAAUkB,KAAM,SAG3C,IAAIuE,GAAW/D,EAAQkB,WACnB+I,KACAC,IACJhM,QAAOkE,KAAM4H,EAAU,SAAUG,EAAaC,GAC1CH,EAASE,GAAgBnK,EAAQ8F,KAAMsE,GACvCH,EAASE,GAAcjF,YAAaiF,GACpCF,EAASE,GAAcnF,aAAcmF,EAAc,GAEnDD,EAAaC,GAAgBpG,EAAUqG,KAG3CpK,EAAQ8F,KAAOmE,EACfjK,EAAQsE,SAAU4F,IAQtBP,UAAW,SAAU9E,GACjB,GAAIwF,GAAkB9L,KAAK2C,UAE3B,IAAKmJ,EAAiBxF,GAAU,CAE5B,GAAIyF,GAAM/L,KAAKuH,KAAMjB,EAChByF,WAIMD,GAAgBxF,SAGhBtG,MAAKuH,KAAKjB,GAGjBtG,KAAK+F,SAAU+F,GAAiB,IAKxC,GAAIjN,GAAI,CACR,KAAM+G,OAAQ5F,MAAKuH,KACVvH,KAAKuH,KAAKyD,eAAgBpF,OAAU5F,KAAKuH,KAAM3B,QAChD5F,KAAKuH,KAAM3B,MAAOa,aAAc5H,GAChCA,MAWZyM,YAAa,SAAUxK,EAAGhB,EAAUkM,EAASjM,GACzC,GAAOC,KAAKuH,KAAMzH,IAGXE,KAAKoC,OAAO2I,OAAQiB,GAA3B,CAGA,GAAIxC,GAAOxJ,KAAKoC,OAAO2I,OAAQiB,GAASxC,KACpCuC,EAAM/L,KAAKuH,KAAMzH,GACjBgM,EAAkB9L,KAAK2C,UAC3B5C,GAAUJ,OAAQI,GAEwChB,cAA/C+M,GAAgBC,EAAIhL,eAAeiL,KAIjC,YAARxC,EACDsC,EAAgBC,EAAIhL,eAAeiL,GAAWjM,EAAQ+B,GAAI,YAI1DgK,EAAgBC,EAAIhL,eAAeiL,GAAWjM,EAAQgD,MAG1D/C,KAAK+F,SAAU+F,GAAiB,QAMxC3K,GAAGC,UAAUC,mBAAmB,gBAAkBF,GAAGC,UAAUE,QAAQC,QACtEC,MAAO,WACN,GAAIC,GAAUzB,KAEVD,EAAWC,KAAK6B,UAAUzB,KAAM,UAChCqJ,EAAWhC,SAAU1H,EAAQkB,KAAM,YAElCwI,GAAW,EACf9J,OAAQI,GAAUoF,WACjB8G,SAAUxC,EACVyC,SAAU,gBAAiB,eAG5BvM,OAAQI,GAAUoF,YAGnBnF,KAAK6B,UAAUnB,GAAI,SAAU,SAAU,WACtC,GAAK+I,EAAW,EACf,GAAIrE,GAAe1G,mBAAoBiB,OAAQK,MAAO+C,WAEtD,IAAIqC,GAAezF,OAAQK,MAAO+C,KAEnCtB,GAAQE,QAAQI,IAAKqD,QAOxBzF,OAAOwM,UAAU3K,MAAM,SAASgC,GAE/BA,EAAG,qBAAsB9C,GAAI,YAAa,WACzCvB,MAAQqE,EAAGxD,MAAOiE,KAAM,SACxBT,EAAGxD,MAAOoM,UAAU,WACnBjN,MAAQqE,EAAGxD,MAAOiE,KAAM,SACxBT,EAAGxD,MAAOkK,QAAS,SAAU9J,KAAM,6BAA8B6G,KAAM9H,WAIzEqE,EAAG,uBAAwB6I,MAAO,WACjC,GAAIC,GAAgB9I,EAAGxD,MAAOkK,QAAS,SAAU9J,KAAM,SAEtDmM,GADgBD,EAAYrL,KAAM,0BAClBqL,EAAYrL,KAAM,eAEnCqL,GAAYvJ,IAAKwJ,GACjBD,EAAYrJ,SACZO,EAAGxD,MAAOkK,QAAS,SAAU9J,KAAM,6BAA8B6G,KAAMsF,OAKzEpL,GAAGC,UAAUC,mBAA2B,OAAIF,GAAGC,UAAUE,QAAQC,QAChEC,MAAO,WACN,GAAIC,GAAUzB,IACdA,MAAK6B,UAAUnB,GAAI,SAAU,QAAS,WACrCe,EAAQE,QAAQI,IAAKpC,OAAQK,MAAO+C,YAOvC5B,GAAGC,UAAUC,mBAA6B,SAAIF,GAAGC,UAAUE,QAAQC,QAClEC,MAAO,WACN,GAAIC,GAAUzB,IAGdA,MAAKmH,aAAenH,KAAK6B,UAAUzB,KAAK,iCAAiCgH,QAGzEpH,KAAKwM,kBAAoBxM,KAAK6B,UAAUzB,KAAM,eAAegH,QAG7DpH,KAAK+F,SAAU/F,KAAK2B,QAAQwC,OAAO,GAInCnE,KAAKwM,kBAAkB/D,WACrBgE,mBACA/L,GAAG,WAAY,SAASwC,EAAOC,GAC/B1B,EAAQmH,SAERxI,KAAK,MAAMyD,KAAK,WAChBlE,OAAOK,MAAMI,KAAK,gBAAgBiM,MAAM,WACvC1M,OAAOK,MAAM4G,YAAY,8BAA8BhE,QAAQ,YAAYgE,YAAY,iBAGxFyF,MAAM,WACN5K,EAAQmH,UAOXA,KAAM,WACL,GAAI8B,KACJ1K,MAAKwM,kBAAkBpM,KAAM,MAAOyD,KAAM,WACzC,GAAI6I,GAAQ/M,OAAOK,KACZ0M,GAAM5K,GAAI,eAChB4I,EAASzL,KAAMyN,EAAMzL,KAAK,YAI5BjB,KAAK+F,SAAU2E,GAAU,IAQ1B/H,SAAU,WAET,MAAOgK,aAAa3M,KAAK2B,QAAQwC,QASlC4B,SAAU,SAAU2E,EAAU7H,GAC7B6H,EAAWkC,UAAWlC,GACtB1K,KAAK2B,QAAQI,IAAK2I,GAGlB1K,KAAKmH,aAAapE,IAAK2H,GAElB7H,GAGJ7C,KAAKmH,aAAatG,QAAQ,aAQ7BM,GAAGC,UAAUC,mBAA4B,QAAIF,GAAGC,UAAUE,QAAQC,QACjEC,MAAO,WACN,GAAIC,GAAUzB,KACV4E,IAEJjF,QAAOkE,MAAO,MAAO,SAAU,OAAQ,SAAU,SAAUyC,EAAOuG,GAG5DpL,EAAQI,UAAUiL,IAAK,IAAMD,GAAYE,SAC7CnI,EAAgBiI,GAAcpL,EAAQE,QAAQC,OAAQiL,IAEjD,IAAU3N,sBAAuBuC,EAAQE,QAAQC,OAAQiL,IAC7DlN,OAAQ8B,EAAQ4B,SAAW,KAAOwJ,EAAY,kBAAmBvJ,SAAU,WAE3E3D,OAAQ8B,EAAQ4B,SAAW,KAAOwJ,EAAY,kBAAmBtJ,YAAa,YAI3E9B,EAAQI,UAAUiL,IAAK,IAAMD,GAAYE,QAC7CtL,EAAQI,UAAUnB,GAAI,qBAAsB,IAAMmM,EAAY,SAAU,WACvEG,SAAWrN,OAAQK,MAAO+C,OAErB,IAAU7D,sBAAuB8N,UACrCrN,OAAQ8B,EAAQ4B,SAAW,KAAOwJ,EAAY,kBAAmBvJ,SAAU,YAE3E3D,OAAQ8B,EAAQ4B,SAAW,KAAOwJ,EAAY,kBAAmBtJ,YAAa,WAE9EqB,EAAgBiI,GAAcG,SAC9BvL,EAAQE,QAAQI,IAAK6C,GACrBzD,GAAGC,UAAU0D,UAAUjC,kBAU7B1B,GAAGC,UAAUC,mBAAmB,UAAYF,GAAGC,UAAUE,QAAQC,QAChEC,MAAO,WACN,GAAIC,GAAUzB,KAGV0B,EAAiBD,EAAQE,QAAQC,MAErC5B,MAAK6B,UAAUnB,GAAI,SAAU,QAAS,WACrCgB,IAAmB/B,OAAQK,MAAO8B,GAAI,YACtCL,EAAQE,QAAQI,IAAKL,QAOxBP,GAAGC,UAAUC,mBAA2B,OAAIF,GAAGC,UAAUE,QAAQC,QAChEC,MAAO,WACN,GAAIC,GAAUzB,KAGV0B,EAAiBD,EAAQE,QAAQC,MAErC5B,MAAK6B,UAAUnB,GAAI,SAAU,QAAS,WACrCgB,IAAmB/B,OAAQK,MAAO8B,GAAI,YACtCL,EAAQE,QAAQI,IAAKL,QAOxBP,GAAGC,UAAUC,mBAA+B,WAAIF,GAAGC,UAAUE,QAAQC,QACpEC,MAAO,WACN,GAAIC,GAAUzB,KACViN,EAAqBxL,EAAQ4B,SAAW,uBACxC6J,EAAqBzL,EAAQ4B,SAAW,mBACxC8J,EAAqB1L,EAAQ4B,SAAW,kBAExClE,IACJA,GAAM,eAAsBJ,SAAc0C,EAAQE,QAAQC,OAAO,eAAmBH,EAAQE,QAAQC,OAAO,eAAiB,GAC5HzC,EAAM,aAAsBJ,SAAc0C,EAAQE,QAAQC,OAAO,aAAiBH,EAAQE,QAAQC,OAAO,aAAe,GACxHzC,EAAe,QAAaJ,SAAc0C,EAAQE,QAAQC,OAAgB,QAAMH,EAAQE,QAAQC,OAAgB,QAAI,GACpHzC,EAAc,OAAcJ,SAAc0C,EAAQE,QAAQC,OAAe,OAAMH,EAAQE,QAAQC,OAAe,OAAI,GAClHzC,EAAM,eAAsBJ,SAAc0C,EAAQE,QAAQC,OAAO,eAAmBH,EAAQE,QAAQC,OAAO,eAAiB,GAC5HzC,EAAM,kBAAsBJ,SAAc0C,EAAQE,QAAQC,OAAO,kBAAsBH,EAAQE,QAAQC,OAAO,kBAAoB,GAClIzC,EAAa,MAAeJ,SAAc0C,EAAQE,QAAQC,OAAc,MAAMH,EAAQE,QAAQC,OAAc,MAAI,EAEhH,IAAIwL,GAAmB,SAAUC,EAAYC,EAAKC,GACjDC,YAAgB,WAAaF,EAAQJ,EAAkBC,CACvD,IAAIM,IAAc,EACdC,IAEC3O,UAAcY,OAAQ6N,aAAcrI,YAAY,IACpDxF,OAAQ6N,aAAcrI,YAAY,GAAGA,UAAUwI,SAGhD,KAAM,GAAI9O,GAAI,EAAG+O,EAAMC,cAAc/O,OAAY8O,EAAJ/O,EAASA,IAChDwO,IAAeQ,cAAehP,GAAY,SACzCE,SAAc8O,cAAehP,GAAiB,cAAK,IAASgP,cAAehP,GAAiB,cAChG4O,GAAc,GAEfC,EAAUG,cAAehP,GAAKyO,EAAM,KAGtC,KAAK,IAAUG,GAAe,WAAaH,EAAM,CAEhD,GAAK,OAASC,EAAc,CAC3B,GAAK,WAAaD,EACjB,IAAM,GAAIzO,GAAI,EAAG+O,EAAMF,EAAQ5O,OAAY8O,EAAJ/O,EAASA,IAC/C,GAAKE,SAAc2O,EAAS7O,GAAQ,GACnC,GAAIiP,GAAa3O,EAAe,YAC1B,CACN,GAAI4O,GAAe,SACnB,IAAKA,GAAgBL,EAAS7O,GAAQ,GACrC,GAAImP,IAAa,MACX,IAAKjP,SAAckP,EACzB,GAAIA,GAAiBP,EAAS7O,GAAQ,OAInC,IAAK,UAAYyO,EAAM,CAE7B,IAAM,GADFY,MACMrP,EAAI,EAAG+O,EAAMF,EAAQ5O,OAAY8O,EAAJ/O,EAASA,IAC/C,GAAK,OAASM,EAAc,OAC3B,IAAM,GAAIgP,GAAI,EAAGP,EAAMzO,EAAc,OAAEL,OAAY8O,EAAJO,EAASA,IAClDpP,SAAc2O,EAAS7O,IAAOM,EAAc,OAAGgP,IAAOT,EAAS7O,GAAQ,KAC3EqP,EAAc/O,EAAc,OAAGgP,IAAQhP,EAAc,OAAGgP,GAK5D,IAAK,GAAKD,EAAapP,OACtBgP,GAAc,aACR,CACN,GAAIM,GAAoBzO,OAAO0O,IAAKH,EAAc,SAAS/O,EAAOmH,GACjE,OAAQnH,IAET2O,GAAaM,GAMfpB,SAAajO,SAAc+O,EAAeA,EAAe/O,SAAciP,EAAe,UAAYC,MAElGjB,UAAWO,CAGZ,IAAIe,EACJA,GAAe3O,OAAQ6N,aAAcrI,WACpC8G,SAAe,WAAaqB,EAAQ,EAAI,KACxCiB,WAAa,KACbC,WAAa,QACbC,aAAc,SACdtG,QAAauF,EACbgB,MAAe,WAAapB,GAAUN,UAAaA,SACnD2B,QAAa,EACbzC,QAAe,WAAaoB,EAAQ,IAAM,iBAC1CsB,QACCC,KAAM,SAAUA,EAAMvG,GAAW,MAAO,QAAUA,EAAQuG,EAAKC,OAAU,UACzEC,OAAQ,SAAUF,EAAMvG,GAAW,MAAO,QAAUA,EAAQuG,EAAKC,OAAU,aAE1E7N,KAAM,aAKL,WAAaqM,EACZ,IAAMI,EAAQ5O,QAAU,IAAM4O,EAAQ5O,OAC1C2C,EAAQI,UAAUzB,KAAM,0BAA2BsE,IAAK,UAAW,QAEnEjD,EAAQI,UAAUzB,KAAM,0BAA2BsE,IAAK,UAAW,SAEzD,UAAY4I,IAClB,IAAMI,EAAQ5O,OAClB2C,EAAQI,UAAUzB,KAAM,yBAA0BsE,IAAK,UAAW,QAElEjD,EAAQI,UAAUzB,KAAM,yBAA0BsE,IAAK,UAAW,WAI/D,IAAS+I,EACbhM,EAAQI,UAAUzB,KAAM,2BAA4BsE,IAAK,UAAW,QAEpEjD,EAAQI,UAAUzB,KAAM,2BAA4BsE,IAAK,UAAW,SAKtE/E,QAAQsN,GAAqB9H,WAC5BgD,QAAa0F,cACba,OAAejN,EAAQE,QAAQC,OAAO,gBACtCoN,SAAa,EACb/C,SAAa,EACbsC,WAAa,SACbC,WAAa,QACbC,aAAc,SAAU,QAAS,WACjCE,QAAa,EACbC,QACCC,KAAM,SAAUA,EAAMvG,GAAW,MAAO,QAAUA,EAAQuG,EAAKC,OAAU,UACzEC,OAAQ,SAAUF,EAAMvG,GAAW,MAAO,QAAUA,EAAQuG,EAAKC,OAAU,aAO7E1B,EAAkBjO,EAAM,eAAgB,UAAWA,EAAe,SAKlEiO,EAAkBjO,EAAM,eAAgB,SAAUA,EAAc,QAEhEa,KAAK6B,UAAUnB,GAAI,SAAU,sBAAuB,WAEnDvB,EAAM,eAAiBQ,OAAQK,MAAO+C,MACtCtB,EAAQE,QAAQI,IAAK5C,GAErBiO,EAAkBzN,OAAQK,MAAO+C,MAAO,UAAW,MACnDqK,EAAkBzN,OAAQK,MAAO+C,MAAO,SAAU,MAElD5B,GAAGC,UAAU0D,UAAUjC,YAGxB7C,KAAK6B,UAAUnB,GAAI,SAAU,kBAAmB,WAE/CvB,EAAe,QAAIQ,OAAQK,MAAO+C,MAClCtB,EAAQE,QAAQI,IAAK5C,GAErBgC,GAAGC,UAAU0D,UAAUjC,YAGxB7C,KAAK6B,UAAUnB,GAAI,SAAU,iBAAkB,WAE9CvB,EAAc,OAAIQ,OAAQK,MAAO+C,MACjCtB,EAAQE,QAAQI,IAAK5C,GAErBgC,GAAGC,UAAU0D,UAAUjC,YAGxB7C,KAAK6B,UAAUnB,GAAI,qBAAsB,mBAAoB,WAE5DvB,EAAM,aAAeQ,OAAQK,MAAO+C,MACpCtB,EAAQE,QAAQI,IAAK5C,GAErBgC,GAAGC,UAAU0D,UAAUjC,YAGxB7C,KAAK6B,UAAUnB,GAAI,qBAAsB,qBAAsB,WAE9DvB,EAAM,eAAiBQ,OAAQK,MAAO+C,MACtCtB,EAAQE,QAAQI,IAAK5C,GAErBgC,GAAGC,UAAU0D,UAAUjC,YAGxB7C,KAAK6B,UAAUnB,GAAI,qBAAsB,wBAAyB,WAEjEvB,EAAM,kBAAoBQ,OAAQK,MAAO+C,MACzCtB,EAAQE,QAAQI,IAAK5C,GAErBgC,GAAGC,UAAU0D,UAAUjC,WAGxB,IAAIC,GAAS9C,KAAK6B,UAAUzB,KAAO,uBACnC0C,GAAOE,eACNC,OAAQ,WACPG,WAAa,WAEZjE,EAAe,MAAI2D,EAAOC,MAC1BtB,EAAQE,QAAQI,IAAM5C,GAEtBgC,GAAGC,UAAU0D,UAAUjC,WACrB","file":"customizer.min.js"}
|
assets/js/kirki-postmessage.js
CHANGED
@@ -1,51 +1,70 @@
|
|
1 |
-
|
|
|
|
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
-
jQuery.each( settings.values, function( key, value ) {
|
6 |
-
} );
|
7 |
-
});
|
8 |
-
|
9 |
-
function KirkiPostMessage( js_vars, newval ) {
|
10 |
-
if ( undefined !== js_vars && 0 < js_vars.length ) {
|
11 |
-
jQuery.each( js_vars, function( i, js_var ) {
|
12 |
-
|
13 |
-
// Make sure everything is properly defined.
|
14 |
-
if ( undefined === js_vars[ i ]["element"] ) {
|
15 |
-
js_vars[ i ]["element"] = "";
|
16 |
-
}
|
17 |
-
if ( undefined === js_vars[ i ]["property"] ) {
|
18 |
-
js_vars[ i ]["property"] = "";
|
19 |
-
}
|
20 |
-
if ( undefined === js_vars[ i ]["prefix"] ) {
|
21 |
-
js_vars[ i ]["prefix"] = "";
|
22 |
-
}
|
23 |
-
if ( undefined === js_vars[ i ]["suffix"] ) {
|
24 |
-
js_vars[ i ]["suffix"] = "";
|
25 |
-
}
|
26 |
-
if ( undefined === js_vars[ i ]["units"] ) {
|
27 |
-
js_vars[ i ]["units"] = "";
|
28 |
-
}
|
29 |
-
if ( undefined === js_vars[ i ]["function"] ) {
|
30 |
-
js_vars[ i ]["function"] = "css";
|
31 |
-
}
|
32 |
-
|
33 |
-
jQuery.each( js_vars, function( i, args ) {
|
34 |
-
if ( "css" === args.functionName ) {
|
35 |
-
jQuery( args.element ).css( args.property, args.prefix + newval + args.units + args.suffix );
|
36 |
-
} else if ( "html" === args.functionName ) {
|
37 |
-
jQuery( args.element ).html( args.prefix + newval + args.units + args.suffix );
|
38 |
-
} else if ( "style" === args.functionName ) {
|
39 |
-
if ( ! jQuery( "#kirki-style-" + args.id ).size() ) {
|
40 |
-
jQuery( "head" ).append( '<style id="#kirki-style-' + args.id + '"></style>' );
|
41 |
-
}
|
42 |
-
if ( newval !== "" ) {
|
43 |
-
jQuery( "#kirki-style-" + args.id ).text( args.element + "{" + args.property + ":" + args.prefix + args.newval + args.units + args.suffix + ";}" );
|
44 |
-
} else {
|
45 |
-
jQuery( "#kirki-style-" + args.id ).text( "" );
|
46 |
-
}
|
47 |
}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
}
|
|
|
|
|
|
|
|
1 |
+
( function( $ ) {
|
2 |
+
var $style = $( '#twentyfifteen-color-scheme-css' ),
|
3 |
+
api = wp.customize;
|
4 |
|
5 |
+
$.each( js_vars, function( setting, jsVars ) {
|
6 |
+
|
7 |
+
api( setting, function( value ) {
|
8 |
+
|
9 |
+
value.bind( function( newval ) {
|
10 |
+
|
11 |
+
if ( undefined !== jsVars && 0 < jsVars.length ) {
|
12 |
+
|
13 |
+
$.each( jsVars, function( i, js_var ) {
|
14 |
+
|
15 |
+
// Make sure everything is properly defined.
|
16 |
+
if ( undefined === jsVars[ i ]['element'] ) {
|
17 |
+
jsVars[ i ]['element'] = '';
|
18 |
+
}
|
19 |
+
if ( undefined === jsVars[ i ]['property'] ) {
|
20 |
+
jsVars[ i ]['property'] = '';
|
21 |
+
}
|
22 |
+
if ( undefined === jsVars[ i ]['prefix'] ) {
|
23 |
+
jsVars[ i ]['prefix'] = '';
|
24 |
+
}
|
25 |
+
if ( undefined === jsVars[ i ]['suffix'] ) {
|
26 |
+
jsVars[ i ]['suffix'] = '';
|
27 |
+
}
|
28 |
+
if ( undefined === jsVars[ i ]['units'] ) {
|
29 |
+
jsVars[ i ]['units'] = '';
|
30 |
+
}
|
31 |
+
if ( undefined === jsVars[ i ]['function'] ) {
|
32 |
+
jsVars[ i ]['function'] = 'css';
|
33 |
+
}
|
34 |
+
|
35 |
+
$.each( jsVars, function( i, args ) {
|
36 |
+
|
37 |
+
// Value is a string
|
38 |
+
if ( 'string' == typeof newval ) {
|
39 |
+
// Inject HTML
|
40 |
+
if ( 'html' === args.function ) {
|
41 |
+
$( args.element ).html( args.prefix + newval + args.units + args.suffix );
|
42 |
+
// Attach to <head>
|
43 |
+
} else if ( 'style' === args.function ) {
|
44 |
+
if ( newval !== '' ) {
|
45 |
+
$( 'head' ).append( '<style>' + args.element + '{' + args.property + ':' + args.prefix + newval + args.units + args.suffix + ';}</style>' );
|
46 |
+
}
|
47 |
+
// CSS
|
48 |
+
} else if ( 'css' === args.function ) {
|
49 |
+
$( args.element ).css( args.property, args.prefix + newval + args.units + args.suffix );
|
50 |
+
}
|
51 |
+
|
52 |
+
// Value is an object
|
53 |
+
} else if ( 'object' == typeof newval ) {
|
54 |
+
$.each( newval, function( subValueKey, subValueValue ) {
|
55 |
+
$( args.element ).css( subValueKey, args.prefix + subValueValue + args.units + args.suffix );
|
56 |
+
} );
|
57 |
+
}
|
58 |
+
});
|
59 |
+
|
60 |
+
});
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
+
|
64 |
+
} );
|
65 |
+
|
66 |
+
} );
|
67 |
+
|
68 |
+
} );
|
69 |
+
|
70 |
+
} )( jQuery );
|
assets/json/webfonts.json
DELETED
@@ -1,13772 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"kind": "webfonts#webfontList",
|
3 |
-
"items": [
|
4 |
-
{
|
5 |
-
"kind": "webfonts#webfont",
|
6 |
-
"family": "ABeeZee",
|
7 |
-
"category": "sans-serif",
|
8 |
-
"variants": [
|
9 |
-
"regular",
|
10 |
-
"italic"
|
11 |
-
],
|
12 |
-
"subsets": [
|
13 |
-
"latin"
|
14 |
-
],
|
15 |
-
"version": "v9",
|
16 |
-
"lastModified": "2016-02-23",
|
17 |
-
"files": {
|
18 |
-
"regular": "http://fonts.gstatic.com/s/abeezee/v9/mE5BOuZKGln_Ex0uYKpIaw.ttf",
|
19 |
-
"italic": "http://fonts.gstatic.com/s/abeezee/v9/kpplLynmYgP0YtlJA3atRw.ttf"
|
20 |
-
}
|
21 |
-
},
|
22 |
-
{
|
23 |
-
"kind": "webfonts#webfont",
|
24 |
-
"family": "Abel",
|
25 |
-
"category": "sans-serif",
|
26 |
-
"variants": [
|
27 |
-
"regular"
|
28 |
-
],
|
29 |
-
"subsets": [
|
30 |
-
"latin"
|
31 |
-
],
|
32 |
-
"version": "v6",
|
33 |
-
"lastModified": "2016-02-23",
|
34 |
-
"files": {
|
35 |
-
"regular": "http://fonts.gstatic.com/s/abel/v6/RpUKfqNxoyNe_ka23bzQ2A.ttf"
|
36 |
-
}
|
37 |
-
},
|
38 |
-
{
|
39 |
-
"kind": "webfonts#webfont",
|
40 |
-
"family": "Abril Fatface",
|
41 |
-
"category": "display",
|
42 |
-
"variants": [
|
43 |
-
"regular"
|
44 |
-
],
|
45 |
-
"subsets": [
|
46 |
-
"latin-ext",
|
47 |
-
"latin"
|
48 |
-
],
|
49 |
-
"version": "v8",
|
50 |
-
"lastModified": "2016-02-23",
|
51 |
-
"files": {
|
52 |
-
"regular": "http://fonts.gstatic.com/s/abrilfatface/v8/X1g_KwGeBV3ajZIXQ9VnDojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
53 |
-
}
|
54 |
-
},
|
55 |
-
{
|
56 |
-
"kind": "webfonts#webfont",
|
57 |
-
"family": "Aclonica",
|
58 |
-
"category": "sans-serif",
|
59 |
-
"variants": [
|
60 |
-
"regular"
|
61 |
-
],
|
62 |
-
"subsets": [
|
63 |
-
"latin"
|
64 |
-
],
|
65 |
-
"version": "v6",
|
66 |
-
"lastModified": "2016-02-23",
|
67 |
-
"files": {
|
68 |
-
"regular": "http://fonts.gstatic.com/s/aclonica/v6/M6pHZMPwK3DiBSlo3jwAKQ.ttf"
|
69 |
-
}
|
70 |
-
},
|
71 |
-
{
|
72 |
-
"kind": "webfonts#webfont",
|
73 |
-
"family": "Acme",
|
74 |
-
"category": "sans-serif",
|
75 |
-
"variants": [
|
76 |
-
"regular"
|
77 |
-
],
|
78 |
-
"subsets": [
|
79 |
-
"latin"
|
80 |
-
],
|
81 |
-
"version": "v5",
|
82 |
-
"lastModified": "2016-02-23",
|
83 |
-
"files": {
|
84 |
-
"regular": "http://fonts.gstatic.com/s/acme/v5/-J6XNtAHPZBEbsifCdBt-g.ttf"
|
85 |
-
}
|
86 |
-
},
|
87 |
-
{
|
88 |
-
"kind": "webfonts#webfont",
|
89 |
-
"family": "Actor",
|
90 |
-
"category": "sans-serif",
|
91 |
-
"variants": [
|
92 |
-
"regular"
|
93 |
-
],
|
94 |
-
"subsets": [
|
95 |
-
"latin"
|
96 |
-
],
|
97 |
-
"version": "v6",
|
98 |
-
"lastModified": "2016-02-23",
|
99 |
-
"files": {
|
100 |
-
"regular": "http://fonts.gstatic.com/s/actor/v6/ugMf40CrRK6Jf6Yz_xNSmQ.ttf"
|
101 |
-
}
|
102 |
-
},
|
103 |
-
{
|
104 |
-
"kind": "webfonts#webfont",
|
105 |
-
"family": "Adamina",
|
106 |
-
"category": "serif",
|
107 |
-
"variants": [
|
108 |
-
"regular"
|
109 |
-
],
|
110 |
-
"subsets": [
|
111 |
-
"latin"
|
112 |
-
],
|
113 |
-
"version": "v8",
|
114 |
-
"lastModified": "2016-02-23",
|
115 |
-
"files": {
|
116 |
-
"regular": "http://fonts.gstatic.com/s/adamina/v8/RUQfOodOMiVVYqFZcSlT9w.ttf"
|
117 |
-
}
|
118 |
-
},
|
119 |
-
{
|
120 |
-
"kind": "webfonts#webfont",
|
121 |
-
"family": "Advent Pro",
|
122 |
-
"category": "sans-serif",
|
123 |
-
"variants": [
|
124 |
-
"100",
|
125 |
-
"200",
|
126 |
-
"300",
|
127 |
-
"regular",
|
128 |
-
"500",
|
129 |
-
"600",
|
130 |
-
"700"
|
131 |
-
],
|
132 |
-
"subsets": [
|
133 |
-
"latin-ext",
|
134 |
-
"greek",
|
135 |
-
"latin"
|
136 |
-
],
|
137 |
-
"version": "v4",
|
138 |
-
"lastModified": "2016-02-23",
|
139 |
-
"files": {
|
140 |
-
"100": "http://fonts.gstatic.com/s/adventpro/v4/87-JOpSUecTG50PBYK4ysi3USBnSvpkopQaUR-2r7iU.ttf",
|
141 |
-
"200": "http://fonts.gstatic.com/s/adventpro/v4/URTSSjIp0Wr-GrjxFdFWnGeudeTO44zf-ht3k-KNzwg.ttf",
|
142 |
-
"300": "http://fonts.gstatic.com/s/adventpro/v4/sJaBfJYSFgoB80OL1_66m0eOrDcLawS7-ssYqLr2Xp4.ttf",
|
143 |
-
"regular": "http://fonts.gstatic.com/s/adventpro/v4/1NxMBeKVcNNH2H46AUR3wfesZW2xOQ-xsNqO47m55DA.ttf",
|
144 |
-
"500": "http://fonts.gstatic.com/s/adventpro/v4/7kBth2-rT8tP40RmMMXMLJp-63r6doWhTEbsfBIRJ7A.ttf",
|
145 |
-
"600": "http://fonts.gstatic.com/s/adventpro/v4/3Jo-2maCzv2QLzQBzaKHV_pTEJqju4Hz1txDWij77d4.ttf",
|
146 |
-
"700": "http://fonts.gstatic.com/s/adventpro/v4/M4I6QiICt-ey_wZTpR2gKwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
147 |
-
}
|
148 |
-
},
|
149 |
-
{
|
150 |
-
"kind": "webfonts#webfont",
|
151 |
-
"family": "Aguafina Script",
|
152 |
-
"category": "handwriting",
|
153 |
-
"variants": [
|
154 |
-
"regular"
|
155 |
-
],
|
156 |
-
"subsets": [
|
157 |
-
"latin-ext",
|
158 |
-
"latin"
|
159 |
-
],
|
160 |
-
"version": "v5",
|
161 |
-
"lastModified": "2016-02-23",
|
162 |
-
"files": {
|
163 |
-
"regular": "http://fonts.gstatic.com/s/aguafinascript/v5/65g7cgMtMGnNlNyq_Z6CvMxLhO8OSNnfAp53LK1_iRs.ttf"
|
164 |
-
}
|
165 |
-
},
|
166 |
-
{
|
167 |
-
"kind": "webfonts#webfont",
|
168 |
-
"family": "Akronim",
|
169 |
-
"category": "display",
|
170 |
-
"variants": [
|
171 |
-
"regular"
|
172 |
-
],
|
173 |
-
"subsets": [
|
174 |
-
"latin-ext",
|
175 |
-
"latin"
|
176 |
-
],
|
177 |
-
"version": "v5",
|
178 |
-
"lastModified": "2016-02-23",
|
179 |
-
"files": {
|
180 |
-
"regular": "http://fonts.gstatic.com/s/akronim/v5/qA0L2CSArk3tuOWE1AR1DA.ttf"
|
181 |
-
}
|
182 |
-
},
|
183 |
-
{
|
184 |
-
"kind": "webfonts#webfont",
|
185 |
-
"family": "Aladin",
|
186 |
-
"category": "handwriting",
|
187 |
-
"variants": [
|
188 |
-
"regular"
|
189 |
-
],
|
190 |
-
"subsets": [
|
191 |
-
"latin-ext",
|
192 |
-
"latin"
|
193 |
-
],
|
194 |
-
"version": "v5",
|
195 |
-
"lastModified": "2016-02-23",
|
196 |
-
"files": {
|
197 |
-
"regular": "http://fonts.gstatic.com/s/aladin/v5/PyuJ5cVHkduO0j5fAMKvAA.ttf"
|
198 |
-
}
|
199 |
-
},
|
200 |
-
{
|
201 |
-
"kind": "webfonts#webfont",
|
202 |
-
"family": "Aldrich",
|
203 |
-
"category": "sans-serif",
|
204 |
-
"variants": [
|
205 |
-
"regular"
|
206 |
-
],
|
207 |
-
"subsets": [
|
208 |
-
"latin"
|
209 |
-
],
|
210 |
-
"version": "v6",
|
211 |
-
"lastModified": "2016-02-23",
|
212 |
-
"files": {
|
213 |
-
"regular": "http://fonts.gstatic.com/s/aldrich/v6/kMMW1S56gFx7RP_mW1g-Eg.ttf"
|
214 |
-
}
|
215 |
-
},
|
216 |
-
{
|
217 |
-
"kind": "webfonts#webfont",
|
218 |
-
"family": "Alef",
|
219 |
-
"category": "sans-serif",
|
220 |
-
"variants": [
|
221 |
-
"regular",
|
222 |
-
"700"
|
223 |
-
],
|
224 |
-
"subsets": [
|
225 |
-
"hebrew",
|
226 |
-
"latin"
|
227 |
-
],
|
228 |
-
"version": "v6",
|
229 |
-
"lastModified": "2016-02-23",
|
230 |
-
"files": {
|
231 |
-
"regular": "http://fonts.gstatic.com/s/alef/v6/ENvZ_P0HBDQxNZYCQO0lUA.ttf",
|
232 |
-
"700": "http://fonts.gstatic.com/s/alef/v6/VDgZJhEwudtOzOFQpZ8MEA.ttf"
|
233 |
-
}
|
234 |
-
},
|
235 |
-
{
|
236 |
-
"kind": "webfonts#webfont",
|
237 |
-
"family": "Alegreya",
|
238 |
-
"category": "serif",
|
239 |
-
"variants": [
|
240 |
-
"regular",
|
241 |
-
"italic",
|
242 |
-
"700",
|
243 |
-
"700italic",
|
244 |
-
"900",
|
245 |
-
"900italic"
|
246 |
-
],
|
247 |
-
"subsets": [
|
248 |
-
"latin-ext",
|
249 |
-
"latin"
|
250 |
-
],
|
251 |
-
"version": "v7",
|
252 |
-
"lastModified": "2016-02-23",
|
253 |
-
"files": {
|
254 |
-
"regular": "http://fonts.gstatic.com/s/alegreya/v7/62J3atXd6bvMU4qO_ca-eA.ttf",
|
255 |
-
"italic": "http://fonts.gstatic.com/s/alegreya/v7/cbshnQGxwmlHBjUil7DaIfesZW2xOQ-xsNqO47m55DA.ttf",
|
256 |
-
"700": "http://fonts.gstatic.com/s/alegreya/v7/5oZtdI5-wQwgAFrd9erCsaCWcynf_cDxXwCLxiixG1c.ttf",
|
257 |
-
"700italic": "http://fonts.gstatic.com/s/alegreya/v7/IWi8e5bpnqhMRsZKTcTUWgJKKGfqHaYFsRG-T3ceEVo.ttf",
|
258 |
-
"900": "http://fonts.gstatic.com/s/alegreya/v7/oQeMxX-vxGImzDgX6nxA7KCWcynf_cDxXwCLxiixG1c.ttf",
|
259 |
-
"900italic": "http://fonts.gstatic.com/s/alegreya/v7/-L71QLH_XqgYWaI1GbOVhp0EAVxt0G0biEntp43Qt6E.ttf"
|
260 |
-
}
|
261 |
-
},
|
262 |
-
{
|
263 |
-
"kind": "webfonts#webfont",
|
264 |
-
"family": "Alegreya SC",
|
265 |
-
"category": "serif",
|
266 |
-
"variants": [
|
267 |
-
"regular",
|
268 |
-
"italic",
|
269 |
-
"700",
|
270 |
-
"700italic",
|
271 |
-
"900",
|
272 |
-
"900italic"
|
273 |
-
],
|
274 |
-
"subsets": [
|
275 |
-
"latin-ext",
|
276 |
-
"latin"
|
277 |
-
],
|
278 |
-
"version": "v6",
|
279 |
-
"lastModified": "2016-02-23",
|
280 |
-
"files": {
|
281 |
-
"regular": "http://fonts.gstatic.com/s/alegreyasc/v6/3ozeFnTbygMK6PfHh8B-iqCWcynf_cDxXwCLxiixG1c.ttf",
|
282 |
-
"italic": "http://fonts.gstatic.com/s/alegreyasc/v6/GOqmv3FLsJ2r6ZALMZVBmkeOrDcLawS7-ssYqLr2Xp4.ttf",
|
283 |
-
"700": "http://fonts.gstatic.com/s/alegreyasc/v6/M9OIREoxDkvynwTpBAYUq3e1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
284 |
-
"700italic": "http://fonts.gstatic.com/s/alegreyasc/v6/5PCoU7IUfCicpKBJtBmP6c_zJjSACmk0BRPxQqhnNLU.ttf",
|
285 |
-
"900": "http://fonts.gstatic.com/s/alegreyasc/v6/M9OIREoxDkvynwTpBAYUqyenaqEuufTBk9XMKnKmgDA.ttf",
|
286 |
-
"900italic": "http://fonts.gstatic.com/s/alegreyasc/v6/5PCoU7IUfCicpKBJtBmP6U_yTOUGsoC54csJe1b-IRw.ttf"
|
287 |
-
}
|
288 |
-
},
|
289 |
-
{
|
290 |
-
"kind": "webfonts#webfont",
|
291 |
-
"family": "Alegreya Sans",
|
292 |
-
"category": "sans-serif",
|
293 |
-
"variants": [
|
294 |
-
"100",
|
295 |
-
"100italic",
|
296 |
-
"300",
|
297 |
-
"300italic",
|
298 |
-
"regular",
|
299 |
-
"italic",
|
300 |
-
"500",
|
301 |
-
"500italic",
|
302 |
-
"700",
|
303 |
-
"700italic",
|
304 |
-
"800",
|
305 |
-
"800italic",
|
306 |
-
"900",
|
307 |
-
"900italic"
|
308 |
-
],
|
309 |
-
"subsets": [
|
310 |
-
"latin-ext",
|
311 |
-
"vietnamese",
|
312 |
-
"latin"
|
313 |
-
],
|
314 |
-
"version": "v3",
|
315 |
-
"lastModified": "2016-02-23",
|
316 |
-
"files": {
|
317 |
-
"100": "http://fonts.gstatic.com/s/alegreyasans/v3/TKyx_-JJ6MdpQruNk-t-PJFGFO4uyVFMfB6LZsii7kI.ttf",
|
318 |
-
"100italic": "http://fonts.gstatic.com/s/alegreyasans/v3/gRkSP2lBpqoMTVxg7DmVn2cDnjsrnI9_xJ-5gnBaHsE.ttf",
|
319 |
-
"300": "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9acB1LjARzAvdqa1uQC32v70.ttf",
|
320 |
-
"300italic": "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9CnfqlVoxTUFFx1C8tBqmbcg.ttf",
|
321 |
-
"regular": "http://fonts.gstatic.com/s/alegreyasans/v3/KYNzioYhDai7mTMnx_gDgn8f0n03UdmQgF_CLvNR2vg.ttf",
|
322 |
-
"italic": "http://fonts.gstatic.com/s/alegreyasans/v3/TKyx_-JJ6MdpQruNk-t-PD4G9C9ttb0Oz5Cvf0qOitE.ttf",
|
323 |
-
"500": "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9aQqQmZ7VjhwksfpNVG0pqGc.ttf",
|
324 |
-
"500italic": "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9Cs7DCVO6wo6i5LKIyZDzK40.ttf",
|
325 |
-
"700": "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9aVCbmAUID8LN-q3pJpOk3Ys.ttf",
|
326 |
-
"700italic": "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9CpF66r9C4AnxxlBlGd7xY4g.ttf",
|
327 |
-
"800": "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9acxnD5BewVtRRHHljCwR2bM.ttf",
|
328 |
-
"800italic": "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9CicOAJ_9MkLPbDmrtXDPbIU.ttf",
|
329 |
-
"900": "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9aW42xlVP-j5dagE7-AU2zwg.ttf",
|
330 |
-
"900italic": "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9ChRaDUI9aE8-k7PrIG2iiuo.ttf"
|
331 |
-
}
|
332 |
-
},
|
333 |
-
{
|
334 |
-
"kind": "webfonts#webfont",
|
335 |
-
"family": "Alegreya Sans SC",
|
336 |
-
"category": "sans-serif",
|
337 |
-
"variants": [
|
338 |
-
"100",
|
339 |
-
"100italic",
|
340 |
-
"300",
|
341 |
-
"300italic",
|
342 |
-
"regular",
|
343 |
-
"italic",
|
344 |
-
"500",
|
345 |
-
"500italic",
|
346 |
-
"700",
|
347 |
-
"700italic",
|
348 |
-
"800",
|
349 |
-
"800italic",
|
350 |
-
"900",
|
351 |
-
"900italic"
|
352 |
-
],
|
353 |
-
"subsets": [
|
354 |
-
"latin-ext",
|
355 |
-
"vietnamese",
|
356 |
-
"latin"
|
357 |
-
],
|
358 |
-
"version": "v3",
|
359 |
-
"lastModified": "2016-02-23",
|
360 |
-
"files": {
|
361 |
-
"100": "http://fonts.gstatic.com/s/alegreyasanssc/v3/trwFkDJLOJf6hqM93944kVnzStfdnFU-MXbO84aBs_M.ttf",
|
362 |
-
"100italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/qG3gA9iy5RpXMH4crZboqqakMVR0XlJhO7VdJ8yYvA4.ttf",
|
363 |
-
"300": "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR46-1IqtfxJspFjzJp0SaQRcI.ttf",
|
364 |
-
"300italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0CnTKaH808trtzttbEg4yVA.ttf",
|
365 |
-
"regular": "http://fonts.gstatic.com/s/alegreyasanssc/v3/6kgb6ZvOagoVIRZyl8XV-EklWX-XdLVn1WTiuGuvKIU.ttf",
|
366 |
-
"italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/trwFkDJLOJf6hqM93944kTfqo69HNOlCNZvbwAmUtiA.ttf",
|
367 |
-
"500": "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR46_hHTluI57wqxl55RvSYo3s.ttf",
|
368 |
-
"500italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0NqVvxKdFVwqwzilqfVd39U.ttf",
|
369 |
-
"700": "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR4600aId5t1FC-xZ8nmpa_XLk.ttf",
|
370 |
-
"700italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0IBYn3VD6xMEnodOh8pnFw4.ttf",
|
371 |
-
"800": "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR46wQgSHD3Lo1Mif2Wkk5swWA.ttf",
|
372 |
-
"800italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0HStmCm6Rs90XeztCALm0H8.ttf",
|
373 |
-
"900": "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR461Rf9EWUSEX_PR1d_gLKfpM.ttf",
|
374 |
-
"900italic": "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0IvtwEfTCJoOJugANj-jWDI.ttf"
|
375 |
-
}
|
376 |
-
},
|
377 |
-
{
|
378 |
-
"kind": "webfonts#webfont",
|
379 |
-
"family": "Alex Brush",
|
380 |
-
"category": "handwriting",
|
381 |
-
"variants": [
|
382 |
-
"regular"
|
383 |
-
],
|
384 |
-
"subsets": [
|
385 |
-
"latin-ext",
|
386 |
-
"latin"
|
387 |
-
],
|
388 |
-
"version": "v6",
|
389 |
-
"lastModified": "2016-02-23",
|
390 |
-
"files": {
|
391 |
-
"regular": "http://fonts.gstatic.com/s/alexbrush/v6/ooh3KJFbKJSUoIRWfiu8o_esZW2xOQ-xsNqO47m55DA.ttf"
|
392 |
-
}
|
393 |
-
},
|
394 |
-
{
|
395 |
-
"kind": "webfonts#webfont",
|
396 |
-
"family": "Alfa Slab One",
|
397 |
-
"category": "display",
|
398 |
-
"variants": [
|
399 |
-
"regular"
|
400 |
-
],
|
401 |
-
"subsets": [
|
402 |
-
"latin"
|
403 |
-
],
|
404 |
-
"version": "v5",
|
405 |
-
"lastModified": "2016-02-23",
|
406 |
-
"files": {
|
407 |
-
"regular": "http://fonts.gstatic.com/s/alfaslabone/v5/Qx6FPcitRwTC_k88tLPc-Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
408 |
-
}
|
409 |
-
},
|
410 |
-
{
|
411 |
-
"kind": "webfonts#webfont",
|
412 |
-
"family": "Alice",
|
413 |
-
"category": "serif",
|
414 |
-
"variants": [
|
415 |
-
"regular"
|
416 |
-
],
|
417 |
-
"subsets": [
|
418 |
-
"latin"
|
419 |
-
],
|
420 |
-
"version": "v7",
|
421 |
-
"lastModified": "2016-02-23",
|
422 |
-
"files": {
|
423 |
-
"regular": "http://fonts.gstatic.com/s/alice/v7/wZTAfivekBqIg-rk63nFvQ.ttf"
|
424 |
-
}
|
425 |
-
},
|
426 |
-
{
|
427 |
-
"kind": "webfonts#webfont",
|
428 |
-
"family": "Alike",
|
429 |
-
"category": "serif",
|
430 |
-
"variants": [
|
431 |
-
"regular"
|
432 |
-
],
|
433 |
-
"subsets": [
|
434 |
-
"latin"
|
435 |
-
],
|
436 |
-
"version": "v8",
|
437 |
-
"lastModified": "2016-02-23",
|
438 |
-
"files": {
|
439 |
-
"regular": "http://fonts.gstatic.com/s/alike/v8/Ho8YpRKNk_202fwDiGNIyw.ttf"
|
440 |
-
}
|
441 |
-
},
|
442 |
-
{
|
443 |
-
"kind": "webfonts#webfont",
|
444 |
-
"family": "Alike Angular",
|
445 |
-
"category": "serif",
|
446 |
-
"variants": [
|
447 |
-
"regular"
|
448 |
-
],
|
449 |
-
"subsets": [
|
450 |
-
"latin"
|
451 |
-
],
|
452 |
-
"version": "v6",
|
453 |
-
"lastModified": "2016-02-23",
|
454 |
-
"files": {
|
455 |
-
"regular": "http://fonts.gstatic.com/s/alikeangular/v6/OpeCu4xxI3qO1C7CZcJtPT3XH2uEnVI__ynTBvNyki8.ttf"
|
456 |
-
}
|
457 |
-
},
|
458 |
-
{
|
459 |
-
"kind": "webfonts#webfont",
|
460 |
-
"family": "Allan",
|
461 |
-
"category": "display",
|
462 |
-
"variants": [
|
463 |
-
"regular",
|
464 |
-
"700"
|
465 |
-
],
|
466 |
-
"subsets": [
|
467 |
-
"latin-ext",
|
468 |
-
"latin"
|
469 |
-
],
|
470 |
-
"version": "v7",
|
471 |
-
"lastModified": "2016-02-23",
|
472 |
-
"files": {
|
473 |
-
"regular": "http://fonts.gstatic.com/s/allan/v7/T3lemhgZmLQkQI2Qc2bQHA.ttf",
|
474 |
-
"700": "http://fonts.gstatic.com/s/allan/v7/zSxQiwo7wgnr7KkMXhSiag.ttf"
|
475 |
-
}
|
476 |
-
},
|
477 |
-
{
|
478 |
-
"kind": "webfonts#webfont",
|
479 |
-
"family": "Allerta",
|
480 |
-
"category": "sans-serif",
|
481 |
-
"variants": [
|
482 |
-
"regular"
|
483 |
-
],
|
484 |
-
"subsets": [
|
485 |
-
"latin"
|
486 |
-
],
|
487 |
-
"version": "v7",
|
488 |
-
"lastModified": "2016-02-23",
|
489 |
-
"files": {
|
490 |
-
"regular": "http://fonts.gstatic.com/s/allerta/v7/s9FOEuiJFTNbMe06ifzV8g.ttf"
|
491 |
-
}
|
492 |
-
},
|
493 |
-
{
|
494 |
-
"kind": "webfonts#webfont",
|
495 |
-
"family": "Allerta Stencil",
|
496 |
-
"category": "sans-serif",
|
497 |
-
"variants": [
|
498 |
-
"regular"
|
499 |
-
],
|
500 |
-
"subsets": [
|
501 |
-
"latin"
|
502 |
-
],
|
503 |
-
"version": "v7",
|
504 |
-
"lastModified": "2016-02-23",
|
505 |
-
"files": {
|
506 |
-
"regular": "http://fonts.gstatic.com/s/allertastencil/v7/CdSZfRtHbQrBohqmzSdDYFf2eT4jUldwg_9fgfY_tHc.ttf"
|
507 |
-
}
|
508 |
-
},
|
509 |
-
{
|
510 |
-
"kind": "webfonts#webfont",
|
511 |
-
"family": "Allura",
|
512 |
-
"category": "handwriting",
|
513 |
-
"variants": [
|
514 |
-
"regular"
|
515 |
-
],
|
516 |
-
"subsets": [
|
517 |
-
"latin-ext",
|
518 |
-
"latin"
|
519 |
-
],
|
520 |
-
"version": "v4",
|
521 |
-
"lastModified": "2016-02-23",
|
522 |
-
"files": {
|
523 |
-
"regular": "http://fonts.gstatic.com/s/allura/v4/4hcqgZanyuJ2gMYWffIR6A.ttf"
|
524 |
-
}
|
525 |
-
},
|
526 |
-
{
|
527 |
-
"kind": "webfonts#webfont",
|
528 |
-
"family": "Almendra",
|
529 |
-
"category": "serif",
|
530 |
-
"variants": [
|
531 |
-
"regular",
|
532 |
-
"italic",
|
533 |
-
"700",
|
534 |
-
"700italic"
|
535 |
-
],
|
536 |
-
"subsets": [
|
537 |
-
"latin-ext",
|
538 |
-
"latin"
|
539 |
-
],
|
540 |
-
"version": "v8",
|
541 |
-
"lastModified": "2016-02-23",
|
542 |
-
"files": {
|
543 |
-
"regular": "http://fonts.gstatic.com/s/almendra/v8/PDpbB-ZF7deXAAEYPkQOeg.ttf",
|
544 |
-
"italic": "http://fonts.gstatic.com/s/almendra/v8/CNWLyiDucqVKVgr4EMidi_esZW2xOQ-xsNqO47m55DA.ttf",
|
545 |
-
"700": "http://fonts.gstatic.com/s/almendra/v8/ZpLdQMj7Q2AFio4nNO6A76CWcynf_cDxXwCLxiixG1c.ttf",
|
546 |
-
"700italic": "http://fonts.gstatic.com/s/almendra/v8/-tXHKMcnn6FqrhJV3l1e3QJKKGfqHaYFsRG-T3ceEVo.ttf"
|
547 |
-
}
|
548 |
-
},
|
549 |
-
{
|
550 |
-
"kind": "webfonts#webfont",
|
551 |
-
"family": "Almendra Display",
|
552 |
-
"category": "display",
|
553 |
-
"variants": [
|
554 |
-
"regular"
|
555 |
-
],
|
556 |
-
"subsets": [
|
557 |
-
"latin-ext",
|
558 |
-
"latin"
|
559 |
-
],
|
560 |
-
"version": "v6",
|
561 |
-
"lastModified": "2016-02-23",
|
562 |
-
"files": {
|
563 |
-
"regular": "http://fonts.gstatic.com/s/almendradisplay/v6/2Zuu97WJ_ez-87yz5Ai8fF6uyC_qD11hrFQ6EGgTJWI.ttf"
|
564 |
-
}
|
565 |
-
},
|
566 |
-
{
|
567 |
-
"kind": "webfonts#webfont",
|
568 |
-
"family": "Almendra SC",
|
569 |
-
"category": "serif",
|
570 |
-
"variants": [
|
571 |
-
"regular"
|
572 |
-
],
|
573 |
-
"subsets": [
|
574 |
-
"latin"
|
575 |
-
],
|
576 |
-
"version": "v6",
|
577 |
-
"lastModified": "2016-02-23",
|
578 |
-
"files": {
|
579 |
-
"regular": "http://fonts.gstatic.com/s/almendrasc/v6/IuiLd8Fm9I6raSalxMoWeaCWcynf_cDxXwCLxiixG1c.ttf"
|
580 |
-
}
|
581 |
-
},
|
582 |
-
{
|
583 |
-
"kind": "webfonts#webfont",
|
584 |
-
"family": "Amarante",
|
585 |
-
"category": "display",
|
586 |
-
"variants": [
|
587 |
-
"regular"
|
588 |
-
],
|
589 |
-
"subsets": [
|
590 |
-
"latin-ext",
|
591 |
-
"latin"
|
592 |
-
],
|
593 |
-
"version": "v4",
|
594 |
-
"lastModified": "2016-02-23",
|
595 |
-
"files": {
|
596 |
-
"regular": "http://fonts.gstatic.com/s/amarante/v4/2dQHjIBWSpydit5zkJZnOw.ttf"
|
597 |
-
}
|
598 |
-
},
|
599 |
-
{
|
600 |
-
"kind": "webfonts#webfont",
|
601 |
-
"family": "Amaranth",
|
602 |
-
"category": "sans-serif",
|
603 |
-
"variants": [
|
604 |
-
"regular",
|
605 |
-
"italic",
|
606 |
-
"700",
|
607 |
-
"700italic"
|
608 |
-
],
|
609 |
-
"subsets": [
|
610 |
-
"latin"
|
611 |
-
],
|
612 |
-
"version": "v6",
|
613 |
-
"lastModified": "2016-02-23",
|
614 |
-
"files": {
|
615 |
-
"regular": "http://fonts.gstatic.com/s/amaranth/v6/7VcBog22JBHsHXHdnnycTA.ttf",
|
616 |
-
"italic": "http://fonts.gstatic.com/s/amaranth/v6/UrJlRY9LcVERJSvggsdBqPesZW2xOQ-xsNqO47m55DA.ttf",
|
617 |
-
"700": "http://fonts.gstatic.com/s/amaranth/v6/j5OFHqadfxyLnQRxFeox6qCWcynf_cDxXwCLxiixG1c.ttf",
|
618 |
-
"700italic": "http://fonts.gstatic.com/s/amaranth/v6/BHyuYFj9nqLFNvOvGh0xTwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
619 |
-
}
|
620 |
-
},
|
621 |
-
{
|
622 |
-
"kind": "webfonts#webfont",
|
623 |
-
"family": "Amatic SC",
|
624 |
-
"category": "handwriting",
|
625 |
-
"variants": [
|
626 |
-
"regular",
|
627 |
-
"700"
|
628 |
-
],
|
629 |
-
"subsets": [
|
630 |
-
"latin-ext",
|
631 |
-
"latin"
|
632 |
-
],
|
633 |
-
"version": "v8",
|
634 |
-
"lastModified": "2016-02-23",
|
635 |
-
"files": {
|
636 |
-
"regular": "http://fonts.gstatic.com/s/amaticsc/v8/MldbRWLFytvqxU1y81xSVg.ttf",
|
637 |
-
"700": "http://fonts.gstatic.com/s/amaticsc/v8/IDnkRTPGcrSVo50UyYNK7y3USBnSvpkopQaUR-2r7iU.ttf"
|
638 |
-
}
|
639 |
-
},
|
640 |
-
{
|
641 |
-
"kind": "webfonts#webfont",
|
642 |
-
"family": "Amethysta",
|
643 |
-
"category": "serif",
|
644 |
-
"variants": [
|
645 |
-
"regular"
|
646 |
-
],
|
647 |
-
"subsets": [
|
648 |
-
"latin"
|
649 |
-
],
|
650 |
-
"version": "v4",
|
651 |
-
"lastModified": "2016-02-23",
|
652 |
-
"files": {
|
653 |
-
"regular": "http://fonts.gstatic.com/s/amethysta/v4/1jEo9tOFIJDolAUpBnWbnA.ttf"
|
654 |
-
}
|
655 |
-
},
|
656 |
-
{
|
657 |
-
"kind": "webfonts#webfont",
|
658 |
-
"family": "Amiri",
|
659 |
-
"category": "serif",
|
660 |
-
"variants": [
|
661 |
-
"regular",
|
662 |
-
"italic",
|
663 |
-
"700",
|
664 |
-
"700italic"
|
665 |
-
],
|
666 |
-
"subsets": [
|
667 |
-
"arabic",
|
668 |
-
"latin"
|
669 |
-
],
|
670 |
-
"version": "v7",
|
671 |
-
"lastModified": "2015-04-07",
|
672 |
-
"files": {
|
673 |
-
"regular": "http://fonts.gstatic.com/s/amiri/v7/ATARrPmSew75SlpOw2YABQ.ttf",
|
674 |
-
"italic": "http://fonts.gstatic.com/s/amiri/v7/3t1yTQlLUXBw8htrqlXBrw.ttf",
|
675 |
-
"700": "http://fonts.gstatic.com/s/amiri/v7/WQsR_moz-FNqVwGYgptqiA.ttf",
|
676 |
-
"700italic": "http://fonts.gstatic.com/s/amiri/v7/uF8aNEyD0bxMeTBg9bFDSPesZW2xOQ-xsNqO47m55DA.ttf"
|
677 |
-
}
|
678 |
-
},
|
679 |
-
{
|
680 |
-
"kind": "webfonts#webfont",
|
681 |
-
"family": "Amita",
|
682 |
-
"category": "handwriting",
|
683 |
-
"variants": [
|
684 |
-
"regular",
|
685 |
-
"700"
|
686 |
-
],
|
687 |
-
"subsets": [
|
688 |
-
"devanagari",
|
689 |
-
"latin-ext",
|
690 |
-
"latin"
|
691 |
-
],
|
692 |
-
"version": "v1",
|
693 |
-
"lastModified": "2015-06-03",
|
694 |
-
"files": {
|
695 |
-
"regular": "http://fonts.gstatic.com/s/amita/v1/RhdhGBXSJqkHo6g7miTEcQ.ttf",
|
696 |
-
"700": "http://fonts.gstatic.com/s/amita/v1/cIYA2Lzp7l2pcGsqpUidBg.ttf"
|
697 |
-
}
|
698 |
-
},
|
699 |
-
{
|
700 |
-
"kind": "webfonts#webfont",
|
701 |
-
"family": "Anaheim",
|
702 |
-
"category": "sans-serif",
|
703 |
-
"variants": [
|
704 |
-
"regular"
|
705 |
-
],
|
706 |
-
"subsets": [
|
707 |
-
"latin-ext",
|
708 |
-
"latin"
|
709 |
-
],
|
710 |
-
"version": "v4",
|
711 |
-
"lastModified": "2016-02-23",
|
712 |
-
"files": {
|
713 |
-
"regular": "http://fonts.gstatic.com/s/anaheim/v4/t-z8aXHMpgI2gjN_rIflKA.ttf"
|
714 |
-
}
|
715 |
-
},
|
716 |
-
{
|
717 |
-
"kind": "webfonts#webfont",
|
718 |
-
"family": "Andada",
|
719 |
-
"category": "serif",
|
720 |
-
"variants": [
|
721 |
-
"regular"
|
722 |
-
],
|
723 |
-
"subsets": [
|
724 |
-
"latin-ext",
|
725 |
-
"latin"
|
726 |
-
],
|
727 |
-
"version": "v7",
|
728 |
-
"lastModified": "2016-02-23",
|
729 |
-
"files": {
|
730 |
-
"regular": "http://fonts.gstatic.com/s/andada/v7/rSFaDqNNQBRw3y19MB5Y4w.ttf"
|
731 |
-
}
|
732 |
-
},
|
733 |
-
{
|
734 |
-
"kind": "webfonts#webfont",
|
735 |
-
"family": "Andika",
|
736 |
-
"category": "sans-serif",
|
737 |
-
"variants": [
|
738 |
-
"regular"
|
739 |
-
],
|
740 |
-
"subsets": [
|
741 |
-
"latin-ext",
|
742 |
-
"vietnamese",
|
743 |
-
"cyrillic-ext",
|
744 |
-
"cyrillic",
|
745 |
-
"latin"
|
746 |
-
],
|
747 |
-
"version": "v7",
|
748 |
-
"lastModified": "2016-02-24",
|
749 |
-
"files": {
|
750 |
-
"regular": "http://fonts.gstatic.com/s/andika/v7/oe-ag1G0lcqZ3IXfeEgaGg.ttf"
|
751 |
-
}
|
752 |
-
},
|
753 |
-
{
|
754 |
-
"kind": "webfonts#webfont",
|
755 |
-
"family": "Angkor",
|
756 |
-
"category": "display",
|
757 |
-
"variants": [
|
758 |
-
"regular"
|
759 |
-
],
|
760 |
-
"subsets": [
|
761 |
-
"khmer"
|
762 |
-
],
|
763 |
-
"version": "v8",
|
764 |
-
"lastModified": "2015-04-06",
|
765 |
-
"files": {
|
766 |
-
"regular": "http://fonts.gstatic.com/s/angkor/v8/DLpLgIS-8F10ecwKqCm95Q.ttf"
|
767 |
-
}
|
768 |
-
},
|
769 |
-
{
|
770 |
-
"kind": "webfonts#webfont",
|
771 |
-
"family": "Annie Use Your Telescope",
|
772 |
-
"category": "handwriting",
|
773 |
-
"variants": [
|
774 |
-
"regular"
|
775 |
-
],
|
776 |
-
"subsets": [
|
777 |
-
"latin"
|
778 |
-
],
|
779 |
-
"version": "v6",
|
780 |
-
"lastModified": "2016-02-23",
|
781 |
-
"files": {
|
782 |
-
"regular": "http://fonts.gstatic.com/s/annieuseyourtelescope/v6/2cuiO5VmaR09C8SLGEQjGqbp7mtG8sPlcZvOaO8HBak.ttf"
|
783 |
-
}
|
784 |
-
},
|
785 |
-
{
|
786 |
-
"kind": "webfonts#webfont",
|
787 |
-
"family": "Anonymous Pro",
|
788 |
-
"category": "monospace",
|
789 |
-
"variants": [
|
790 |
-
"regular",
|
791 |
-
"italic",
|
792 |
-
"700",
|
793 |
-
"700italic"
|
794 |
-
],
|
795 |
-
"subsets": [
|
796 |
-
"latin-ext",
|
797 |
-
"cyrillic",
|
798 |
-
"greek",
|
799 |
-
"latin"
|
800 |
-
],
|
801 |
-
"version": "v8",
|
802 |
-
"lastModified": "2016-02-23",
|
803 |
-
"files": {
|
804 |
-
"regular": "http://fonts.gstatic.com/s/anonymouspro/v8/Zhfjj_gat3waL4JSju74E-V_5zh5b-_HiooIRUBwn1A.ttf",
|
805 |
-
"italic": "http://fonts.gstatic.com/s/anonymouspro/v8/q0u6LFHwttnT_69euiDbWKwIsuKDCXG0NQm7BvAgx-c.ttf",
|
806 |
-
"700": "http://fonts.gstatic.com/s/anonymouspro/v8/WDf5lZYgdmmKhO8E1AQud--Cz_5MeePnXDAcLNWyBME.ttf",
|
807 |
-
"700italic": "http://fonts.gstatic.com/s/anonymouspro/v8/_fVr_XGln-cetWSUc-JpfA1LL9bfs7wyIp6F8OC9RxA.ttf"
|
808 |
-
}
|
809 |
-
},
|
810 |
-
{
|
811 |
-
"kind": "webfonts#webfont",
|
812 |
-
"family": "Antic",
|
813 |
-
"category": "sans-serif",
|
814 |
-
"variants": [
|
815 |
-
"regular"
|
816 |
-
],
|
817 |
-
"subsets": [
|
818 |
-
"latin"
|
819 |
-
],
|
820 |
-
"version": "v7",
|
821 |
-
"lastModified": "2016-02-23",
|
822 |
-
"files": {
|
823 |
-
"regular": "http://fonts.gstatic.com/s/antic/v7/hEa8XCNM7tXGzD0Uk0AipA.ttf"
|
824 |
-
}
|
825 |
-
},
|
826 |
-
{
|
827 |
-
"kind": "webfonts#webfont",
|
828 |
-
"family": "Antic Didone",
|
829 |
-
"category": "serif",
|
830 |
-
"variants": [
|
831 |
-
"regular"
|
832 |
-
],
|
833 |
-
"subsets": [
|
834 |
-
"latin"
|
835 |
-
],
|
836 |
-
"version": "v4",
|
837 |
-
"lastModified": "2016-02-23",
|
838 |
-
"files": {
|
839 |
-
"regular": "http://fonts.gstatic.com/s/anticdidone/v4/r3nJcTDuOluOL6LGDV1vRy3USBnSvpkopQaUR-2r7iU.ttf"
|
840 |
-
}
|
841 |
-
},
|
842 |
-
{
|
843 |
-
"kind": "webfonts#webfont",
|
844 |
-
"family": "Antic Slab",
|
845 |
-
"category": "serif",
|
846 |
-
"variants": [
|
847 |
-
"regular"
|
848 |
-
],
|
849 |
-
"subsets": [
|
850 |
-
"latin"
|
851 |
-
],
|
852 |
-
"version": "v4",
|
853 |
-
"lastModified": "2016-02-23",
|
854 |
-
"files": {
|
855 |
-
"regular": "http://fonts.gstatic.com/s/anticslab/v4/PSbJCTKkAS7skPdkd7AKEvesZW2xOQ-xsNqO47m55DA.ttf"
|
856 |
-
}
|
857 |
-
},
|
858 |
-
{
|
859 |
-
"kind": "webfonts#webfont",
|
860 |
-
"family": "Anton",
|
861 |
-
"category": "sans-serif",
|
862 |
-
"variants": [
|
863 |
-
"regular"
|
864 |
-
],
|
865 |
-
"subsets": [
|
866 |
-
"latin-ext",
|
867 |
-
"latin"
|
868 |
-
],
|
869 |
-
"version": "v7",
|
870 |
-
"lastModified": "2016-02-23",
|
871 |
-
"files": {
|
872 |
-
"regular": "http://fonts.gstatic.com/s/anton/v7/XIbCenm-W0IRHWYIh7CGUQ.ttf"
|
873 |
-
}
|
874 |
-
},
|
875 |
-
{
|
876 |
-
"kind": "webfonts#webfont",
|
877 |
-
"family": "Arapey",
|
878 |
-
"category": "serif",
|
879 |
-
"variants": [
|
880 |
-
"regular",
|
881 |
-
"italic"
|
882 |
-
],
|
883 |
-
"subsets": [
|
884 |
-
"latin"
|
885 |
-
],
|
886 |
-
"version": "v5",
|
887 |
-
"lastModified": "2016-02-23",
|
888 |
-
"files": {
|
889 |
-
"regular": "http://fonts.gstatic.com/s/arapey/v5/dqu823lrSYn8T2gApTdslA.ttf",
|
890 |
-
"italic": "http://fonts.gstatic.com/s/arapey/v5/pY-Xi5JNBpaWxy2tZhEm5A.ttf"
|
891 |
-
}
|
892 |
-
},
|
893 |
-
{
|
894 |
-
"kind": "webfonts#webfont",
|
895 |
-
"family": "Arbutus",
|
896 |
-
"category": "display",
|
897 |
-
"variants": [
|
898 |
-
"regular"
|
899 |
-
],
|
900 |
-
"subsets": [
|
901 |
-
"latin-ext",
|
902 |
-
"latin"
|
903 |
-
],
|
904 |
-
"version": "v5",
|
905 |
-
"lastModified": "2016-02-23",
|
906 |
-
"files": {
|
907 |
-
"regular": "http://fonts.gstatic.com/s/arbutus/v5/Go_hurxoUsn5MnqNVQgodQ.ttf"
|
908 |
-
}
|
909 |
-
},
|
910 |
-
{
|
911 |
-
"kind": "webfonts#webfont",
|
912 |
-
"family": "Arbutus Slab",
|
913 |
-
"category": "serif",
|
914 |
-
"variants": [
|
915 |
-
"regular"
|
916 |
-
],
|
917 |
-
"subsets": [
|
918 |
-
"latin-ext",
|
919 |
-
"latin"
|
920 |
-
],
|
921 |
-
"version": "v4",
|
922 |
-
"lastModified": "2016-02-23",
|
923 |
-
"files": {
|
924 |
-
"regular": "http://fonts.gstatic.com/s/arbutusslab/v4/6k3Yp6iS9l4jRIpynA8qMy3USBnSvpkopQaUR-2r7iU.ttf"
|
925 |
-
}
|
926 |
-
},
|
927 |
-
{
|
928 |
-
"kind": "webfonts#webfont",
|
929 |
-
"family": "Architects Daughter",
|
930 |
-
"category": "handwriting",
|
931 |
-
"variants": [
|
932 |
-
"regular"
|
933 |
-
],
|
934 |
-
"subsets": [
|
935 |
-
"latin"
|
936 |
-
],
|
937 |
-
"version": "v6",
|
938 |
-
"lastModified": "2016-02-23",
|
939 |
-
"files": {
|
940 |
-
"regular": "http://fonts.gstatic.com/s/architectsdaughter/v6/RXTgOOQ9AAtaVOHxx0IUBMCy0EhZjHzu-y0e6uLf4Fg.ttf"
|
941 |
-
}
|
942 |
-
},
|
943 |
-
{
|
944 |
-
"kind": "webfonts#webfont",
|
945 |
-
"family": "Archivo Black",
|
946 |
-
"category": "sans-serif",
|
947 |
-
"variants": [
|
948 |
-
"regular"
|
949 |
-
],
|
950 |
-
"subsets": [
|
951 |
-
"latin-ext",
|
952 |
-
"latin"
|
953 |
-
],
|
954 |
-
"version": "v4",
|
955 |
-
"lastModified": "2016-02-23",
|
956 |
-
"files": {
|
957 |
-
"regular": "http://fonts.gstatic.com/s/archivoblack/v4/WoAoVT7K3k7hHfxKbvB6B51XQG8isOYYJhPIYAyrESQ.ttf"
|
958 |
-
}
|
959 |
-
},
|
960 |
-
{
|
961 |
-
"kind": "webfonts#webfont",
|
962 |
-
"family": "Archivo Narrow",
|
963 |
-
"category": "sans-serif",
|
964 |
-
"variants": [
|
965 |
-
"regular",
|
966 |
-
"italic",
|
967 |
-
"700",
|
968 |
-
"700italic"
|
969 |
-
],
|
970 |
-
"subsets": [
|
971 |
-
"latin-ext",
|
972 |
-
"latin"
|
973 |
-
],
|
974 |
-
"version": "v5",
|
975 |
-
"lastModified": "2016-02-23",
|
976 |
-
"files": {
|
977 |
-
"regular": "http://fonts.gstatic.com/s/archivonarrow/v5/DsLzC9scoPnrGiwYYMQXppTvAuddT2xDMbdz0mdLyZY.ttf",
|
978 |
-
"italic": "http://fonts.gstatic.com/s/archivonarrow/v5/vqsrtPCpTU3tJlKfuXP5zUpmlyBQEFfdE6dERLXdQGQ.ttf",
|
979 |
-
"700": "http://fonts.gstatic.com/s/archivonarrow/v5/M__Wu4PAmHf4YZvQM8tWsMLtdzs3iyjn_YuT226ZsLU.ttf",
|
980 |
-
"700italic": "http://fonts.gstatic.com/s/archivonarrow/v5/wG6O733y5zHl4EKCOh8rSTg5KB8MNJ4uPAETq9naQO8.ttf"
|
981 |
-
}
|
982 |
-
},
|
983 |
-
{
|
984 |
-
"kind": "webfonts#webfont",
|
985 |
-
"family": "Arimo",
|
986 |
-
"category": "sans-serif",
|
987 |
-
"variants": [
|
988 |
-
"regular",
|
989 |
-
"italic",
|
990 |
-
"700",
|
991 |
-
"700italic"
|
992 |
-
],
|
993 |
-
"subsets": [
|
994 |
-
"latin-ext",
|
995 |
-
"greek-ext",
|
996 |
-
"vietnamese",
|
997 |
-
"cyrillic-ext",
|
998 |
-
"hebrew",
|
999 |
-
"cyrillic",
|
1000 |
-
"greek",
|
1001 |
-
"latin"
|
1002 |
-
],
|
1003 |
-
"version": "v9",
|
1004 |
-
"lastModified": "2016-02-23",
|
1005 |
-
"files": {
|
1006 |
-
"regular": "http://fonts.gstatic.com/s/arimo/v9/Gpeo80g-5ji2CcyXWnzh7g.ttf",
|
1007 |
-
"italic": "http://fonts.gstatic.com/s/arimo/v9/_OdGbnX2-qQ96C4OjhyuPw.ttf",
|
1008 |
-
"700": "http://fonts.gstatic.com/s/arimo/v9/ZItXugREyvV9LnbY_gxAmw.ttf",
|
1009 |
-
"700italic": "http://fonts.gstatic.com/s/arimo/v9/__nOLWqmeXdhfr0g7GaFePesZW2xOQ-xsNqO47m55DA.ttf"
|
1010 |
-
}
|
1011 |
-
},
|
1012 |
-
{
|
1013 |
-
"kind": "webfonts#webfont",
|
1014 |
-
"family": "Arizonia",
|
1015 |
-
"category": "handwriting",
|
1016 |
-
"variants": [
|
1017 |
-
"regular"
|
1018 |
-
],
|
1019 |
-
"subsets": [
|
1020 |
-
"latin-ext",
|
1021 |
-
"latin"
|
1022 |
-
],
|
1023 |
-
"version": "v6",
|
1024 |
-
"lastModified": "2016-02-23",
|
1025 |
-
"files": {
|
1026 |
-
"regular": "http://fonts.gstatic.com/s/arizonia/v6/yzJqkHZqryZBTM7RKYV9Wg.ttf"
|
1027 |
-
}
|
1028 |
-
},
|
1029 |
-
{
|
1030 |
-
"kind": "webfonts#webfont",
|
1031 |
-
"family": "Armata",
|
1032 |
-
"category": "sans-serif",
|
1033 |
-
"variants": [
|
1034 |
-
"regular"
|
1035 |
-
],
|
1036 |
-
"subsets": [
|
1037 |
-
"latin-ext",
|
1038 |
-
"latin"
|
1039 |
-
],
|
1040 |
-
"version": "v6",
|
1041 |
-
"lastModified": "2016-02-23",
|
1042 |
-
"files": {
|
1043 |
-
"regular": "http://fonts.gstatic.com/s/armata/v6/1H8FwGgIRrbYtxSfXhOHlQ.ttf"
|
1044 |
-
}
|
1045 |
-
},
|
1046 |
-
{
|
1047 |
-
"kind": "webfonts#webfont",
|
1048 |
-
"family": "Artifika",
|
1049 |
-
"category": "serif",
|
1050 |
-
"variants": [
|
1051 |
-
"regular"
|
1052 |
-
],
|
1053 |
-
"subsets": [
|
1054 |
-
"latin"
|
1055 |
-
],
|
1056 |
-
"version": "v6",
|
1057 |
-
"lastModified": "2016-02-23",
|
1058 |
-
"files": {
|
1059 |
-
"regular": "http://fonts.gstatic.com/s/artifika/v6/Ekfp4H4QG7D-WsABDOyj8g.ttf"
|
1060 |
-
}
|
1061 |
-
},
|
1062 |
-
{
|
1063 |
-
"kind": "webfonts#webfont",
|
1064 |
-
"family": "Arvo",
|
1065 |
-
"category": "serif",
|
1066 |
-
"variants": [
|
1067 |
-
"regular",
|
1068 |
-
"italic",
|
1069 |
-
"700",
|
1070 |
-
"700italic"
|
1071 |
-
],
|
1072 |
-
"subsets": [
|
1073 |
-
"latin"
|
1074 |
-
],
|
1075 |
-
"version": "v9",
|
1076 |
-
"lastModified": "2016-02-23",
|
1077 |
-
"files": {
|
1078 |
-
"regular": "http://fonts.gstatic.com/s/arvo/v9/vvWPwz-PlZEwjOOIKqoZzA.ttf",
|
1079 |
-
"italic": "http://fonts.gstatic.com/s/arvo/v9/id5a4BCjbenl5Gkqonw_Rw.ttf",
|
1080 |
-
"700": "http://fonts.gstatic.com/s/arvo/v9/OB3FDST7U38u3OjPK_vvRQ.ttf",
|
1081 |
-
"700italic": "http://fonts.gstatic.com/s/arvo/v9/Hvl2MuWoXLaCy2v6MD4Yvw.ttf"
|
1082 |
-
}
|
1083 |
-
},
|
1084 |
-
{
|
1085 |
-
"kind": "webfonts#webfont",
|
1086 |
-
"family": "Arya",
|
1087 |
-
"category": "sans-serif",
|
1088 |
-
"variants": [
|
1089 |
-
"regular",
|
1090 |
-
"700"
|
1091 |
-
],
|
1092 |
-
"subsets": [
|
1093 |
-
"devanagari",
|
1094 |
-
"latin-ext",
|
1095 |
-
"latin"
|
1096 |
-
],
|
1097 |
-
"version": "v1",
|
1098 |
-
"lastModified": "2015-05-21",
|
1099 |
-
"files": {
|
1100 |
-
"regular": "http://fonts.gstatic.com/s/arya/v1/xEVqtU3v8QLospHKpDaYEw.ttf",
|
1101 |
-
"700": "http://fonts.gstatic.com/s/arya/v1/N13tgOvG7VTXawiI-fJiQA.ttf"
|
1102 |
-
}
|
1103 |
-
},
|
1104 |
-
{
|
1105 |
-
"kind": "webfonts#webfont",
|
1106 |
-
"family": "Asap",
|
1107 |
-
"category": "sans-serif",
|
1108 |
-
"variants": [
|
1109 |
-
"regular",
|
1110 |
-
"italic",
|
1111 |
-
"700",
|
1112 |
-
"700italic"
|
1113 |
-
],
|
1114 |
-
"subsets": [
|
1115 |
-
"latin-ext",
|
1116 |
-
"latin"
|
1117 |
-
],
|
1118 |
-
"version": "v4",
|
1119 |
-
"lastModified": "2016-02-23",
|
1120 |
-
"files": {
|
1121 |
-
"regular": "http://fonts.gstatic.com/s/asap/v4/2lf-1MDR8tsTpEtvJmr2hA.ttf",
|
1122 |
-
"italic": "http://fonts.gstatic.com/s/asap/v4/mwxNHf8QS8gNWCAMwkJNIg.ttf",
|
1123 |
-
"700": "http://fonts.gstatic.com/s/asap/v4/o5RUA7SsJ80M8oDFBnrDbg.ttf",
|
1124 |
-
"700italic": "http://fonts.gstatic.com/s/asap/v4/_rZz9y2oXc09jT5T6BexLQ.ttf"
|
1125 |
-
}
|
1126 |
-
},
|
1127 |
-
{
|
1128 |
-
"kind": "webfonts#webfont",
|
1129 |
-
"family": "Asar",
|
1130 |
-
"category": "serif",
|
1131 |
-
"variants": [
|
1132 |
-
"regular"
|
1133 |
-
],
|
1134 |
-
"subsets": [
|
1135 |
-
"devanagari",
|
1136 |
-
"latin-ext",
|
1137 |
-
"latin"
|
1138 |
-
],
|
1139 |
-
"version": "v1",
|
1140 |
-
"lastModified": "2015-06-17",
|
1141 |
-
"files": {
|
1142 |
-
"regular": "http://fonts.gstatic.com/s/asar/v1/mSmn3H5CcMA84CZ586X7WQ.ttf"
|
1143 |
-
}
|
1144 |
-
},
|
1145 |
-
{
|
1146 |
-
"kind": "webfonts#webfont",
|
1147 |
-
"family": "Asset",
|
1148 |
-
"category": "display",
|
1149 |
-
"variants": [
|
1150 |
-
"regular"
|
1151 |
-
],
|
1152 |
-
"subsets": [
|
1153 |
-
"latin"
|
1154 |
-
],
|
1155 |
-
"version": "v6",
|
1156 |
-
"lastModified": "2016-02-23",
|
1157 |
-
"files": {
|
1158 |
-
"regular": "http://fonts.gstatic.com/s/asset/v6/hfPmqY-JzuR1lULlQf9iTg.ttf"
|
1159 |
-
}
|
1160 |
-
},
|
1161 |
-
{
|
1162 |
-
"kind": "webfonts#webfont",
|
1163 |
-
"family": "Astloch",
|
1164 |
-
"category": "display",
|
1165 |
-
"variants": [
|
1166 |
-
"regular",
|
1167 |
-
"700"
|
1168 |
-
],
|
1169 |
-
"subsets": [
|
1170 |
-
"latin"
|
1171 |
-
],
|
1172 |
-
"version": "v6",
|
1173 |
-
"lastModified": "2016-02-23",
|
1174 |
-
"files": {
|
1175 |
-
"regular": "http://fonts.gstatic.com/s/astloch/v6/fmbitVmHYLQP7MGPuFgpag.ttf",
|
1176 |
-
"700": "http://fonts.gstatic.com/s/astloch/v6/aPkhM2tL-tz1jX6aX2rvo_esZW2xOQ-xsNqO47m55DA.ttf"
|
1177 |
-
}
|
1178 |
-
},
|
1179 |
-
{
|
1180 |
-
"kind": "webfonts#webfont",
|
1181 |
-
"family": "Asul",
|
1182 |
-
"category": "sans-serif",
|
1183 |
-
"variants": [
|
1184 |
-
"regular",
|
1185 |
-
"700"
|
1186 |
-
],
|
1187 |
-
"subsets": [
|
1188 |
-
"latin"
|
1189 |
-
],
|
1190 |
-
"version": "v5",
|
1191 |
-
"lastModified": "2016-02-23",
|
1192 |
-
"files": {
|
1193 |
-
"regular": "http://fonts.gstatic.com/s/asul/v5/9qpsNR_OOwyOYyo2N0IbBw.ttf",
|
1194 |
-
"700": "http://fonts.gstatic.com/s/asul/v5/uO8uNmxaq87-DdPmkEg5Gg.ttf"
|
1195 |
-
}
|
1196 |
-
},
|
1197 |
-
{
|
1198 |
-
"kind": "webfonts#webfont",
|
1199 |
-
"family": "Atomic Age",
|
1200 |
-
"category": "display",
|
1201 |
-
"variants": [
|
1202 |
-
"regular"
|
1203 |
-
],
|
1204 |
-
"subsets": [
|
1205 |
-
"latin"
|
1206 |
-
],
|
1207 |
-
"version": "v7",
|
1208 |
-
"lastModified": "2016-02-23",
|
1209 |
-
"files": {
|
1210 |
-
"regular": "http://fonts.gstatic.com/s/atomicage/v7/WvBMe4FxANIKpo6Oi0mVJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
1211 |
-
}
|
1212 |
-
},
|
1213 |
-
{
|
1214 |
-
"kind": "webfonts#webfont",
|
1215 |
-
"family": "Aubrey",
|
1216 |
-
"category": "display",
|
1217 |
-
"variants": [
|
1218 |
-
"regular"
|
1219 |
-
],
|
1220 |
-
"subsets": [
|
1221 |
-
"latin"
|
1222 |
-
],
|
1223 |
-
"version": "v8",
|
1224 |
-
"lastModified": "2016-02-23",
|
1225 |
-
"files": {
|
1226 |
-
"regular": "http://fonts.gstatic.com/s/aubrey/v8/zo9w8klO8bmOQIMajQ2aTA.ttf"
|
1227 |
-
}
|
1228 |
-
},
|
1229 |
-
{
|
1230 |
-
"kind": "webfonts#webfont",
|
1231 |
-
"family": "Audiowide",
|
1232 |
-
"category": "display",
|
1233 |
-
"variants": [
|
1234 |
-
"regular"
|
1235 |
-
],
|
1236 |
-
"subsets": [
|
1237 |
-
"latin-ext",
|
1238 |
-
"latin"
|
1239 |
-
],
|
1240 |
-
"version": "v4",
|
1241 |
-
"lastModified": "2016-02-23",
|
1242 |
-
"files": {
|
1243 |
-
"regular": "http://fonts.gstatic.com/s/audiowide/v4/yGcwRZB6VmoYhPUYT-mEow.ttf"
|
1244 |
-
}
|
1245 |
-
},
|
1246 |
-
{
|
1247 |
-
"kind": "webfonts#webfont",
|
1248 |
-
"family": "Autour One",
|
1249 |
-
"category": "display",
|
1250 |
-
"variants": [
|
1251 |
-
"regular"
|
1252 |
-
],
|
1253 |
-
"subsets": [
|
1254 |
-
"latin-ext",
|
1255 |
-
"latin"
|
1256 |
-
],
|
1257 |
-
"version": "v4",
|
1258 |
-
"lastModified": "2016-02-23",
|
1259 |
-
"files": {
|
1260 |
-
"regular": "http://fonts.gstatic.com/s/autourone/v4/2xmQBcg7FN72jaQRFZPIDvesZW2xOQ-xsNqO47m55DA.ttf"
|
1261 |
-
}
|
1262 |
-
},
|
1263 |
-
{
|
1264 |
-
"kind": "webfonts#webfont",
|
1265 |
-
"family": "Average",
|
1266 |
-
"category": "serif",
|
1267 |
-
"variants": [
|
1268 |
-
"regular"
|
1269 |
-
],
|
1270 |
-
"subsets": [
|
1271 |
-
"latin-ext",
|
1272 |
-
"latin"
|
1273 |
-
],
|
1274 |
-
"version": "v4",
|
1275 |
-
"lastModified": "2016-02-23",
|
1276 |
-
"files": {
|
1277 |
-
"regular": "http://fonts.gstatic.com/s/average/v4/aHUibBqdDbVYl5FM48pxyQ.ttf"
|
1278 |
-
}
|
1279 |
-
},
|
1280 |
-
{
|
1281 |
-
"kind": "webfonts#webfont",
|
1282 |
-
"family": "Average Sans",
|
1283 |
-
"category": "sans-serif",
|
1284 |
-
"variants": [
|
1285 |
-
"regular"
|
1286 |
-
],
|
1287 |
-
"subsets": [
|
1288 |
-
"latin-ext",
|
1289 |
-
"latin"
|
1290 |
-
],
|
1291 |
-
"version": "v4",
|
1292 |
-
"lastModified": "2016-02-23",
|
1293 |
-
"files": {
|
1294 |
-
"regular": "http://fonts.gstatic.com/s/averagesans/v4/dnU3R-5A_43y5bIyLztPsS3USBnSvpkopQaUR-2r7iU.ttf"
|
1295 |
-
}
|
1296 |
-
},
|
1297 |
-
{
|
1298 |
-
"kind": "webfonts#webfont",
|
1299 |
-
"family": "Averia Gruesa Libre",
|
1300 |
-
"category": "display",
|
1301 |
-
"variants": [
|
1302 |
-
"regular"
|
1303 |
-
],
|
1304 |
-
"subsets": [
|
1305 |
-
"latin-ext",
|
1306 |
-
"latin"
|
1307 |
-
],
|
1308 |
-
"version": "v4",
|
1309 |
-
"lastModified": "2016-02-23",
|
1310 |
-
"files": {
|
1311 |
-
"regular": "http://fonts.gstatic.com/s/averiagruesalibre/v4/10vbZTOoN6T8D-nvDzwRFyXcKHuZXlCN8VkWHpkUzKM.ttf"
|
1312 |
-
}
|
1313 |
-
},
|
1314 |
-
{
|
1315 |
-
"kind": "webfonts#webfont",
|
1316 |
-
"family": "Averia Libre",
|
1317 |
-
"category": "display",
|
1318 |
-
"variants": [
|
1319 |
-
"300",
|
1320 |
-
"300italic",
|
1321 |
-
"regular",
|
1322 |
-
"italic",
|
1323 |
-
"700",
|
1324 |
-
"700italic"
|
1325 |
-
],
|
1326 |
-
"subsets": [
|
1327 |
-
"latin"
|
1328 |
-
],
|
1329 |
-
"version": "v4",
|
1330 |
-
"lastModified": "2016-02-23",
|
1331 |
-
"files": {
|
1332 |
-
"300": "http://fonts.gstatic.com/s/averialibre/v4/r6hGL8sSLm4dTzOPXgx5XacQoVhARpoaILP7amxE_8g.ttf",
|
1333 |
-
"300italic": "http://fonts.gstatic.com/s/averialibre/v4/I6wAYuAvOgT7el2ePj2nkina0FLWfcB-J_SAYmcAXaI.ttf",
|
1334 |
-
"regular": "http://fonts.gstatic.com/s/averialibre/v4/rYVgHZZQICWnhjguGsBspC3USBnSvpkopQaUR-2r7iU.ttf",
|
1335 |
-
"italic": "http://fonts.gstatic.com/s/averialibre/v4/1etzuoNxVHR8F533EkD1WfMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
1336 |
-
"700": "http://fonts.gstatic.com/s/averialibre/v4/r6hGL8sSLm4dTzOPXgx5XUD2ttfZwueP-QU272T9-k4.ttf",
|
1337 |
-
"700italic": "http://fonts.gstatic.com/s/averialibre/v4/I6wAYuAvOgT7el2ePj2nkvAs9-1nE9qOqhChW0m4nDE.ttf"
|
1338 |
-
}
|
1339 |
-
},
|
1340 |
-
{
|
1341 |
-
"kind": "webfonts#webfont",
|
1342 |
-
"family": "Averia Sans Libre",
|
1343 |
-
"category": "display",
|
1344 |
-
"variants": [
|
1345 |
-
"300",
|
1346 |
-
"300italic",
|
1347 |
-
"regular",
|
1348 |
-
"italic",
|
1349 |
-
"700",
|
1350 |
-
"700italic"
|
1351 |
-
],
|
1352 |
-
"subsets": [
|
1353 |
-
"latin"
|
1354 |
-
],
|
1355 |
-
"version": "v4",
|
1356 |
-
"lastModified": "2016-02-23",
|
1357 |
-
"files": {
|
1358 |
-
"300": "http://fonts.gstatic.com/s/averiasanslibre/v4/_9-jTfQjaBsWAF_yp5z-V4CP_KG_g80s1KXiBtJHoNc.ttf",
|
1359 |
-
"300italic": "http://fonts.gstatic.com/s/averiasanslibre/v4/o7BEIK-fG3Ykc5Rzteh88YuyGu4JqttndUh4gRKxic0.ttf",
|
1360 |
-
"regular": "http://fonts.gstatic.com/s/averiasanslibre/v4/yRJpjT39KxACO9F31mj_LqV8_KRn4epKAjTFK1s1fsg.ttf",
|
1361 |
-
"italic": "http://fonts.gstatic.com/s/averiasanslibre/v4/COEzR_NPBSUOl3pFwPbPoCZU2HnUZT1xVKaIrHDioao.ttf",
|
1362 |
-
"700": "http://fonts.gstatic.com/s/averiasanslibre/v4/_9-jTfQjaBsWAF_yp5z-V8QwVOrz1y5GihpZmtKLhlI.ttf",
|
1363 |
-
"700italic": "http://fonts.gstatic.com/s/averiasanslibre/v4/o7BEIK-fG3Ykc5Rzteh88bXy1DXgmJcVtKjM5UWamMs.ttf"
|
1364 |
-
}
|
1365 |
-
},
|
1366 |
-
{
|
1367 |
-
"kind": "webfonts#webfont",
|
1368 |
-
"family": "Averia Serif Libre",
|
1369 |
-
"category": "display",
|
1370 |
-
"variants": [
|
1371 |
-
"300",
|
1372 |
-
"300italic",
|
1373 |
-
"regular",
|
1374 |
-
"italic",
|
1375 |
-
"700",
|
1376 |
-
"700italic"
|
1377 |
-
],
|
1378 |
-
"subsets": [
|
1379 |
-
"latin"
|
1380 |
-
],
|
1381 |
-
"version": "v5",
|
1382 |
-
"lastModified": "2016-02-23",
|
1383 |
-
"files": {
|
1384 |
-
"300": "http://fonts.gstatic.com/s/averiaseriflibre/v5/yvITAdr5D1nlsdFswJAb8SmC4gFJ2PHmfdVKEd_5S9M.ttf",
|
1385 |
-
"300italic": "http://fonts.gstatic.com/s/averiaseriflibre/v5/YOLFXyye4sZt6AZk1QybCG2okl0bU63CauowU4iApig.ttf",
|
1386 |
-
"regular": "http://fonts.gstatic.com/s/averiaseriflibre/v5/fdtF30xa_Erw0zAzOoG4BZqY66i8AUyI16fGqw0iAew.ttf",
|
1387 |
-
"italic": "http://fonts.gstatic.com/s/averiaseriflibre/v5/o9qhvK9iT5iDWfyhQUe-6Ru_b0bTq5iipbJ9hhgHJ6U.ttf",
|
1388 |
-
"700": "http://fonts.gstatic.com/s/averiaseriflibre/v5/yvITAdr5D1nlsdFswJAb8Q50KV5TaOVolur4zV2iZsg.ttf",
|
1389 |
-
"700italic": "http://fonts.gstatic.com/s/averiaseriflibre/v5/YOLFXyye4sZt6AZk1QybCNxohRXP4tNDqG3X4Hqn21k.ttf"
|
1390 |
-
}
|
1391 |
-
},
|
1392 |
-
{
|
1393 |
-
"kind": "webfonts#webfont",
|
1394 |
-
"family": "Bad Script",
|
1395 |
-
"category": "handwriting",
|
1396 |
-
"variants": [
|
1397 |
-
"regular"
|
1398 |
-
],
|
1399 |
-
"subsets": [
|
1400 |
-
"cyrillic",
|
1401 |
-
"latin"
|
1402 |
-
],
|
1403 |
-
"version": "v5",
|
1404 |
-
"lastModified": "2016-02-23",
|
1405 |
-
"files": {
|
1406 |
-
"regular": "http://fonts.gstatic.com/s/badscript/v5/cRyUs0nJ2eMQFHwBsZNRXfesZW2xOQ-xsNqO47m55DA.ttf"
|
1407 |
-
}
|
1408 |
-
},
|
1409 |
-
{
|
1410 |
-
"kind": "webfonts#webfont",
|
1411 |
-
"family": "Balthazar",
|
1412 |
-
"category": "serif",
|
1413 |
-
"variants": [
|
1414 |
-
"regular"
|
1415 |
-
],
|
1416 |
-
"subsets": [
|
1417 |
-
"latin"
|
1418 |
-
],
|
1419 |
-
"version": "v5",
|
1420 |
-
"lastModified": "2016-02-23",
|
1421 |
-
"files": {
|
1422 |
-
"regular": "http://fonts.gstatic.com/s/balthazar/v5/WgbaSIs6dJAGXJ0qbz2xlw.ttf"
|
1423 |
-
}
|
1424 |
-
},
|
1425 |
-
{
|
1426 |
-
"kind": "webfonts#webfont",
|
1427 |
-
"family": "Bangers",
|
1428 |
-
"category": "display",
|
1429 |
-
"variants": [
|
1430 |
-
"regular"
|
1431 |
-
],
|
1432 |
-
"subsets": [
|
1433 |
-
"latin"
|
1434 |
-
],
|
1435 |
-
"version": "v8",
|
1436 |
-
"lastModified": "2016-02-23",
|
1437 |
-
"files": {
|
1438 |
-
"regular": "http://fonts.gstatic.com/s/bangers/v8/WAffdge5w99Xif-DLeqmcA.ttf"
|
1439 |
-
}
|
1440 |
-
},
|
1441 |
-
{
|
1442 |
-
"kind": "webfonts#webfont",
|
1443 |
-
"family": "Basic",
|
1444 |
-
"category": "sans-serif",
|
1445 |
-
"variants": [
|
1446 |
-
"regular"
|
1447 |
-
],
|
1448 |
-
"subsets": [
|
1449 |
-
"latin-ext",
|
1450 |
-
"latin"
|
1451 |
-
],
|
1452 |
-
"version": "v6",
|
1453 |
-
"lastModified": "2016-02-23",
|
1454 |
-
"files": {
|
1455 |
-
"regular": "http://fonts.gstatic.com/s/basic/v6/hNII2mS5Dxw5C0u_m3mXgA.ttf"
|
1456 |
-
}
|
1457 |
-
},
|
1458 |
-
{
|
1459 |
-
"kind": "webfonts#webfont",
|
1460 |
-
"family": "Battambang",
|
1461 |
-
"category": "display",
|
1462 |
-
"variants": [
|
1463 |
-
"regular",
|
1464 |
-
"700"
|
1465 |
-
],
|
1466 |
-
"subsets": [
|
1467 |
-
"khmer"
|
1468 |
-
],
|
1469 |
-
"version": "v9",
|
1470 |
-
"lastModified": "2015-04-06",
|
1471 |
-
"files": {
|
1472 |
-
"regular": "http://fonts.gstatic.com/s/battambang/v9/MzrUfQLefYum5vVGM3EZVPesZW2xOQ-xsNqO47m55DA.ttf",
|
1473 |
-
"700": "http://fonts.gstatic.com/s/battambang/v9/dezbRtMzfzAA99DmrCYRMgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
1474 |
-
}
|
1475 |
-
},
|
1476 |
-
{
|
1477 |
-
"kind": "webfonts#webfont",
|
1478 |
-
"family": "Baumans",
|
1479 |
-
"category": "display",
|
1480 |
-
"variants": [
|
1481 |
-
"regular"
|
1482 |
-
],
|
1483 |
-
"subsets": [
|
1484 |
-
"latin"
|
1485 |
-
],
|
1486 |
-
"version": "v5",
|
1487 |
-
"lastModified": "2016-02-23",
|
1488 |
-
"files": {
|
1489 |
-
"regular": "http://fonts.gstatic.com/s/baumans/v5/o0bFdPW1H5kd5saqqOcoVg.ttf"
|
1490 |
-
}
|
1491 |
-
},
|
1492 |
-
{
|
1493 |
-
"kind": "webfonts#webfont",
|
1494 |
-
"family": "Bayon",
|
1495 |
-
"category": "display",
|
1496 |
-
"variants": [
|
1497 |
-
"regular"
|
1498 |
-
],
|
1499 |
-
"subsets": [
|
1500 |
-
"khmer"
|
1501 |
-
],
|
1502 |
-
"version": "v8",
|
1503 |
-
"lastModified": "2015-04-03",
|
1504 |
-
"files": {
|
1505 |
-
"regular": "http://fonts.gstatic.com/s/bayon/v8/yTubusjTnpNRZwA4_50iVw.ttf"
|
1506 |
-
}
|
1507 |
-
},
|
1508 |
-
{
|
1509 |
-
"kind": "webfonts#webfont",
|
1510 |
-
"family": "Belgrano",
|
1511 |
-
"category": "serif",
|
1512 |
-
"variants": [
|
1513 |
-
"regular"
|
1514 |
-
],
|
1515 |
-
"subsets": [
|
1516 |
-
"latin"
|
1517 |
-
],
|
1518 |
-
"version": "v6",
|
1519 |
-
"lastModified": "2016-02-23",
|
1520 |
-
"files": {
|
1521 |
-
"regular": "http://fonts.gstatic.com/s/belgrano/v6/iq8DUa2s7g6WRCeMiFrmtQ.ttf"
|
1522 |
-
}
|
1523 |
-
},
|
1524 |
-
{
|
1525 |
-
"kind": "webfonts#webfont",
|
1526 |
-
"family": "Belleza",
|
1527 |
-
"category": "sans-serif",
|
1528 |
-
"variants": [
|
1529 |
-
"regular"
|
1530 |
-
],
|
1531 |
-
"subsets": [
|
1532 |
-
"latin-ext",
|
1533 |
-
"latin"
|
1534 |
-
],
|
1535 |
-
"version": "v4",
|
1536 |
-
"lastModified": "2016-02-23",
|
1537 |
-
"files": {
|
1538 |
-
"regular": "http://fonts.gstatic.com/s/belleza/v4/wchA3BWJlVqvIcSeNZyXew.ttf"
|
1539 |
-
}
|
1540 |
-
},
|
1541 |
-
{
|
1542 |
-
"kind": "webfonts#webfont",
|
1543 |
-
"family": "BenchNine",
|
1544 |
-
"category": "sans-serif",
|
1545 |
-
"variants": [
|
1546 |
-
"300",
|
1547 |
-
"regular",
|
1548 |
-
"700"
|
1549 |
-
],
|
1550 |
-
"subsets": [
|
1551 |
-
"latin-ext",
|
1552 |
-
"latin"
|
1553 |
-
],
|
1554 |
-
"version": "v4",
|
1555 |
-
"lastModified": "2016-02-23",
|
1556 |
-
"files": {
|
1557 |
-
"300": "http://fonts.gstatic.com/s/benchnine/v4/ah9xtUy9wLQ3qnWa2p-piS3USBnSvpkopQaUR-2r7iU.ttf",
|
1558 |
-
"regular": "http://fonts.gstatic.com/s/benchnine/v4/h3OAlYqU3aOeNkuXgH2Q2w.ttf",
|
1559 |
-
"700": "http://fonts.gstatic.com/s/benchnine/v4/qZpi6ZVZg3L2RL_xoBLxWS3USBnSvpkopQaUR-2r7iU.ttf"
|
1560 |
-
}
|
1561 |
-
},
|
1562 |
-
{
|
1563 |
-
"kind": "webfonts#webfont",
|
1564 |
-
"family": "Bentham",
|
1565 |
-
"category": "serif",
|
1566 |
-
"variants": [
|
1567 |
-
"regular"
|
1568 |
-
],
|
1569 |
-
"subsets": [
|
1570 |
-
"latin"
|
1571 |
-
],
|
1572 |
-
"version": "v6",
|
1573 |
-
"lastModified": "2016-02-23",
|
1574 |
-
"files": {
|
1575 |
-
"regular": "http://fonts.gstatic.com/s/bentham/v6/5-Mo8Fe7yg5tzV0GlQIuzQ.ttf"
|
1576 |
-
}
|
1577 |
-
},
|
1578 |
-
{
|
1579 |
-
"kind": "webfonts#webfont",
|
1580 |
-
"family": "Berkshire Swash",
|
1581 |
-
"category": "handwriting",
|
1582 |
-
"variants": [
|
1583 |
-
"regular"
|
1584 |
-
],
|
1585 |
-
"subsets": [
|
1586 |
-
"latin-ext",
|
1587 |
-
"latin"
|
1588 |
-
],
|
1589 |
-
"version": "v4",
|
1590 |
-
"lastModified": "2016-02-23",
|
1591 |
-
"files": {
|
1592 |
-
"regular": "http://fonts.gstatic.com/s/berkshireswash/v4/4RZJjVRPjYnC2939hKCAimKfbtsIjCZP_edQljX9gR0.ttf"
|
1593 |
-
}
|
1594 |
-
},
|
1595 |
-
{
|
1596 |
-
"kind": "webfonts#webfont",
|
1597 |
-
"family": "Bevan",
|
1598 |
-
"category": "display",
|
1599 |
-
"variants": [
|
1600 |
-
"regular"
|
1601 |
-
],
|
1602 |
-
"subsets": [
|
1603 |
-
"latin"
|
1604 |
-
],
|
1605 |
-
"version": "v7",
|
1606 |
-
"lastModified": "2016-02-23",
|
1607 |
-
"files": {
|
1608 |
-
"regular": "http://fonts.gstatic.com/s/bevan/v7/Rtg3zDsCeQiaJ_Qno22OJA.ttf"
|
1609 |
-
}
|
1610 |
-
},
|
1611 |
-
{
|
1612 |
-
"kind": "webfonts#webfont",
|
1613 |
-
"family": "Bigelow Rules",
|
1614 |
-
"category": "display",
|
1615 |
-
"variants": [
|
1616 |
-
"regular"
|
1617 |
-
],
|
1618 |
-
"subsets": [
|
1619 |
-
"latin-ext",
|
1620 |
-
"latin"
|
1621 |
-
],
|
1622 |
-
"version": "v4",
|
1623 |
-
"lastModified": "2016-02-23",
|
1624 |
-
"files": {
|
1625 |
-
"regular": "http://fonts.gstatic.com/s/bigelowrules/v4/FEJCPLwo07FS-6SK6Al50X8f0n03UdmQgF_CLvNR2vg.ttf"
|
1626 |
-
}
|
1627 |
-
},
|
1628 |
-
{
|
1629 |
-
"kind": "webfonts#webfont",
|
1630 |
-
"family": "Bigshot One",
|
1631 |
-
"category": "display",
|
1632 |
-
"variants": [
|
1633 |
-
"regular"
|
1634 |
-
],
|
1635 |
-
"subsets": [
|
1636 |
-
"latin"
|
1637 |
-
],
|
1638 |
-
"version": "v6",
|
1639 |
-
"lastModified": "2016-02-23",
|
1640 |
-
"files": {
|
1641 |
-
"regular": "http://fonts.gstatic.com/s/bigshotone/v6/wSyZjBNTWDQHnvWE2jt6j6CWcynf_cDxXwCLxiixG1c.ttf"
|
1642 |
-
}
|
1643 |
-
},
|
1644 |
-
{
|
1645 |
-
"kind": "webfonts#webfont",
|
1646 |
-
"family": "Bilbo",
|
1647 |
-
"category": "handwriting",
|
1648 |
-
"variants": [
|
1649 |
-
"regular"
|
1650 |
-
],
|
1651 |
-
"subsets": [
|
1652 |
-
"latin-ext",
|
1653 |
-
"latin"
|
1654 |
-
],
|
1655 |
-
"version": "v6",
|
1656 |
-
"lastModified": "2016-02-23",
|
1657 |
-
"files": {
|
1658 |
-
"regular": "http://fonts.gstatic.com/s/bilbo/v6/-ty-lPs5H7OIucWbnpFrkA.ttf"
|
1659 |
-
}
|
1660 |
-
},
|
1661 |
-
{
|
1662 |
-
"kind": "webfonts#webfont",
|
1663 |
-
"family": "Bilbo Swash Caps",
|
1664 |
-
"category": "handwriting",
|
1665 |
-
"variants": [
|
1666 |
-
"regular"
|
1667 |
-
],
|
1668 |
-
"subsets": [
|
1669 |
-
"latin-ext",
|
1670 |
-
"latin"
|
1671 |
-
],
|
1672 |
-
"version": "v7",
|
1673 |
-
"lastModified": "2016-02-23",
|
1674 |
-
"files": {
|
1675 |
-
"regular": "http://fonts.gstatic.com/s/bilboswashcaps/v7/UB_-crLvhx-PwGKW1oosDmYeFSdnSpRYv5h9gpdlD1g.ttf"
|
1676 |
-
}
|
1677 |
-
},
|
1678 |
-
{
|
1679 |
-
"kind": "webfonts#webfont",
|
1680 |
-
"family": "Biryani",
|
1681 |
-
"category": "sans-serif",
|
1682 |
-
"variants": [
|
1683 |
-
"200",
|
1684 |
-
"300",
|
1685 |
-
"regular",
|
1686 |
-
"600",
|
1687 |
-
"700",
|
1688 |
-
"800",
|
1689 |
-
"900"
|
1690 |
-
],
|
1691 |
-
"subsets": [
|
1692 |
-
"devanagari",
|
1693 |
-
"latin-ext",
|
1694 |
-
"latin"
|
1695 |
-
],
|
1696 |
-
"version": "v1",
|
1697 |
-
"lastModified": "2015-04-22",
|
1698 |
-
"files": {
|
1699 |
-
"200": "http://fonts.gstatic.com/s/biryani/v1/Xx38YzyTFF8n6mRS1Yd88vesZW2xOQ-xsNqO47m55DA.ttf",
|
1700 |
-
"300": "http://fonts.gstatic.com/s/biryani/v1/u-bneRbizmFMd0VQp5Ze6vesZW2xOQ-xsNqO47m55DA.ttf",
|
1701 |
-
"regular": "http://fonts.gstatic.com/s/biryani/v1/W7bfR8-IY76Xz0QoB8L2xw.ttf",
|
1702 |
-
"600": "http://fonts.gstatic.com/s/biryani/v1/1EdcPCVxBR2txgjrza6_YPesZW2xOQ-xsNqO47m55DA.ttf",
|
1703 |
-
"700": "http://fonts.gstatic.com/s/biryani/v1/qN2MTZ0j1sKSCtfXLB2dR_esZW2xOQ-xsNqO47m55DA.ttf",
|
1704 |
-
"800": "http://fonts.gstatic.com/s/biryani/v1/DJyziS7FEy441v22InYdevesZW2xOQ-xsNqO47m55DA.ttf",
|
1705 |
-
"900": "http://fonts.gstatic.com/s/biryani/v1/trcLkrIut0lM_PPSyQfAMPesZW2xOQ-xsNqO47m55DA.ttf"
|
1706 |
-
}
|
1707 |
-
},
|
1708 |
-
{
|
1709 |
-
"kind": "webfonts#webfont",
|
1710 |
-
"family": "Bitter",
|
1711 |
-
"category": "serif",
|
1712 |
-
"variants": [
|
1713 |
-
"regular",
|
1714 |
-
"italic",
|
1715 |
-
"700"
|
1716 |
-
],
|
1717 |
-
"subsets": [
|
1718 |
-
"latin-ext",
|
1719 |
-
"latin"
|
1720 |
-
],
|
1721 |
-
"version": "v7",
|
1722 |
-
"lastModified": "2016-02-23",
|
1723 |
-
"files": {
|
1724 |
-
"regular": "http://fonts.gstatic.com/s/bitter/v7/w_BNdJvVZDRmqy5aSfB2kQ.ttf",
|
1725 |
-
"italic": "http://fonts.gstatic.com/s/bitter/v7/TC0FZEVzXQIGgzmRfKPZbA.ttf",
|
1726 |
-
"700": "http://fonts.gstatic.com/s/bitter/v7/4dUtr_4BvHuoRU35suyOAg.ttf"
|
1727 |
-
}
|
1728 |
-
},
|
1729 |
-
{
|
1730 |
-
"kind": "webfonts#webfont",
|
1731 |
-
"family": "Black Ops One",
|
1732 |
-
"category": "display",
|
1733 |
-
"variants": [
|
1734 |
-
"regular"
|
1735 |
-
],
|
1736 |
-
"subsets": [
|
1737 |
-
"latin-ext",
|
1738 |
-
"latin"
|
1739 |
-
],
|
1740 |
-
"version": "v7",
|
1741 |
-
"lastModified": "2016-02-23",
|
1742 |
-
"files": {
|
1743 |
-
"regular": "http://fonts.gstatic.com/s/blackopsone/v7/2XW-DmDsGbDLE372KrMW1Yjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
1744 |
-
}
|
1745 |
-
},
|
1746 |
-
{
|
1747 |
-
"kind": "webfonts#webfont",
|
1748 |
-
"family": "Bokor",
|
1749 |
-
"category": "display",
|
1750 |
-
"variants": [
|
1751 |
-
"regular"
|
1752 |
-
],
|
1753 |
-
"subsets": [
|
1754 |
-
"khmer"
|
1755 |
-
],
|
1756 |
-
"version": "v8",
|
1757 |
-
"lastModified": "2015-04-06",
|
1758 |
-
"files": {
|
1759 |
-
"regular": "http://fonts.gstatic.com/s/bokor/v8/uAKdo0A85WW23Gs6mcbw7A.ttf"
|
1760 |
-
}
|
1761 |
-
},
|
1762 |
-
{
|
1763 |
-
"kind": "webfonts#webfont",
|
1764 |
-
"family": "Bonbon",
|
1765 |
-
"category": "handwriting",
|
1766 |
-
"variants": [
|
1767 |
-
"regular"
|
1768 |
-
],
|
1769 |
-
"subsets": [
|
1770 |
-
"latin"
|
1771 |
-
],
|
1772 |
-
"version": "v7",
|
1773 |
-
"lastModified": "2016-02-23",
|
1774 |
-
"files": {
|
1775 |
-
"regular": "http://fonts.gstatic.com/s/bonbon/v7/IW3u1yzG1knyW5oz0s9_6Q.ttf"
|
1776 |
-
}
|
1777 |
-
},
|
1778 |
-
{
|
1779 |
-
"kind": "webfonts#webfont",
|
1780 |
-
"family": "Boogaloo",
|
1781 |
-
"category": "display",
|
1782 |
-
"variants": [
|
1783 |
-
"regular"
|
1784 |
-
],
|
1785 |
-
"subsets": [
|
1786 |
-
"latin"
|
1787 |
-
],
|
1788 |
-
"version": "v6",
|
1789 |
-
"lastModified": "2016-02-23",
|
1790 |
-
"files": {
|
1791 |
-
"regular": "http://fonts.gstatic.com/s/boogaloo/v6/4Wu1tvFMoB80fSu8qLgQfQ.ttf"
|
1792 |
-
}
|
1793 |
-
},
|
1794 |
-
{
|
1795 |
-
"kind": "webfonts#webfont",
|
1796 |
-
"family": "Bowlby One",
|
1797 |
-
"category": "display",
|
1798 |
-
"variants": [
|
1799 |
-
"regular"
|
1800 |
-
],
|
1801 |
-
"subsets": [
|
1802 |
-
"latin"
|
1803 |
-
],
|
1804 |
-
"version": "v7",
|
1805 |
-
"lastModified": "2016-02-23",
|
1806 |
-
"files": {
|
1807 |
-
"regular": "http://fonts.gstatic.com/s/bowlbyone/v7/eKpHjHfjoxM2bX36YNucefesZW2xOQ-xsNqO47m55DA.ttf"
|
1808 |
-
}
|
1809 |
-
},
|
1810 |
-
{
|
1811 |
-
"kind": "webfonts#webfont",
|
1812 |
-
"family": "Bowlby One SC",
|
1813 |
-
"category": "display",
|
1814 |
-
"variants": [
|
1815 |
-
"regular"
|
1816 |
-
],
|
1817 |
-
"subsets": [
|
1818 |
-
"latin-ext",
|
1819 |
-
"latin"
|
1820 |
-
],
|
1821 |
-
"version": "v8",
|
1822 |
-
"lastModified": "2016-02-23",
|
1823 |
-
"files": {
|
1824 |
-
"regular": "http://fonts.gstatic.com/s/bowlbyonesc/v8/8ZkeXftTuzKBtmxOYXoRedDkZCMxWJecxjvKm2f8MJw.ttf"
|
1825 |
-
}
|
1826 |
-
},
|
1827 |
-
{
|
1828 |
-
"kind": "webfonts#webfont",
|
1829 |
-
"family": "Brawler",
|
1830 |
-
"category": "serif",
|
1831 |
-
"variants": [
|
1832 |
-
"regular"
|
1833 |
-
],
|
1834 |
-
"subsets": [
|
1835 |
-
"latin"
|
1836 |
-
],
|
1837 |
-
"version": "v6",
|
1838 |
-
"lastModified": "2016-02-23",
|
1839 |
-
"files": {
|
1840 |
-
"regular": "http://fonts.gstatic.com/s/brawler/v6/3gfSw6imxQnQxweVITqUrg.ttf"
|
1841 |
-
}
|
1842 |
-
},
|
1843 |
-
{
|
1844 |
-
"kind": "webfonts#webfont",
|
1845 |
-
"family": "Bree Serif",
|
1846 |
-
"category": "serif",
|
1847 |
-
"variants": [
|
1848 |
-
"regular"
|
1849 |
-
],
|
1850 |
-
"subsets": [
|
1851 |
-
"latin-ext",
|
1852 |
-
"latin"
|
1853 |
-
],
|
1854 |
-
"version": "v5",
|
1855 |
-
"lastModified": "2016-02-23",
|
1856 |
-
"files": {
|
1857 |
-
"regular": "http://fonts.gstatic.com/s/breeserif/v5/5h9crBVIrvZqgf34FHcnEfesZW2xOQ-xsNqO47m55DA.ttf"
|
1858 |
-
}
|
1859 |
-
},
|
1860 |
-
{
|
1861 |
-
"kind": "webfonts#webfont",
|
1862 |
-
"family": "Bubblegum Sans",
|
1863 |
-
"category": "display",
|
1864 |
-
"variants": [
|
1865 |
-
"regular"
|
1866 |
-
],
|
1867 |
-
"subsets": [
|
1868 |
-
"latin-ext",
|
1869 |
-
"latin"
|
1870 |
-
],
|
1871 |
-
"version": "v5",
|
1872 |
-
"lastModified": "2016-02-23",
|
1873 |
-
"files": {
|
1874 |
-
"regular": "http://fonts.gstatic.com/s/bubblegumsans/v5/Y9iTUUNz6lbl6TrvV4iwsytnKWgpfO2iSkLzTz-AABg.ttf"
|
1875 |
-
}
|
1876 |
-
},
|
1877 |
-
{
|
1878 |
-
"kind": "webfonts#webfont",
|
1879 |
-
"family": "Bubbler One",
|
1880 |
-
"category": "sans-serif",
|
1881 |
-
"variants": [
|
1882 |
-
"regular"
|
1883 |
-
],
|
1884 |
-
"subsets": [
|
1885 |
-
"latin-ext",
|
1886 |
-
"latin"
|
1887 |
-
],
|
1888 |
-
"version": "v4",
|
1889 |
-
"lastModified": "2016-02-23",
|
1890 |
-
"files": {
|
1891 |
-
"regular": "http://fonts.gstatic.com/s/bubblerone/v4/e8S0qevkZAFaBybtt_SU4qCWcynf_cDxXwCLxiixG1c.ttf"
|
1892 |
-
}
|
1893 |
-
},
|
1894 |
-
{
|
1895 |
-
"kind": "webfonts#webfont",
|
1896 |
-
"family": "Buda",
|
1897 |
-
"category": "display",
|
1898 |
-
"variants": [
|
1899 |
-
"300"
|
1900 |
-
],
|
1901 |
-
"subsets": [
|
1902 |
-
"latin"
|
1903 |
-
],
|
1904 |
-
"version": "v6",
|
1905 |
-
"lastModified": "2016-02-23",
|
1906 |
-
"files": {
|
1907 |
-
"300": "http://fonts.gstatic.com/s/buda/v6/hLtAmNUmEMJH2yx7NGUjnA.ttf"
|
1908 |
-
}
|
1909 |
-
},
|
1910 |
-
{
|
1911 |
-
"kind": "webfonts#webfont",
|
1912 |
-
"family": "Buenard",
|
1913 |
-
"category": "serif",
|
1914 |
-
"variants": [
|
1915 |
-
"regular",
|
1916 |
-
"700"
|
1917 |
-
],
|
1918 |
-
"subsets": [
|
1919 |
-
"latin-ext",
|
1920 |
-
"latin"
|
1921 |
-
],
|
1922 |
-
"version": "v7",
|
1923 |
-
"lastModified": "2016-02-23",
|
1924 |
-
"files": {
|
1925 |
-
"regular": "http://fonts.gstatic.com/s/buenard/v7/NSpMPGKAUgrLrlstYVvIXQ.ttf",
|
1926 |
-
"700": "http://fonts.gstatic.com/s/buenard/v7/yUlGE115dGr7O9w9FlP3UvesZW2xOQ-xsNqO47m55DA.ttf"
|
1927 |
-
}
|
1928 |
-
},
|
1929 |
-
{
|
1930 |
-
"kind": "webfonts#webfont",
|
1931 |
-
"family": "Butcherman",
|
1932 |
-
"category": "display",
|
1933 |
-
"variants": [
|
1934 |
-
"regular"
|
1935 |
-
],
|
1936 |
-
"subsets": [
|
1937 |
-
"latin-ext",
|
1938 |
-
"latin"
|
1939 |
-
],
|
1940 |
-
"version": "v7",
|
1941 |
-
"lastModified": "2016-02-23",
|
1942 |
-
"files": {
|
1943 |
-
"regular": "http://fonts.gstatic.com/s/butcherman/v7/bxiJmD567sPBVpJsT0XR0vesZW2xOQ-xsNqO47m55DA.ttf"
|
1944 |
-
}
|
1945 |
-
},
|
1946 |
-
{
|
1947 |
-
"kind": "webfonts#webfont",
|
1948 |
-
"family": "Butterfly Kids",
|
1949 |
-
"category": "handwriting",
|
1950 |
-
"variants": [
|
1951 |
-
"regular"
|
1952 |
-
],
|
1953 |
-
"subsets": [
|
1954 |
-
"latin-ext",
|
1955 |
-
"latin"
|
1956 |
-
],
|
1957 |
-
"version": "v4",
|
1958 |
-
"lastModified": "2016-02-23",
|
1959 |
-
"files": {
|
1960 |
-
"regular": "http://fonts.gstatic.com/s/butterflykids/v4/J4NTF5M25htqeTffYImtlUZaDk62iwTBnbnvwSjZciA.ttf"
|
1961 |
-
}
|
1962 |
-
},
|
1963 |
-
{
|
1964 |
-
"kind": "webfonts#webfont",
|
1965 |
-
"family": "Cabin",
|
1966 |
-
"category": "sans-serif",
|
1967 |
-
"variants": [
|
1968 |
-
"regular",
|
1969 |
-
"italic",
|
1970 |
-
"500",
|
1971 |
-
"500italic",
|
1972 |
-
"600",
|
1973 |
-
"600italic",
|
1974 |
-
"700",
|
1975 |
-
"700italic"
|
1976 |
-
],
|
1977 |
-
"subsets": [
|
1978 |
-
"latin"
|
1979 |
-
],
|
1980 |
-
"version": "v8",
|
1981 |
-
"lastModified": "2016-02-23",
|
1982 |
-
"files": {
|
1983 |
-
"regular": "http://fonts.gstatic.com/s/cabin/v8/XeuAFYo2xAPHxZGBbQtHhA.ttf",
|
1984 |
-
"italic": "http://fonts.gstatic.com/s/cabin/v8/0tJ9k3DI5xC4GBgs1E_Jxw.ttf",
|
1985 |
-
"500": "http://fonts.gstatic.com/s/cabin/v8/HgsCQ-k3_Z_uQ86aFolNBg.ttf",
|
1986 |
-
"500italic": "http://fonts.gstatic.com/s/cabin/v8/50sjhrGE0njyO-7mGDhGP_esZW2xOQ-xsNqO47m55DA.ttf",
|
1987 |
-
"600": "http://fonts.gstatic.com/s/cabin/v8/eUDAvKhBtmTCkeVBsFk34A.ttf",
|
1988 |
-
"600italic": "http://fonts.gstatic.com/s/cabin/v8/sFQpQDBd3G2om0Nl5dD2CvesZW2xOQ-xsNqO47m55DA.ttf",
|
1989 |
-
"700": "http://fonts.gstatic.com/s/cabin/v8/4EKhProuY1hq_WCAomq9Dg.ttf",
|
1990 |
-
"700italic": "http://fonts.gstatic.com/s/cabin/v8/K83QKi8MOKLEqj6bgZ7LrfesZW2xOQ-xsNqO47m55DA.ttf"
|
1991 |
-
}
|
1992 |
-
},
|
1993 |
-
{
|
1994 |
-
"kind": "webfonts#webfont",
|
1995 |
-
"family": "Cabin Condensed",
|
1996 |
-
"category": "sans-serif",
|
1997 |
-
"variants": [
|
1998 |
-
"regular",
|
1999 |
-
"500",
|
2000 |
-
"600",
|
2001 |
-
"700"
|
2002 |
-
],
|
2003 |
-
"subsets": [
|
2004 |
-
"latin"
|
2005 |
-
],
|
2006 |
-
"version": "v7",
|
2007 |
-
"lastModified": "2016-02-23",
|
2008 |
-
"files": {
|
2009 |
-
"regular": "http://fonts.gstatic.com/s/cabincondensed/v7/B0txb0blf2N29WdYPJjMSiQPsWWoiv__AzYJ9Zzn9II.ttf",
|
2010 |
-
"500": "http://fonts.gstatic.com/s/cabincondensed/v7/Ez4zJbsGr2BgXcNUWBVgEARL_-ABKXdjsJSPT0lc2Bk.ttf",
|
2011 |
-
"600": "http://fonts.gstatic.com/s/cabincondensed/v7/Ez4zJbsGr2BgXcNUWBVgELS5sSASxc8z4EQTQj7DCAI.ttf",
|
2012 |
-
"700": "http://fonts.gstatic.com/s/cabincondensed/v7/Ez4zJbsGr2BgXcNUWBVgEMAWgzcA047xWLixhLCofl8.ttf"
|
2013 |
-
}
|
2014 |
-
},
|
2015 |
-
{
|
2016 |
-
"kind": "webfonts#webfont",
|
2017 |
-
"family": "Cabin Sketch",
|
2018 |
-
"category": "display",
|
2019 |
-
"variants": [
|
2020 |
-
"regular",
|
2021 |
-
"700"
|
2022 |
-
],
|
2023 |
-
"subsets": [
|
2024 |
-
"latin"
|
2025 |
-
],
|
2026 |
-
"version": "v8",
|
2027 |
-
"lastModified": "2016-02-23",
|
2028 |
-
"files": {
|
2029 |
-
"regular": "http://fonts.gstatic.com/s/cabinsketch/v8/d9fijO34zQajqQvl3YHRCS3USBnSvpkopQaUR-2r7iU.ttf",
|
2030 |
-
"700": "http://fonts.gstatic.com/s/cabinsketch/v8/ki3SSN5HMOO0-IOLOj069ED2ttfZwueP-QU272T9-k4.ttf"
|
2031 |
-
}
|
2032 |
-
},
|
2033 |
-
{
|
2034 |
-
"kind": "webfonts#webfont",
|
2035 |
-
"family": "Caesar Dressing",
|
2036 |
-
"category": "display",
|
2037 |
-
"variants": [
|
2038 |
-
"regular"
|
2039 |
-
],
|
2040 |
-
"subsets": [
|
2041 |
-
"latin"
|
2042 |
-
],
|
2043 |
-
"version": "v5",
|
2044 |
-
"lastModified": "2016-02-23",
|
2045 |
-
"files": {
|
2046 |
-
"regular": "http://fonts.gstatic.com/s/caesardressing/v5/2T_WzBgE2Xz3FsyJMq34T9gR43u4FvCuJwIfF5Zxl6Y.ttf"
|
2047 |
-
}
|
2048 |
-
},
|
2049 |
-
{
|
2050 |
-
"kind": "webfonts#webfont",
|
2051 |
-
"family": "Cagliostro",
|
2052 |
-
"category": "sans-serif",
|
2053 |
-
"variants": [
|
2054 |
-
"regular"
|
2055 |
-
],
|
2056 |
-
"subsets": [
|
2057 |
-
"latin"
|
2058 |
-
],
|
2059 |
-
"version": "v5",
|
2060 |
-
"lastModified": "2016-02-23",
|
2061 |
-
"files": {
|
2062 |
-
"regular": "http://fonts.gstatic.com/s/cagliostro/v5/i85oXbtdSatNEzss99bpj_esZW2xOQ-xsNqO47m55DA.ttf"
|
2063 |
-
}
|
2064 |
-
},
|
2065 |
-
{
|
2066 |
-
"kind": "webfonts#webfont",
|
2067 |
-
"family": "Calligraffitti",
|
2068 |
-
"category": "handwriting",
|
2069 |
-
"variants": [
|
2070 |
-
"regular"
|
2071 |
-
],
|
2072 |
-
"subsets": [
|
2073 |
-
"latin"
|
2074 |
-
],
|
2075 |
-
"version": "v7",
|
2076 |
-
"lastModified": "2016-02-23",
|
2077 |
-
"files": {
|
2078 |
-
"regular": "http://fonts.gstatic.com/s/calligraffitti/v7/vLVN2Y-z65rVu1R7lWdvyDXz_orj3gX0_NzfmYulrko.ttf"
|
2079 |
-
}
|
2080 |
-
},
|
2081 |
-
{
|
2082 |
-
"kind": "webfonts#webfont",
|
2083 |
-
"family": "Cambay",
|
2084 |
-
"category": "sans-serif",
|
2085 |
-
"variants": [
|
2086 |
-
"regular",
|
2087 |
-
"italic",
|
2088 |
-
"700",
|
2089 |
-
"700italic"
|
2090 |
-
],
|
2091 |
-
"subsets": [
|
2092 |
-
"devanagari",
|
2093 |
-
"latin-ext",
|
2094 |
-
"latin"
|
2095 |
-
],
|
2096 |
-
"version": "v1",
|
2097 |
-
"lastModified": "2016-02-23",
|
2098 |
-
"files": {
|
2099 |
-
"regular": "http://fonts.gstatic.com/s/cambay/v1/etU9Bab4VuhzS-OKsb1VXg.ttf",
|
2100 |
-
"italic": "http://fonts.gstatic.com/s/cambay/v1/ZEz9yNqpEOgejaw1rBhugQ.ttf",
|
2101 |
-
"700": "http://fonts.gstatic.com/s/cambay/v1/jw9niBxa04eEhnSwTWCEgw.ttf",
|
2102 |
-
"700italic": "http://fonts.gstatic.com/s/cambay/v1/j-5v_uUr0NXTumWN0siOiaCWcynf_cDxXwCLxiixG1c.ttf"
|
2103 |
-
}
|
2104 |
-
},
|
2105 |
-
{
|
2106 |
-
"kind": "webfonts#webfont",
|
2107 |
-
"family": "Cambo",
|
2108 |
-
"category": "serif",
|
2109 |
-
"variants": [
|
2110 |
-
"regular"
|
2111 |
-
],
|
2112 |
-
"subsets": [
|
2113 |
-
"latin"
|
2114 |
-
],
|
2115 |
-
"version": "v5",
|
2116 |
-
"lastModified": "2016-02-23",
|
2117 |
-
"files": {
|
2118 |
-
"regular": "http://fonts.gstatic.com/s/cambo/v5/PnwpRuTdkYCf8qk4ajmNRA.ttf"
|
2119 |
-
}
|
2120 |
-
},
|
2121 |
-
{
|
2122 |
-
"kind": "webfonts#webfont",
|
2123 |
-
"family": "Candal",
|
2124 |
-
"category": "sans-serif",
|
2125 |
-
"variants": [
|
2126 |
-
"regular"
|
2127 |
-
],
|
2128 |
-
"subsets": [
|
2129 |
-
"latin"
|
2130 |
-
],
|
2131 |
-
"version": "v6",
|
2132 |
-
"lastModified": "2016-02-23",
|
2133 |
-
"files": {
|
2134 |
-
"regular": "http://fonts.gstatic.com/s/candal/v6/x44dDW28zK7GR1gGDBmj9g.ttf"
|
2135 |
-
}
|
2136 |
-
},
|
2137 |
-
{
|
2138 |
-
"kind": "webfonts#webfont",
|
2139 |
-
"family": "Cantarell",
|
2140 |
-
"category": "sans-serif",
|
2141 |
-
"variants": [
|
2142 |
-
"regular",
|
2143 |
-
"italic",
|
2144 |
-
"700",
|
2145 |
-
"700italic"
|
2146 |
-
],
|
2147 |
-
"subsets": [
|
2148 |
-
"latin"
|
2149 |
-
],
|
2150 |
-
"version": "v6",
|
2151 |
-
"lastModified": "2016-02-23",
|
2152 |
-
"files": {
|
2153 |
-
"regular": "http://fonts.gstatic.com/s/cantarell/v6/p5ydP_uWQ5lsFzcP_XVMEw.ttf",
|
2154 |
-
"italic": "http://fonts.gstatic.com/s/cantarell/v6/DTCLtOSqP-7dgM-V_xKUjqCWcynf_cDxXwCLxiixG1c.ttf",
|
2155 |
-
"700": "http://fonts.gstatic.com/s/cantarell/v6/Yir4ZDsCn4g1kWopdg-ehC3USBnSvpkopQaUR-2r7iU.ttf",
|
2156 |
-
"700italic": "http://fonts.gstatic.com/s/cantarell/v6/weehrwMeZBXb0QyrWnRwFXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
2157 |
-
}
|
2158 |
-
},
|
2159 |
-
{
|
2160 |
-
"kind": "webfonts#webfont",
|
2161 |
-
"family": "Cantata One",
|
2162 |
-
"category": "serif",
|
2163 |
-
"variants": [
|
2164 |
-
"regular"
|
2165 |
-
],
|
2166 |
-
"subsets": [
|
2167 |
-
"latin-ext",
|
2168 |
-
"latin"
|
2169 |
-
],
|
2170 |
-
"version": "v5",
|
2171 |
-
"lastModified": "2016-02-23",
|
2172 |
-
"files": {
|
2173 |
-
"regular": "http://fonts.gstatic.com/s/cantataone/v5/-a5FDvnBqaBMDaGgZYnEfqCWcynf_cDxXwCLxiixG1c.ttf"
|
2174 |
-
}
|
2175 |
-
},
|
2176 |
-
{
|
2177 |
-
"kind": "webfonts#webfont",
|
2178 |
-
"family": "Cantora One",
|
2179 |
-
"category": "sans-serif",
|
2180 |
-
"variants": [
|
2181 |
-
"regular"
|
2182 |
-
],
|
2183 |
-
"subsets": [
|
2184 |
-
"latin-ext",
|
2185 |
-
"latin"
|
2186 |
-
],
|
2187 |
-
"version": "v5",
|
2188 |
-
"lastModified": "2016-02-23",
|
2189 |
-
"files": {
|
2190 |
-
"regular": "http://fonts.gstatic.com/s/cantoraone/v5/oI-DS62RbHI8ZREjp73ehqCWcynf_cDxXwCLxiixG1c.ttf"
|
2191 |
-
}
|
2192 |
-
},
|
2193 |
-
{
|
2194 |
-
"kind": "webfonts#webfont",
|
2195 |
-
"family": "Capriola",
|
2196 |
-
"category": "sans-serif",
|
2197 |
-
"variants": [
|
2198 |
-
"regular"
|
2199 |
-
],
|
2200 |
-
"subsets": [
|
2201 |
-
"latin-ext",
|
2202 |
-
"latin"
|
2203 |
-
],
|
2204 |
-
"version": "v4",
|
2205 |
-
"lastModified": "2016-02-23",
|
2206 |
-
"files": {
|
2207 |
-
"regular": "http://fonts.gstatic.com/s/capriola/v4/JxXPlkdzWwF9Cwelbvi9jA.ttf"
|
2208 |
-
}
|
2209 |
-
},
|
2210 |
-
{
|
2211 |
-
"kind": "webfonts#webfont",
|
2212 |
-
"family": "Cardo",
|
2213 |
-
"category": "serif",
|
2214 |
-
"variants": [
|
2215 |
-
"regular",
|
2216 |
-
"italic",
|
2217 |
-
"700"
|
2218 |
-
],
|
2219 |
-
"subsets": [
|
2220 |
-
"latin-ext",
|
2221 |
-
"greek-ext",
|
2222 |
-
"greek",
|
2223 |
-
"latin"
|
2224 |
-
],
|
2225 |
-
"version": "v8",
|
2226 |
-
"lastModified": "2016-02-23",
|
2227 |
-
"files": {
|
2228 |
-
"regular": "http://fonts.gstatic.com/s/cardo/v8/jbkF2_R0FKUEZTq5dwSknQ.ttf",
|
2229 |
-
"italic": "http://fonts.gstatic.com/s/cardo/v8/pcv4Np9tUkq0YREYUcEEJQ.ttf",
|
2230 |
-
"700": "http://fonts.gstatic.com/s/cardo/v8/lQN30weILimrKvp8rZhF1w.ttf"
|
2231 |
-
}
|
2232 |
-
},
|
2233 |
-
{
|
2234 |
-
"kind": "webfonts#webfont",
|
2235 |
-
"family": "Carme",
|
2236 |
-
"category": "sans-serif",
|
2237 |
-
"variants": [
|
2238 |
-
"regular"
|
2239 |
-
],
|
2240 |
-
"subsets": [
|
2241 |
-
"latin"
|
2242 |
-
],
|
2243 |
-
"version": "v7",
|
2244 |
-
"lastModified": "2016-02-23",
|
2245 |
-
"files": {
|
2246 |
-
"regular": "http://fonts.gstatic.com/s/carme/v7/08E0NP1eRBEyFRUadmMfgA.ttf"
|
2247 |
-
}
|
2248 |
-
},
|
2249 |
-
{
|
2250 |
-
"kind": "webfonts#webfont",
|
2251 |
-
"family": "Carrois Gothic",
|
2252 |
-
"category": "sans-serif",
|
2253 |
-
"variants": [
|
2254 |
-
"regular"
|
2255 |
-
],
|
2256 |
-
"subsets": [
|
2257 |
-
"latin"
|
2258 |
-
],
|
2259 |
-
"version": "v4",
|
2260 |
-
"lastModified": "2016-02-23",
|
2261 |
-
"files": {
|
2262 |
-
"regular": "http://fonts.gstatic.com/s/carroisgothic/v4/GCgb7bssGpwp7V5ynxmWy2x3d0cwUleGuRTmCYfCUaM.ttf"
|
2263 |
-
}
|
2264 |
-
},
|
2265 |
-
{
|
2266 |
-
"kind": "webfonts#webfont",
|
2267 |
-
"family": "Carrois Gothic SC",
|
2268 |
-
"category": "sans-serif",
|
2269 |
-
"variants": [
|
2270 |
-
"regular"
|
2271 |
-
],
|
2272 |
-
"subsets": [
|
2273 |
-
"latin"
|
2274 |
-
],
|
2275 |
-
"version": "v4",
|
2276 |
-
"lastModified": "2016-02-23",
|
2277 |
-
"files": {
|
2278 |
-
"regular": "http://fonts.gstatic.com/s/carroisgothicsc/v4/bVp4nhwFIXU-r3LqUR8DSJTdPW1ioadGi2uRiKgJVCY.ttf"
|
2279 |
-
}
|
2280 |
-
},
|
2281 |
-
{
|
2282 |
-
"kind": "webfonts#webfont",
|
2283 |
-
"family": "Carter One",
|
2284 |
-
"category": "display",
|
2285 |
-
"variants": [
|
2286 |
-
"regular"
|
2287 |
-
],
|
2288 |
-
"subsets": [
|
2289 |
-
"latin"
|
2290 |
-
],
|
2291 |
-
"version": "v8",
|
2292 |
-
"lastModified": "2016-02-23",
|
2293 |
-
"files": {
|
2294 |
-
"regular": "http://fonts.gstatic.com/s/carterone/v8/5X_LFvdbcB7OBG7hBgZ7fPesZW2xOQ-xsNqO47m55DA.ttf"
|
2295 |
-
}
|
2296 |
-
},
|
2297 |
-
{
|
2298 |
-
"kind": "webfonts#webfont",
|
2299 |
-
"family": "Catamaran",
|
2300 |
-
"category": "sans-serif",
|
2301 |
-
"variants": [
|
2302 |
-
"100",
|
2303 |
-
"200",
|
2304 |
-
"300",
|
2305 |
-
"regular",
|
2306 |
-
"500",
|
2307 |
-
"600",
|
2308 |
-
"700",
|
2309 |
-
"800",
|
2310 |
-
"900"
|
2311 |
-
],
|
2312 |
-
"subsets": [
|
2313 |
-
"tamil",
|
2314 |
-
"latin-ext",
|
2315 |
-
"latin"
|
2316 |
-
],
|
2317 |
-
"version": "v1",
|
2318 |
-
"lastModified": "2015-08-06",
|
2319 |
-
"files": {
|
2320 |
-
"100": "http://fonts.gstatic.com/s/catamaran/v1/ilWHBiy0krUPdlmYxDuqC6CWcynf_cDxXwCLxiixG1c.ttf",
|
2321 |
-
"200": "http://fonts.gstatic.com/s/catamaran/v1/hFc-HKSsGk6M-psujei1MC3USBnSvpkopQaUR-2r7iU.ttf",
|
2322 |
-
"300": "http://fonts.gstatic.com/s/catamaran/v1/Aaag4ccR7Oh_4eai-jbrYC3USBnSvpkopQaUR-2r7iU.ttf",
|
2323 |
-
"regular": "http://fonts.gstatic.com/s/catamaran/v1/MdNkM-DU8f6R-25Nxpr_XA.ttf",
|
2324 |
-
"500": "http://fonts.gstatic.com/s/catamaran/v1/83WSX3F86qsvj1Z4EI0tQi3USBnSvpkopQaUR-2r7iU.ttf",
|
2325 |
-
"600": "http://fonts.gstatic.com/s/catamaran/v1/a9PlHHnuBWiGGk0TwuFKTi3USBnSvpkopQaUR-2r7iU.ttf",
|
2326 |
-
"700": "http://fonts.gstatic.com/s/catamaran/v1/PpgVtUHUdnBZYNpnzGbScy3USBnSvpkopQaUR-2r7iU.ttf",
|
2327 |
-
"800": "http://fonts.gstatic.com/s/catamaran/v1/6VjB_uSfn3DZ93IQv58CmC3USBnSvpkopQaUR-2r7iU.ttf",
|
2328 |
-
"900": "http://fonts.gstatic.com/s/catamaran/v1/5ys9TqpQc9Q6gHqbSox6py3USBnSvpkopQaUR-2r7iU.ttf"
|
2329 |
-
}
|
2330 |
-
},
|
2331 |
-
{
|
2332 |
-
"kind": "webfonts#webfont",
|
2333 |
-
"family": "Caudex",
|
2334 |
-
"category": "serif",
|
2335 |
-
"variants": [
|
2336 |
-
"regular",
|
2337 |
-
"italic",
|
2338 |
-
"700",
|
2339 |
-
"700italic"
|
2340 |
-
],
|
2341 |
-
"subsets": [
|
2342 |
-
"latin-ext",
|
2343 |
-
"greek-ext",
|
2344 |
-
"greek",
|
2345 |
-
"latin"
|
2346 |
-
],
|
2347 |
-
"version": "v6",
|
2348 |
-
"lastModified": "2016-02-23",
|
2349 |
-
"files": {
|
2350 |
-
"regular": "http://fonts.gstatic.com/s/caudex/v6/PWEexiHLDmQbn2b1OPZWfg.ttf",
|
2351 |
-
"italic": "http://fonts.gstatic.com/s/caudex/v6/XjMZF6XCisvV3qapD4oJdw.ttf",
|
2352 |
-
"700": "http://fonts.gstatic.com/s/caudex/v6/PetCI4GyQ5Q3LiOzUu_mMg.ttf",
|
2353 |
-
"700italic": "http://fonts.gstatic.com/s/caudex/v6/yT8YeHLjaJvQXlUEYOA8gqCWcynf_cDxXwCLxiixG1c.ttf"
|
2354 |
-
}
|
2355 |
-
},
|
2356 |
-
{
|
2357 |
-
"kind": "webfonts#webfont",
|
2358 |
-
"family": "Caveat",
|
2359 |
-
"category": "handwriting",
|
2360 |
-
"variants": [
|
2361 |
-
"regular",
|
2362 |
-
"700"
|
2363 |
-
],
|
2364 |
-
"subsets": [
|
2365 |
-
"latin-ext",
|
2366 |
-
"latin"
|
2367 |
-
],
|
2368 |
-
"version": "v1",
|
2369 |
-
"lastModified": "2015-10-05",
|
2370 |
-
"files": {
|
2371 |
-
"regular": "http://fonts.gstatic.com/s/caveat/v1/8I23b6N-6rRVbh-C_Vx3yA.ttf",
|
2372 |
-
"700": "http://fonts.gstatic.com/s/caveat/v1/LkaFtQENGJry2eUMwGRTeA.ttf"
|
2373 |
-
}
|
2374 |
-
},
|
2375 |
-
{
|
2376 |
-
"kind": "webfonts#webfont",
|
2377 |
-
"family": "Caveat Brush",
|
2378 |
-
"category": "handwriting",
|
2379 |
-
"variants": [
|
2380 |
-
"regular"
|
2381 |
-
],
|
2382 |
-
"subsets": [
|
2383 |
-
"latin-ext",
|
2384 |
-
"latin"
|
2385 |
-
],
|
2386 |
-
"version": "v1",
|
2387 |
-
"lastModified": "2015-10-05",
|
2388 |
-
"files": {
|
2389 |
-
"regular": "http://fonts.gstatic.com/s/caveatbrush/v1/_d7bgsk3hfC4DXnUEeYKsy3USBnSvpkopQaUR-2r7iU.ttf"
|
2390 |
-
}
|
2391 |
-
},
|
2392 |
-
{
|
2393 |
-
"kind": "webfonts#webfont",
|
2394 |
-
"family": "Cedarville Cursive",
|
2395 |
-
"category": "handwriting",
|
2396 |
-
"variants": [
|
2397 |
-
"regular"
|
2398 |
-
],
|
2399 |
-
"subsets": [
|
2400 |
-
"latin"
|
2401 |
-
],
|
2402 |
-
"version": "v7",
|
2403 |
-
"lastModified": "2016-02-23",
|
2404 |
-
"files": {
|
2405 |
-
"regular": "http://fonts.gstatic.com/s/cedarvillecursive/v7/cuCe6HrkcqrWTWTUE7dw-41zwq9-z_Lf44CzRAA0d0Y.ttf"
|
2406 |
-
}
|
2407 |
-
},
|
2408 |
-
{
|
2409 |
-
"kind": "webfonts#webfont",
|
2410 |
-
"family": "Ceviche One",
|
2411 |
-
"category": "display",
|
2412 |
-
"variants": [
|
2413 |
-
"regular"
|
2414 |
-
],
|
2415 |
-
"subsets": [
|
2416 |
-
"latin-ext",
|
2417 |
-
"latin"
|
2418 |
-
],
|
2419 |
-
"version": "v7",
|
2420 |
-
"lastModified": "2016-02-24",
|
2421 |
-
"files": {
|
2422 |
-
"regular": "http://fonts.gstatic.com/s/cevicheone/v7/WOaXIMBD4VYMy39MsobJhKCWcynf_cDxXwCLxiixG1c.ttf"
|
2423 |
-
}
|
2424 |
-
},
|
2425 |
-
{
|
2426 |
-
"kind": "webfonts#webfont",
|
2427 |
-
"family": "Changa One",
|
2428 |
-
"category": "display",
|
2429 |
-
"variants": [
|
2430 |
-
"regular",
|
2431 |
-
"italic"
|
2432 |
-
],
|
2433 |
-
"subsets": [
|
2434 |
-
"latin"
|
2435 |
-
],
|
2436 |
-
"version": "v9",
|
2437 |
-
"lastModified": "2016-02-23",
|
2438 |
-
"files": {
|
2439 |
-
"regular": "http://fonts.gstatic.com/s/changaone/v9/dr4qjce4W3kxFrZRkVD87fesZW2xOQ-xsNqO47m55DA.ttf",
|
2440 |
-
"italic": "http://fonts.gstatic.com/s/changaone/v9/wJVQlUs1lAZel-WdTo2U9y3USBnSvpkopQaUR-2r7iU.ttf"
|
2441 |
-
}
|
2442 |
-
},
|
2443 |
-
{
|
2444 |
-
"kind": "webfonts#webfont",
|
2445 |
-
"family": "Chango",
|
2446 |
-
"category": "display",
|
2447 |
-
"variants": [
|
2448 |
-
"regular"
|
2449 |
-
],
|
2450 |
-
"subsets": [
|
2451 |
-
"latin-ext",
|
2452 |
-
"latin"
|
2453 |
-
],
|
2454 |
-
"version": "v5",
|
2455 |
-
"lastModified": "2016-02-23",
|
2456 |
-
"files": {
|
2457 |
-
"regular": "http://fonts.gstatic.com/s/chango/v5/3W3AeMMtRTH08t5qLOjBmg.ttf"
|
2458 |
-
}
|
2459 |
-
},
|
2460 |
-
{
|
2461 |
-
"kind": "webfonts#webfont",
|
2462 |
-
"family": "Chau Philomene One",
|
2463 |
-
"category": "sans-serif",
|
2464 |
-
"variants": [
|
2465 |
-
"regular",
|
2466 |
-
"italic"
|
2467 |
-
],
|
2468 |
-
"subsets": [
|
2469 |
-
"latin-ext",
|
2470 |
-
"latin"
|
2471 |
-
],
|
2472 |
-
"version": "v4",
|
2473 |
-
"lastModified": "2016-02-23",
|
2474 |
-
"files": {
|
2475 |
-
"regular": "http://fonts.gstatic.com/s/chauphilomeneone/v4/KKc5egCL-a2fFVoOA2x6tBFi5dxgSTdxqnMJgWkBJcg.ttf",
|
2476 |
-
"italic": "http://fonts.gstatic.com/s/chauphilomeneone/v4/eJj1PY_iN4KiIuyOvtMHJP6uyLkxyiC4WcYA74sfquE.ttf"
|
2477 |
-
}
|
2478 |
-
},
|
2479 |
-
{
|
2480 |
-
"kind": "webfonts#webfont",
|
2481 |
-
"family": "Chela One",
|
2482 |
-
"category": "display",
|
2483 |
-
"variants": [
|
2484 |
-
"regular"
|
2485 |
-
],
|
2486 |
-
"subsets": [
|
2487 |
-
"latin-ext",
|
2488 |
-
"latin"
|
2489 |
-
],
|
2490 |
-
"version": "v5",
|
2491 |
-
"lastModified": "2016-02-24",
|
2492 |
-
"files": {
|
2493 |
-
"regular": "http://fonts.gstatic.com/s/chelaone/v5/h5O0dEnpnIq6jQnWxZybrA.ttf"
|
2494 |
-
}
|
2495 |
-
},
|
2496 |
-
{
|
2497 |
-
"kind": "webfonts#webfont",
|
2498 |
-
"family": "Chelsea Market",
|
2499 |
-
"category": "display",
|
2500 |
-
"variants": [
|
2501 |
-
"regular"
|
2502 |
-
],
|
2503 |
-
"subsets": [
|
2504 |
-
"latin-ext",
|
2505 |
-
"latin"
|
2506 |
-
],
|
2507 |
-
"version": "v4",
|
2508 |
-
"lastModified": "2016-02-23",
|
2509 |
-
"files": {
|
2510 |
-
"regular": "http://fonts.gstatic.com/s/chelseamarket/v4/qSdzwh2A4BbNemy78sJLfAAI1i8fIftCBXsBF2v9UMI.ttf"
|
2511 |
-
}
|
2512 |
-
},
|
2513 |
-
{
|
2514 |
-
"kind": "webfonts#webfont",
|
2515 |
-
"family": "Chenla",
|
2516 |
-
"category": "display",
|
2517 |
-
"variants": [
|
2518 |
-
"regular"
|
2519 |
-
],
|
2520 |
-
"subsets": [
|
2521 |
-
"khmer"
|
2522 |
-
],
|
2523 |
-
"version": "v9",
|
2524 |
-
"lastModified": "2015-04-03",
|
2525 |
-
"files": {
|
2526 |
-
"regular": "http://fonts.gstatic.com/s/chenla/v9/aLNpdAUDq2MZbWz2U1a16g.ttf"
|
2527 |
-
}
|
2528 |
-
},
|
2529 |
-
{
|
2530 |
-
"kind": "webfonts#webfont",
|
2531 |
-
"family": "Cherry Cream Soda",
|
2532 |
-
"category": "display",
|
2533 |
-
"variants": [
|
2534 |
-
"regular"
|
2535 |
-
],
|
2536 |
-
"subsets": [
|
2537 |
-
"latin"
|
2538 |
-
],
|
2539 |
-
"version": "v6",
|
2540 |
-
"lastModified": "2016-02-23",
|
2541 |
-
"files": {
|
2542 |
-
"regular": "http://fonts.gstatic.com/s/cherrycreamsoda/v6/OrD-AUnFcZeeKa6F_c0_WxOiHiuAPYA9ry3O1RG2XIU.ttf"
|
2543 |
-
}
|
2544 |
-
},
|
2545 |
-
{
|
2546 |
-
"kind": "webfonts#webfont",
|
2547 |
-
"family": "Cherry Swash",
|
2548 |
-
"category": "display",
|
2549 |
-
"variants": [
|
2550 |
-
"regular",
|
2551 |
-
"700"
|
2552 |
-
],
|
2553 |
-
"subsets": [
|
2554 |
-
"latin-ext",
|
2555 |
-
"latin"
|
2556 |
-
],
|
2557 |
-
"version": "v4",
|
2558 |
-
"lastModified": "2016-02-23",
|
2559 |
-
"files": {
|
2560 |
-
"regular": "http://fonts.gstatic.com/s/cherryswash/v4/HqOk7C7J1TZ5i3L-ejF0vi3USBnSvpkopQaUR-2r7iU.ttf",
|
2561 |
-
"700": "http://fonts.gstatic.com/s/cherryswash/v4/-CfyMyQqfucZPQNB0nvYyED2ttfZwueP-QU272T9-k4.ttf"
|
2562 |
-
}
|
2563 |
-
},
|
2564 |
-
{
|
2565 |
-
"kind": "webfonts#webfont",
|
2566 |
-
"family": "Chewy",
|
2567 |
-
"category": "display",
|
2568 |
-
"variants": [
|
2569 |
-
"regular"
|
2570 |
-
],
|
2571 |
-
"subsets": [
|
2572 |
-
"latin"
|
2573 |
-
],
|
2574 |
-
"version": "v7",
|
2575 |
-
"lastModified": "2016-02-23",
|
2576 |
-
"files": {
|
2577 |
-
"regular": "http://fonts.gstatic.com/s/chewy/v7/hcDN5cvQdIu6Bx4mg_TSyw.ttf"
|
2578 |
-
}
|
2579 |
-
},
|
2580 |
-
{
|
2581 |
-
"kind": "webfonts#webfont",
|
2582 |
-
"family": "Chicle",
|
2583 |
-
"category": "display",
|
2584 |
-
"variants": [
|
2585 |
-
"regular"
|
2586 |
-
],
|
2587 |
-
"subsets": [
|
2588 |
-
"latin-ext",
|
2589 |
-
"latin"
|
2590 |
-
],
|
2591 |
-
"version": "v5",
|
2592 |
-
"lastModified": "2016-02-23",
|
2593 |
-
"files": {
|
2594 |
-
"regular": "http://fonts.gstatic.com/s/chicle/v5/xg4q57Ut9ZmyFwLp51JLgg.ttf"
|
2595 |
-
}
|
2596 |
-
},
|
2597 |
-
{
|
2598 |
-
"kind": "webfonts#webfont",
|
2599 |
-
"family": "Chivo",
|
2600 |
-
"category": "sans-serif",
|
2601 |
-
"variants": [
|
2602 |
-
"regular",
|
2603 |
-
"italic",
|
2604 |
-
"900",
|
2605 |
-
"900italic"
|
2606 |
-
],
|
2607 |
-
"subsets": [
|
2608 |
-
"latin"
|
2609 |
-
],
|
2610 |
-
"version": "v7",
|
2611 |
-
"lastModified": "2016-02-23",
|
2612 |
-
"files": {
|
2613 |
-
"regular": "http://fonts.gstatic.com/s/chivo/v7/L88PEuzS9eRfHRZhAPhZyw.ttf",
|
2614 |
-
"italic": "http://fonts.gstatic.com/s/chivo/v7/Oe3-Q-a2kBzPnhHck_baMg.ttf",
|
2615 |
-
"900": "http://fonts.gstatic.com/s/chivo/v7/JAdkiWd46QCW4vOsj3dzTA.ttf",
|
2616 |
-
"900italic": "http://fonts.gstatic.com/s/chivo/v7/LoszYnE86q2wJEOjCigBQ_esZW2xOQ-xsNqO47m55DA.ttf"
|
2617 |
-
}
|
2618 |
-
},
|
2619 |
-
{
|
2620 |
-
"kind": "webfonts#webfont",
|
2621 |
-
"family": "Chonburi",
|
2622 |
-
"category": "display",
|
2623 |
-
"variants": [
|
2624 |
-
"regular"
|
2625 |
-
],
|
2626 |
-
"subsets": [
|
2627 |
-
"latin-ext",
|
2628 |
-
"thai",
|
2629 |
-
"vietnamese",
|
2630 |
-
"latin"
|
2631 |
-
],
|
2632 |
-
"version": "v1",
|
2633 |
-
"lastModified": "2015-08-06",
|
2634 |
-
"files": {
|
2635 |
-
"regular": "http://fonts.gstatic.com/s/chonburi/v1/jd9PfbW0x_8Myt_XeUxvSQ.ttf"
|
2636 |
-
}
|
2637 |
-
},
|
2638 |
-
{
|
2639 |
-
"kind": "webfonts#webfont",
|
2640 |
-
"family": "Cinzel",
|
2641 |
-
"category": "serif",
|
2642 |
-
"variants": [
|
2643 |
-
"regular",
|
2644 |
-
"700",
|
2645 |
-
"900"
|
2646 |
-
],
|
2647 |
-
"subsets": [
|
2648 |
-
"latin"
|
2649 |
-
],
|
2650 |
-
"version": "v4",
|
2651 |
-
"lastModified": "2016-02-23",
|
2652 |
-
"files": {
|
2653 |
-
"regular": "http://fonts.gstatic.com/s/cinzel/v4/GF7dy_Nc-a6EaHYSyGd-EA.ttf",
|
2654 |
-
"700": "http://fonts.gstatic.com/s/cinzel/v4/nYcFQ6_3pf_6YDrOFjBR8Q.ttf",
|
2655 |
-
"900": "http://fonts.gstatic.com/s/cinzel/v4/FTBj72ozM2cEOSxiVsRb3A.ttf"
|
2656 |
-
}
|
2657 |
-
},
|
2658 |
-
{
|
2659 |
-
"kind": "webfonts#webfont",
|
2660 |
-
"family": "Cinzel Decorative",
|
2661 |
-
"category": "display",
|
2662 |
-
"variants": [
|
2663 |
-
"regular",
|
2664 |
-
"700",
|
2665 |
-
"900"
|
2666 |
-
],
|
2667 |
-
"subsets": [
|
2668 |
-
"latin"
|
2669 |
-
],
|
2670 |
-
"version": "v4",
|
2671 |
-
"lastModified": "2016-02-23",
|
2672 |
-
"files": {
|
2673 |
-
"regular": "http://fonts.gstatic.com/s/cinzeldecorative/v4/fmgK7oaJJIXAkhd9798yQgT5USbJx2F82lQbogPy2bY.ttf",
|
2674 |
-
"700": "http://fonts.gstatic.com/s/cinzeldecorative/v4/pXhIVnhFtL_B9Vb1wq2F95-YYVDmZkJErg0zgx9XuZI.ttf",
|
2675 |
-
"900": "http://fonts.gstatic.com/s/cinzeldecorative/v4/pXhIVnhFtL_B9Vb1wq2F97Khqbv0zQZa0g-9HOXAalU.ttf"
|
2676 |
-
}
|
2677 |
-
},
|
2678 |
-
{
|
2679 |
-
"kind": "webfonts#webfont",
|
2680 |
-
"family": "Clicker Script",
|
2681 |
-
"category": "handwriting",
|
2682 |
-
"variants": [
|
2683 |
-
"regular"
|
2684 |
-
],
|
2685 |
-
"subsets": [
|
2686 |
-
"latin-ext",
|
2687 |
-
"latin"
|
2688 |
-
],
|
2689 |
-
"version": "v4",
|
2690 |
-
"lastModified": "2016-02-23",
|
2691 |
-
"files": {
|
2692 |
-
"regular": "http://fonts.gstatic.com/s/clickerscript/v4/Zupmk8XwADjufGxWB9KThBnpV0hQCek3EmWnCPrvGRM.ttf"
|
2693 |
-
}
|
2694 |
-
},
|
2695 |
-
{
|
2696 |
-
"kind": "webfonts#webfont",
|
2697 |
-
"family": "Coda",
|
2698 |
-
"category": "display",
|
2699 |
-
"variants": [
|
2700 |
-
"regular",
|
2701 |
-
"800"
|
2702 |
-
],
|
2703 |
-
"subsets": [
|
2704 |
-
"latin-ext",
|
2705 |
-
"latin"
|
2706 |
-
],
|
2707 |
-
"version": "v11",
|
2708 |
-
"lastModified": "2016-02-23",
|
2709 |
-
"files": {
|
2710 |
-
"regular": "http://fonts.gstatic.com/s/coda/v11/yHDvulhg-P-p2KRgRrnUYw.ttf",
|
2711 |
-
"800": "http://fonts.gstatic.com/s/coda/v11/6ZIw0sbALY0KTMWllZB3hQ.ttf"
|
2712 |
-
}
|
2713 |
-
},
|
2714 |
-
{
|
2715 |
-
"kind": "webfonts#webfont",
|
2716 |
-
"family": "Coda Caption",
|
2717 |
-
"category": "sans-serif",
|
2718 |
-
"variants": [
|
2719 |
-
"800"
|
2720 |
-
],
|
2721 |
-
"subsets": [
|
2722 |
-
"latin-ext",
|
2723 |
-
"latin"
|
2724 |
-
],
|
2725 |
-
"version": "v9",
|
2726 |
-
"lastModified": "2016-02-23",
|
2727 |
-
"files": {
|
2728 |
-
"800": "http://fonts.gstatic.com/s/codacaption/v9/YDl6urZh-DUFhiMBTgAnz_qsay_1ZmRGmC8pVRdIfAg.ttf"
|
2729 |
-
}
|
2730 |
-
},
|
2731 |
-
{
|
2732 |
-
"kind": "webfonts#webfont",
|
2733 |
-
"family": "Codystar",
|
2734 |
-
"category": "display",
|
2735 |
-
"variants": [
|
2736 |
-
"300",
|
2737 |
-
"regular"
|
2738 |
-
],
|
2739 |
-
"subsets": [
|
2740 |
-
"latin-ext",
|
2741 |
-
"latin"
|
2742 |
-
],
|
2743 |
-
"version": "v4",
|
2744 |
-
"lastModified": "2016-02-23",
|
2745 |
-
"files": {
|
2746 |
-
"300": "http://fonts.gstatic.com/s/codystar/v4/EVaUzfJkcb8Zqx9kzQLXqqCWcynf_cDxXwCLxiixG1c.ttf",
|
2747 |
-
"regular": "http://fonts.gstatic.com/s/codystar/v4/EN-CPFKYowSI7SuR7-0cZA.ttf"
|
2748 |
-
}
|
2749 |
-
},
|
2750 |
-
{
|
2751 |
-
"kind": "webfonts#webfont",
|
2752 |
-
"family": "Combo",
|
2753 |
-
"category": "display",
|
2754 |
-
"variants": [
|
2755 |
-
"regular"
|
2756 |
-
],
|
2757 |
-
"subsets": [
|
2758 |
-
"latin-ext",
|
2759 |
-
"latin"
|
2760 |
-
],
|
2761 |
-
"version": "v5",
|
2762 |
-
"lastModified": "2016-02-23",
|
2763 |
-
"files": {
|
2764 |
-
"regular": "http://fonts.gstatic.com/s/combo/v5/Nab98KjR3JZSSPGtzLyXNw.ttf"
|
2765 |
-
}
|
2766 |
-
},
|
2767 |
-
{
|
2768 |
-
"kind": "webfonts#webfont",
|
2769 |
-
"family": "Comfortaa",
|
2770 |
-
"category": "display",
|
2771 |
-
"variants": [
|
2772 |
-
"300",
|
2773 |
-
"regular",
|
2774 |
-
"700"
|
2775 |
-
],
|
2776 |
-
"subsets": [
|
2777 |
-
"latin-ext",
|
2778 |
-
"cyrillic-ext",
|
2779 |
-
"cyrillic",
|
2780 |
-
"greek",
|
2781 |
-
"latin"
|
2782 |
-
],
|
2783 |
-
"version": "v7",
|
2784 |
-
"lastModified": "2016-02-23",
|
2785 |
-
"files": {
|
2786 |
-
"300": "http://fonts.gstatic.com/s/comfortaa/v7/r_tUZNl0G8xCoOmp_JkSCi3USBnSvpkopQaUR-2r7iU.ttf",
|
2787 |
-
"regular": "http://fonts.gstatic.com/s/comfortaa/v7/lZx6C1VViPgSOhCBUP7hXA.ttf",
|
2788 |
-
"700": "http://fonts.gstatic.com/s/comfortaa/v7/fND5XPYKrF2tQDwwfWZJIy3USBnSvpkopQaUR-2r7iU.ttf"
|
2789 |
-
}
|
2790 |
-
},
|
2791 |
-
{
|
2792 |
-
"kind": "webfonts#webfont",
|
2793 |
-
"family": "Coming Soon",
|
2794 |
-
"category": "handwriting",
|
2795 |
-
"variants": [
|
2796 |
-
"regular"
|
2797 |
-
],
|
2798 |
-
"subsets": [
|
2799 |
-
"latin"
|
2800 |
-
],
|
2801 |
-
"version": "v6",
|
2802 |
-
"lastModified": "2016-02-23",
|
2803 |
-
"files": {
|
2804 |
-
"regular": "http://fonts.gstatic.com/s/comingsoon/v6/Yz2z3IAe2HSQAOWsSG8COKCWcynf_cDxXwCLxiixG1c.ttf"
|
2805 |
-
}
|
2806 |
-
},
|
2807 |
-
{
|
2808 |
-
"kind": "webfonts#webfont",
|
2809 |
-
"family": "Concert One",
|
2810 |
-
"category": "display",
|
2811 |
-
"variants": [
|
2812 |
-
"regular"
|
2813 |
-
],
|
2814 |
-
"subsets": [
|
2815 |
-
"latin-ext",
|
2816 |
-
"latin"
|
2817 |
-
],
|
2818 |
-
"version": "v7",
|
2819 |
-
"lastModified": "2016-02-23",
|
2820 |
-
"files": {
|
2821 |
-
"regular": "http://fonts.gstatic.com/s/concertone/v7/N5IWCIGhUNdPZn_efTxKN6CWcynf_cDxXwCLxiixG1c.ttf"
|
2822 |
-
}
|
2823 |
-
},
|
2824 |
-
{
|
2825 |
-
"kind": "webfonts#webfont",
|
2826 |
-
"family": "Condiment",
|
2827 |
-
"category": "handwriting",
|
2828 |
-
"variants": [
|
2829 |
-
"regular"
|
2830 |
-
],
|
2831 |
-
"subsets": [
|
2832 |
-
"latin-ext",
|
2833 |
-
"latin"
|
2834 |
-
],
|
2835 |
-
"version": "v4",
|
2836 |
-
"lastModified": "2016-02-23",
|
2837 |
-
"files": {
|
2838 |
-
"regular": "http://fonts.gstatic.com/s/condiment/v4/CstmdiPpgFSV0FUNL5LrJA.ttf"
|
2839 |
-
}
|
2840 |
-
},
|
2841 |
-
{
|
2842 |
-
"kind": "webfonts#webfont",
|
2843 |
-
"family": "Content",
|
2844 |
-
"category": "display",
|
2845 |
-
"variants": [
|
2846 |
-
"regular",
|
2847 |
-
"700"
|
2848 |
-
],
|
2849 |
-
"subsets": [
|
2850 |
-
"khmer"
|
2851 |
-
],
|
2852 |
-
"version": "v8",
|
2853 |
-
"lastModified": "2015-04-06",
|
2854 |
-
"files": {
|
2855 |
-
"regular": "http://fonts.gstatic.com/s/content/v8/l8qaLjygvOkDEU2G6-cjfQ.ttf",
|
2856 |
-
"700": "http://fonts.gstatic.com/s/content/v8/7PivP8Zvs2qn6F6aNbSQe_esZW2xOQ-xsNqO47m55DA.ttf"
|
2857 |
-
}
|
2858 |
-
},
|
2859 |
-
{
|
2860 |
-
"kind": "webfonts#webfont",
|
2861 |
-
"family": "Contrail One",
|
2862 |
-
"category": "display",
|
2863 |
-
"variants": [
|
2864 |
-
"regular"
|
2865 |
-
],
|
2866 |
-
"subsets": [
|
2867 |
-
"latin"
|
2868 |
-
],
|
2869 |
-
"version": "v6",
|
2870 |
-
"lastModified": "2016-02-23",
|
2871 |
-
"files": {
|
2872 |
-
"regular": "http://fonts.gstatic.com/s/contrailone/v6/b41KxjgiyqX-hkggANDU6C3USBnSvpkopQaUR-2r7iU.ttf"
|
2873 |
-
}
|
2874 |
-
},
|
2875 |
-
{
|
2876 |
-
"kind": "webfonts#webfont",
|
2877 |
-
"family": "Convergence",
|
2878 |
-
"category": "sans-serif",
|
2879 |
-
"variants": [
|
2880 |
-
"regular"
|
2881 |
-
],
|
2882 |
-
"subsets": [
|
2883 |
-
"latin"
|
2884 |
-
],
|
2885 |
-
"version": "v5",
|
2886 |
-
"lastModified": "2016-02-23",
|
2887 |
-
"files": {
|
2888 |
-
"regular": "http://fonts.gstatic.com/s/convergence/v5/eykrGz1NN_YpQmkAZjW-qKCWcynf_cDxXwCLxiixG1c.ttf"
|
2889 |
-
}
|
2890 |
-
},
|
2891 |
-
{
|
2892 |
-
"kind": "webfonts#webfont",
|
2893 |
-
"family": "Cookie",
|
2894 |
-
"category": "handwriting",
|
2895 |
-
"variants": [
|
2896 |
-
"regular"
|
2897 |
-
],
|
2898 |
-
"subsets": [
|
2899 |
-
"latin"
|
2900 |
-
],
|
2901 |
-
"version": "v7",
|
2902 |
-
"lastModified": "2016-02-23",
|
2903 |
-
"files": {
|
2904 |
-
"regular": "http://fonts.gstatic.com/s/cookie/v7/HxeUC62y_YdDbiFlze357A.ttf"
|
2905 |
-
}
|
2906 |
-
},
|
2907 |
-
{
|
2908 |
-
"kind": "webfonts#webfont",
|
2909 |
-
"family": "Copse",
|
2910 |
-
"category": "serif",
|
2911 |
-
"variants": [
|
2912 |
-
"regular"
|
2913 |
-
],
|
2914 |
-
"subsets": [
|
2915 |
-
"latin"
|
2916 |
-
],
|
2917 |
-
"version": "v6",
|
2918 |
-
"lastModified": "2016-02-23",
|
2919 |
-
"files": {
|
2920 |
-
"regular": "http://fonts.gstatic.com/s/copse/v6/wikLrtPGjZDvZ5w2i5HLWg.ttf"
|
2921 |
-
}
|
2922 |
-
},
|
2923 |
-
{
|
2924 |
-
"kind": "webfonts#webfont",
|
2925 |
-
"family": "Corben",
|
2926 |
-
"category": "display",
|
2927 |
-
"variants": [
|
2928 |
-
"regular",
|
2929 |
-
"700"
|
2930 |
-
],
|
2931 |
-
"subsets": [
|
2932 |
-
"latin-ext",
|
2933 |
-
"latin"
|
2934 |
-
],
|
2935 |
-
"version": "v9",
|
2936 |
-
"lastModified": "2016-02-23",
|
2937 |
-
"files": {
|
2938 |
-
"regular": "http://fonts.gstatic.com/s/corben/v9/tTysMZkt-j8Y5yhkgsoajQ.ttf",
|
2939 |
-
"700": "http://fonts.gstatic.com/s/corben/v9/lirJaFSQWdGQuV--fksg5g.ttf"
|
2940 |
-
}
|
2941 |
-
},
|
2942 |
-
{
|
2943 |
-
"kind": "webfonts#webfont",
|
2944 |
-
"family": "Courgette",
|
2945 |
-
"category": "handwriting",
|
2946 |
-
"variants": [
|
2947 |
-
"regular"
|
2948 |
-
],
|
2949 |
-
"subsets": [
|
2950 |
-
"latin-ext",
|
2951 |
-
"latin"
|
2952 |
-
],
|
2953 |
-
"version": "v4",
|
2954 |
-
"lastModified": "2016-02-23",
|
2955 |
-
"files": {
|
2956 |
-
"regular": "http://fonts.gstatic.com/s/courgette/v4/2YO0EYtyE9HUPLZprahpZA.ttf"
|
2957 |
-
}
|
2958 |
-
},
|
2959 |
-
{
|
2960 |
-
"kind": "webfonts#webfont",
|
2961 |
-
"family": "Cousine",
|
2962 |
-
"category": "monospace",
|
2963 |
-
"variants": [
|
2964 |
-
"regular",
|
2965 |
-
"italic",
|
2966 |
-
"700",
|
2967 |
-
"700italic"
|
2968 |
-
],
|
2969 |
-
"subsets": [
|
2970 |
-
"latin-ext",
|
2971 |
-
"greek-ext",
|
2972 |
-
"vietnamese",
|
2973 |
-
"cyrillic-ext",
|
2974 |
-
"hebrew",
|
2975 |
-
"cyrillic",
|
2976 |
-
"greek",
|
2977 |
-
"latin"
|
2978 |
-
],
|
2979 |
-
"version": "v10",
|
2980 |
-
"lastModified": "2016-02-23",
|
2981 |
-
"files": {
|
2982 |
-
"regular": "http://fonts.gstatic.com/s/cousine/v10/GYX4bPXObJNJo63QJEUnLg.ttf",
|
2983 |
-
"italic": "http://fonts.gstatic.com/s/cousine/v10/1WtIuajLoo8vjVwsrZ3eOg.ttf",
|
2984 |
-
"700": "http://fonts.gstatic.com/s/cousine/v10/FXEOnNUcCzhdtoBxiq-lovesZW2xOQ-xsNqO47m55DA.ttf",
|
2985 |
-
"700italic": "http://fonts.gstatic.com/s/cousine/v10/y_AZ5Sz-FwL1lux2xLSTZS3USBnSvpkopQaUR-2r7iU.ttf"
|
2986 |
-
}
|
2987 |
-
},
|
2988 |
-
{
|
2989 |
-
"kind": "webfonts#webfont",
|
2990 |
-
"family": "Coustard",
|
2991 |
-
"category": "serif",
|
2992 |
-
"variants": [
|
2993 |
-
"regular",
|
2994 |
-
"900"
|
2995 |
-
],
|
2996 |
-
"subsets": [
|
2997 |
-
"latin"
|
2998 |
-
],
|
2999 |
-
"version": "v6",
|
3000 |
-
"lastModified": "2016-02-23",
|
3001 |
-
"files": {
|
3002 |
-
"regular": "http://fonts.gstatic.com/s/coustard/v6/iO2Rs5PmqAEAXoU3SkMVBg.ttf",
|
3003 |
-
"900": "http://fonts.gstatic.com/s/coustard/v6/W02OCWO6OfMUHz6aVyegQ6CWcynf_cDxXwCLxiixG1c.ttf"
|
3004 |
-
}
|
3005 |
-
},
|
3006 |
-
{
|
3007 |
-
"kind": "webfonts#webfont",
|
3008 |
-
"family": "Covered By Your Grace",
|
3009 |
-
"category": "handwriting",
|
3010 |
-
"variants": [
|
3011 |
-
"regular"
|
3012 |
-
],
|
3013 |
-
"subsets": [
|
3014 |
-
"latin"
|
3015 |
-
],
|
3016 |
-
"version": "v6",
|
3017 |
-
"lastModified": "2016-02-23",
|
3018 |
-
"files": {
|
3019 |
-
"regular": "http://fonts.gstatic.com/s/coveredbyyourgrace/v6/6ozZp4BPlrbDRWPe3EBGA6CVUMdvnk-GcAiZQrX9Gek.ttf"
|
3020 |
-
}
|
3021 |
-
},
|
3022 |
-
{
|
3023 |
-
"kind": "webfonts#webfont",
|
3024 |
-
"family": "Crafty Girls",
|
3025 |
-
"category": "handwriting",
|
3026 |
-
"variants": [
|
3027 |
-
"regular"
|
3028 |
-
],
|
3029 |
-
"subsets": [
|
3030 |
-
"latin"
|
3031 |
-
],
|
3032 |
-
"version": "v5",
|
3033 |
-
"lastModified": "2016-02-23",
|
3034 |
-
"files": {
|
3035 |
-
"regular": "http://fonts.gstatic.com/s/craftygirls/v5/0Sv8UWFFdhQmesHL32H8oy3USBnSvpkopQaUR-2r7iU.ttf"
|
3036 |
-
}
|
3037 |
-
},
|
3038 |
-
{
|
3039 |
-
"kind": "webfonts#webfont",
|
3040 |
-
"family": "Creepster",
|
3041 |
-
"category": "display",
|
3042 |
-
"variants": [
|
3043 |
-
"regular"
|
3044 |
-
],
|
3045 |
-
"subsets": [
|
3046 |
-
"latin"
|
3047 |
-
],
|
3048 |
-
"version": "v5",
|
3049 |
-
"lastModified": "2016-02-23",
|
3050 |
-
"files": {
|
3051 |
-
"regular": "http://fonts.gstatic.com/s/creepster/v5/0vdr5kWJ6aJlOg5JvxnXzQ.ttf"
|
3052 |
-
}
|
3053 |
-
},
|
3054 |
-
{
|
3055 |
-
"kind": "webfonts#webfont",
|
3056 |
-
"family": "Crete Round",
|
3057 |
-
"category": "serif",
|
3058 |
-
"variants": [
|
3059 |
-
"regular",
|
3060 |
-
"italic"
|
3061 |
-
],
|
3062 |
-
"subsets": [
|
3063 |
-
"latin-ext",
|
3064 |
-
"latin"
|
3065 |
-
],
|
3066 |
-
"version": "v5",
|
3067 |
-
"lastModified": "2016-02-23",
|
3068 |
-
"files": {
|
3069 |
-
"regular": "http://fonts.gstatic.com/s/creteround/v5/B8EwN421qqOCCT8vOH4wJ6CWcynf_cDxXwCLxiixG1c.ttf",
|
3070 |
-
"italic": "http://fonts.gstatic.com/s/creteround/v5/5xAt7XK2vkUdjhGtt98unUeOrDcLawS7-ssYqLr2Xp4.ttf"
|
3071 |
-
}
|
3072 |
-
},
|
3073 |
-
{
|
3074 |
-
"kind": "webfonts#webfont",
|
3075 |
-
"family": "Crimson Text",
|
3076 |
-
"category": "serif",
|
3077 |
-
"variants": [
|
3078 |
-
"regular",
|
3079 |
-
"italic",
|
3080 |
-
"600",
|
3081 |
-
"600italic",
|
3082 |
-
"700",
|
3083 |
-
"700italic"
|
3084 |
-
],
|
3085 |
-
"subsets": [
|
3086 |
-
"latin"
|
3087 |
-
],
|
3088 |
-
"version": "v6",
|
3089 |
-
"lastModified": "2016-02-23",
|
3090 |
-
"files": {
|
3091 |
-
"regular": "http://fonts.gstatic.com/s/crimsontext/v6/3IFMwfRa07i-auYR-B-zNS3USBnSvpkopQaUR-2r7iU.ttf",
|
3092 |
-
"italic": "http://fonts.gstatic.com/s/crimsontext/v6/a5QZnvmn5amyNI-t2BMkWPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
3093 |
-
"600": "http://fonts.gstatic.com/s/crimsontext/v6/rEy5tGc5HdXy56Xvd4f3I2v8CylhIUtwUiYO7Z2wXbE.ttf",
|
3094 |
-
"600italic": "http://fonts.gstatic.com/s/crimsontext/v6/4j4TR-EfnvCt43InYpUNDIR-5-urNOGAobhAyctHvW8.ttf",
|
3095 |
-
"700": "http://fonts.gstatic.com/s/crimsontext/v6/rEy5tGc5HdXy56Xvd4f3I0D2ttfZwueP-QU272T9-k4.ttf",
|
3096 |
-
"700italic": "http://fonts.gstatic.com/s/crimsontext/v6/4j4TR-EfnvCt43InYpUNDPAs9-1nE9qOqhChW0m4nDE.ttf"
|
3097 |
-
}
|
3098 |
-
},
|
3099 |
-
{
|
3100 |
-
"kind": "webfonts#webfont",
|
3101 |
-
"family": "Croissant One",
|
3102 |
-
"category": "display",
|
3103 |
-
"variants": [
|
3104 |
-
"regular"
|
3105 |
-
],
|
3106 |
-
"subsets": [
|
3107 |
-
"latin-ext",
|
3108 |
-
"latin"
|
3109 |
-
],
|
3110 |
-
"version": "v4",
|
3111 |
-
"lastModified": "2016-02-23",
|
3112 |
-
"files": {
|
3113 |
-
"regular": "http://fonts.gstatic.com/s/croissantone/v4/mPjsOObnC77fp1cvZlOfIYjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
3114 |
-
}
|
3115 |
-
},
|
3116 |
-
{
|
3117 |
-
"kind": "webfonts#webfont",
|
3118 |
-
"family": "Crushed",
|
3119 |
-
"category": "display",
|
3120 |
-
"variants": [
|
3121 |
-
"regular"
|
3122 |
-
],
|
3123 |
-
"subsets": [
|
3124 |
-
"latin"
|
3125 |
-
],
|
3126 |
-
"version": "v6",
|
3127 |
-
"lastModified": "2016-02-23",
|
3128 |
-
"files": {
|
3129 |
-
"regular": "http://fonts.gstatic.com/s/crushed/v6/aHwSejs3Kt0Lg95u7j32jA.ttf"
|
3130 |
-
}
|
3131 |
-
},
|
3132 |
-
{
|
3133 |
-
"kind": "webfonts#webfont",
|
3134 |
-
"family": "Cuprum",
|
3135 |
-
"category": "sans-serif",
|
3136 |
-
"variants": [
|
3137 |
-
"regular",
|
3138 |
-
"italic",
|
3139 |
-
"700",
|
3140 |
-
"700italic"
|
3141 |
-
],
|
3142 |
-
"subsets": [
|
3143 |
-
"latin-ext",
|
3144 |
-
"cyrillic",
|
3145 |
-
"latin"
|
3146 |
-
],
|
3147 |
-
"version": "v7",
|
3148 |
-
"lastModified": "2016-02-23",
|
3149 |
-
"files": {
|
3150 |
-
"regular": "http://fonts.gstatic.com/s/cuprum/v7/JgXs0F_UiaEdAS74msmFNg.ttf",
|
3151 |
-
"italic": "http://fonts.gstatic.com/s/cuprum/v7/cLEz0KV6OxInnktSzpk58g.ttf",
|
3152 |
-
"700": "http://fonts.gstatic.com/s/cuprum/v7/6tl3_FkDeXSD72oEHuJh4w.ttf",
|
3153 |
-
"700italic": "http://fonts.gstatic.com/s/cuprum/v7/bnkXaBfoYvaJ75axRPSwVKCWcynf_cDxXwCLxiixG1c.ttf"
|
3154 |
-
}
|
3155 |
-
},
|
3156 |
-
{
|
3157 |
-
"kind": "webfonts#webfont",
|
3158 |
-
"family": "Cutive",
|
3159 |
-
"category": "serif",
|
3160 |
-
"variants": [
|
3161 |
-
"regular"
|
3162 |
-
],
|
3163 |
-
"subsets": [
|
3164 |
-
"latin-ext",
|
3165 |
-
"latin"
|
3166 |
-
],
|
3167 |
-
"version": "v8",
|
3168 |
-
"lastModified": "2016-02-23",
|
3169 |
-
"files": {
|
3170 |
-
"regular": "http://fonts.gstatic.com/s/cutive/v8/G2bW-ImyOCwKxBkLyz39YQ.ttf"
|
3171 |
-
}
|
3172 |
-
},
|
3173 |
-
{
|
3174 |
-
"kind": "webfonts#webfont",
|
3175 |
-
"family": "Cutive Mono",
|
3176 |
-
"category": "monospace",
|
3177 |
-
"variants": [
|
3178 |
-
"regular"
|
3179 |
-
],
|
3180 |
-
"subsets": [
|
3181 |
-
"latin-ext",
|
3182 |
-
"latin"
|
3183 |
-
],
|
3184 |
-
"version": "v4",
|
3185 |
-
"lastModified": "2016-02-23",
|
3186 |
-
"files": {
|
3187 |
-
"regular": "http://fonts.gstatic.com/s/cutivemono/v4/ncWQtFVKcSs8OW798v30k6CWcynf_cDxXwCLxiixG1c.ttf"
|
3188 |
-
}
|
3189 |
-
},
|
3190 |
-
{
|
3191 |
-
"kind": "webfonts#webfont",
|
3192 |
-
"family": "Damion",
|
3193 |
-
"category": "handwriting",
|
3194 |
-
"variants": [
|
3195 |
-
"regular"
|
3196 |
-
],
|
3197 |
-
"subsets": [
|
3198 |
-
"latin"
|
3199 |
-
],
|
3200 |
-
"version": "v6",
|
3201 |
-
"lastModified": "2016-02-23",
|
3202 |
-
"files": {
|
3203 |
-
"regular": "http://fonts.gstatic.com/s/damion/v6/13XtECwKxhD_VrOqXL4SiA.ttf"
|
3204 |
-
}
|
3205 |
-
},
|
3206 |
-
{
|
3207 |
-
"kind": "webfonts#webfont",
|
3208 |
-
"family": "Dancing Script",
|
3209 |
-
"category": "handwriting",
|
3210 |
-
"variants": [
|
3211 |
-
"regular",
|
3212 |
-
"700"
|
3213 |
-
],
|
3214 |
-
"subsets": [
|
3215 |
-
"latin"
|
3216 |
-
],
|
3217 |
-
"version": "v6",
|
3218 |
-
"lastModified": "2016-02-23",
|
3219 |
-
"files": {
|
3220 |
-
"regular": "http://fonts.gstatic.com/s/dancingscript/v6/DK0eTGXiZjN6yA8zAEyM2RnpV0hQCek3EmWnCPrvGRM.ttf",
|
3221 |
-
"700": "http://fonts.gstatic.com/s/dancingscript/v6/KGBfwabt0ZRLA5W1ywjowb_dAmXiKjTPGCuO6G2MbfA.ttf"
|
3222 |
-
}
|
3223 |
-
},
|
3224 |
-
{
|
3225 |
-
"kind": "webfonts#webfont",
|
3226 |
-
"family": "Dangrek",
|
3227 |
-
"category": "display",
|
3228 |
-
"variants": [
|
3229 |
-
"regular"
|
3230 |
-
],
|
3231 |
-
"subsets": [
|
3232 |
-
"khmer"
|
3233 |
-
],
|
3234 |
-
"version": "v8",
|
3235 |
-
"lastModified": "2015-04-06",
|
3236 |
-
"files": {
|
3237 |
-
"regular": "http://fonts.gstatic.com/s/dangrek/v8/LOaFhBT-EHNxZjV8DAW_ew.ttf"
|
3238 |
-
}
|
3239 |
-
},
|
3240 |
-
{
|
3241 |
-
"kind": "webfonts#webfont",
|
3242 |
-
"family": "Dawning of a New Day",
|
3243 |
-
"category": "handwriting",
|
3244 |
-
"variants": [
|
3245 |
-
"regular"
|
3246 |
-
],
|
3247 |
-
"subsets": [
|
3248 |
-
"latin"
|
3249 |
-
],
|
3250 |
-
"version": "v7",
|
3251 |
-
"lastModified": "2016-02-23",
|
3252 |
-
"files": {
|
3253 |
-
"regular": "http://fonts.gstatic.com/s/dawningofanewday/v7/JiDsRhiKZt8uz3NJ5xA06gXLnohmOYWQZqo_sW8GLTk.ttf"
|
3254 |
-
}
|
3255 |
-
},
|
3256 |
-
{
|
3257 |
-
"kind": "webfonts#webfont",
|
3258 |
-
"family": "Days One",
|
3259 |
-
"category": "sans-serif",
|
3260 |
-
"variants": [
|
3261 |
-
"regular"
|
3262 |
-
],
|
3263 |
-
"subsets": [
|
3264 |
-
"latin"
|
3265 |
-
],
|
3266 |
-
"version": "v6",
|
3267 |
-
"lastModified": "2016-02-23",
|
3268 |
-
"files": {
|
3269 |
-
"regular": "http://fonts.gstatic.com/s/daysone/v6/kzwZjNhc1iabMsrc_hKBIA.ttf"
|
3270 |
-
}
|
3271 |
-
},
|
3272 |
-
{
|
3273 |
-
"kind": "webfonts#webfont",
|
3274 |
-
"family": "Dekko",
|
3275 |
-
"category": "handwriting",
|
3276 |
-
"variants": [
|
3277 |
-
"regular"
|
3278 |
-
],
|
3279 |
-
"subsets": [
|
3280 |
-
"devanagari",
|
3281 |
-
"latin-ext",
|
3282 |
-
"latin"
|
3283 |
-
],
|
3284 |
-
"version": "v2",
|
3285 |
-
"lastModified": "2015-04-03",
|
3286 |
-
"files": {
|
3287 |
-
"regular": "http://fonts.gstatic.com/s/dekko/v2/AKtgABKC1rUxgIgS-bpojw.ttf"
|
3288 |
-
}
|
3289 |
-
},
|
3290 |
-
{
|
3291 |
-
"kind": "webfonts#webfont",
|
3292 |
-
"family": "Delius",
|
3293 |
-
"category": "handwriting",
|
3294 |
-
"variants": [
|
3295 |
-
"regular"
|
3296 |
-
],
|
3297 |
-
"subsets": [
|
3298 |
-
"latin"
|
3299 |
-
],
|
3300 |
-
"version": "v6",
|
3301 |
-
"lastModified": "2016-02-23",
|
3302 |
-
"files": {
|
3303 |
-
"regular": "http://fonts.gstatic.com/s/delius/v6/TQA163qafki2-gV-B6F_ag.ttf"
|
3304 |
-
}
|
3305 |
-
},
|
3306 |
-
{
|
3307 |
-
"kind": "webfonts#webfont",
|
3308 |
-
"family": "Delius Swash Caps",
|
3309 |
-
"category": "handwriting",
|
3310 |
-
"variants": [
|
3311 |
-
"regular"
|
3312 |
-
],
|
3313 |
-
"subsets": [
|
3314 |
-
"latin"
|
3315 |
-
],
|
3316 |
-
"version": "v8",
|
3317 |
-
"lastModified": "2016-02-23",
|
3318 |
-
"files": {
|
3319 |
-
"regular": "http://fonts.gstatic.com/s/deliusswashcaps/v8/uXyrEUnoWApxIOICunRq7yIrxb5zDVgU2N3VzXm7zq4.ttf"
|
3320 |
-
}
|
3321 |
-
},
|
3322 |
-
{
|
3323 |
-
"kind": "webfonts#webfont",
|
3324 |
-
"family": "Delius Unicase",
|
3325 |
-
"category": "handwriting",
|
3326 |
-
"variants": [
|
3327 |
-
"regular",
|
3328 |
-
"700"
|
3329 |
-
],
|
3330 |
-
"subsets": [
|
3331 |
-
"latin"
|
3332 |
-
],
|
3333 |
-
"version": "v9",
|
3334 |
-
"lastModified": "2016-02-23",
|
3335 |
-
"files": {
|
3336 |
-
"regular": "http://fonts.gstatic.com/s/deliusunicase/v9/b2sKujV3Q48RV2PQ0k1vqu6rPKfVZo7L2bERcf0BDns.ttf",
|
3337 |
-
"700": "http://fonts.gstatic.com/s/deliusunicase/v9/7FTMTITcb4dxUp99FAdTqNy5weKXdcrx-wE0cgECMq8.ttf"
|
3338 |
-
}
|
3339 |
-
},
|
3340 |
-
{
|
3341 |
-
"kind": "webfonts#webfont",
|
3342 |
-
"family": "Della Respira",
|
3343 |
-
"category": "serif",
|
3344 |
-
"variants": [
|
3345 |
-
"regular"
|
3346 |
-
],
|
3347 |
-
"subsets": [
|
3348 |
-
"latin"
|
3349 |
-
],
|
3350 |
-
"version": "v4",
|
3351 |
-
"lastModified": "2016-02-23",
|
3352 |
-
"files": {
|
3353 |
-
"regular": "http://fonts.gstatic.com/s/dellarespira/v4/F4E6Lo_IZ6L9AJCcbqtDVeDcg5akpSnIcsPhLOFv7l8.ttf"
|
3354 |
-
}
|
3355 |
-
},
|
3356 |
-
{
|
3357 |
-
"kind": "webfonts#webfont",
|
3358 |
-
"family": "Denk One",
|
3359 |
-
"category": "sans-serif",
|
3360 |
-
"variants": [
|
3361 |
-
"regular"
|
3362 |
-
],
|
3363 |
-
"subsets": [
|
3364 |
-
"latin-ext",
|
3365 |
-
"latin"
|
3366 |
-
],
|
3367 |
-
"version": "v4",
|
3368 |
-
"lastModified": "2016-02-23",
|
3369 |
-
"files": {
|
3370 |
-
"regular": "http://fonts.gstatic.com/s/denkone/v4/TdXOeA4eA_hEx4W8Sh9wPw.ttf"
|
3371 |
-
}
|
3372 |
-
},
|
3373 |
-
{
|
3374 |
-
"kind": "webfonts#webfont",
|
3375 |
-
"family": "Devonshire",
|
3376 |
-
"category": "handwriting",
|
3377 |
-
"variants": [
|
3378 |
-
"regular"
|
3379 |
-
],
|
3380 |
-
"subsets": [
|
3381 |
-
"latin-ext",
|
3382 |
-
"latin"
|
3383 |
-
],
|
3384 |
-
"version": "v5",
|
3385 |
-
"lastModified": "2016-02-23",
|
3386 |
-
"files": {
|
3387 |
-
"regular": "http://fonts.gstatic.com/s/devonshire/v5/I3ct_2t12SYizP8ZC-KFi_esZW2xOQ-xsNqO47m55DA.ttf"
|
3388 |
-
}
|
3389 |
-
},
|
3390 |
-
{
|
3391 |
-
"kind": "webfonts#webfont",
|
3392 |
-
"family": "Dhurjati",
|
3393 |
-
"category": "sans-serif",
|
3394 |
-
"variants": [
|
3395 |
-
"regular"
|
3396 |
-
],
|
3397 |
-
"subsets": [
|
3398 |
-
"telugu",
|
3399 |
-
"latin"
|
3400 |
-
],
|
3401 |
-
"version": "v4",
|
3402 |
-
"lastModified": "2016-02-23",
|
3403 |
-
"files": {
|
3404 |
-
"regular": "http://fonts.gstatic.com/s/dhurjati/v4/uV6jO5e2iFMbGB0z79Cy5g.ttf"
|
3405 |
-
}
|
3406 |
-
},
|
3407 |
-
{
|
3408 |
-
"kind": "webfonts#webfont",
|
3409 |
-
"family": "Didact Gothic",
|
3410 |
-
"category": "sans-serif",
|
3411 |
-
"variants": [
|
3412 |
-
"regular"
|
3413 |
-
],
|
3414 |
-
"subsets": [
|
3415 |
-
"latin-ext",
|
3416 |
-
"greek-ext",
|
3417 |
-
"cyrillic-ext",
|
3418 |
-
"cyrillic",
|
3419 |
-
"greek",
|
3420 |
-
"latin"
|
3421 |
-
],
|
3422 |
-
"version": "v7",
|
3423 |
-
"lastModified": "2016-02-23",
|
3424 |
-
"files": {
|
3425 |
-
"regular": "http://fonts.gstatic.com/s/didactgothic/v7/v8_72sD3DYMKyM0dn3LtWotBLojGU5Qdl8-5NL4v70w.ttf"
|
3426 |
-
}
|
3427 |
-
},
|
3428 |
-
{
|
3429 |
-
"kind": "webfonts#webfont",
|
3430 |
-
"family": "Diplomata",
|
3431 |
-
"category": "display",
|
3432 |
-
"variants": [
|
3433 |
-
"regular"
|
3434 |
-
],
|
3435 |
-
"subsets": [
|
3436 |
-
"latin-ext",
|
3437 |
-
"latin"
|
3438 |
-
],
|
3439 |
-
"version": "v7",
|
3440 |
-
"lastModified": "2016-03-14",
|
3441 |
-
"files": {
|
3442 |
-
"regular": "http://fonts.gstatic.com/s/diplomata/v7/u-ByBiKgN6rTMA36H3kcKg.ttf"
|
3443 |
-
}
|
3444 |
-
},
|
3445 |
-
{
|
3446 |
-
"kind": "webfonts#webfont",
|
3447 |
-
"family": "Diplomata SC",
|
3448 |
-
"category": "display",
|
3449 |
-
"variants": [
|
3450 |
-
"regular"
|
3451 |
-
],
|
3452 |
-
"subsets": [
|
3453 |
-
"latin-ext",
|
3454 |
-
"latin"
|
3455 |
-
],
|
3456 |
-
"version": "v5",
|
3457 |
-
"lastModified": "2016-02-23",
|
3458 |
-
"files": {
|
3459 |
-
"regular": "http://fonts.gstatic.com/s/diplomatasc/v5/JdVwAwfE1a_pahXjk5qpNi3USBnSvpkopQaUR-2r7iU.ttf"
|
3460 |
-
}
|
3461 |
-
},
|
3462 |
-
{
|
3463 |
-
"kind": "webfonts#webfont",
|
3464 |
-
"family": "Domine",
|
3465 |
-
"category": "serif",
|
3466 |
-
"variants": [
|
3467 |
-
"regular",
|
3468 |
-
"700"
|
3469 |
-
],
|
3470 |
-
"subsets": [
|
3471 |
-
"latin-ext",
|
3472 |
-
"latin"
|
3473 |
-
],
|
3474 |
-
"version": "v4",
|
3475 |
-
"lastModified": "2016-02-23",
|
3476 |
-
"files": {
|
3477 |
-
"regular": "http://fonts.gstatic.com/s/domine/v4/wfVIgamVFjMNQAEWurCiHA.ttf",
|
3478 |
-
"700": "http://fonts.gstatic.com/s/domine/v4/phBcG1ZbQFxUIt18hPVxnw.ttf"
|
3479 |
-
}
|
3480 |
-
},
|
3481 |
-
{
|
3482 |
-
"kind": "webfonts#webfont",
|
3483 |
-
"family": "Donegal One",
|
3484 |
-
"category": "serif",
|
3485 |
-
"variants": [
|
3486 |
-
"regular"
|
3487 |
-
],
|
3488 |
-
"subsets": [
|
3489 |
-
"latin-ext",
|
3490 |
-
"latin"
|
3491 |
-
],
|
3492 |
-
"version": "v4",
|
3493 |
-
"lastModified": "2016-02-23",
|
3494 |
-
"files": {
|
3495 |
-
"regular": "http://fonts.gstatic.com/s/donegalone/v4/6kN4-fDxz7T9s5U61HwfF6CWcynf_cDxXwCLxiixG1c.ttf"
|
3496 |
-
}
|
3497 |
-
},
|
3498 |
-
{
|
3499 |
-
"kind": "webfonts#webfont",
|
3500 |
-
"family": "Doppio One",
|
3501 |
-
"category": "sans-serif",
|
3502 |
-
"variants": [
|
3503 |
-
"regular"
|
3504 |
-
],
|
3505 |
-
"subsets": [
|
3506 |
-
"latin-ext",
|
3507 |
-
"latin"
|
3508 |
-
],
|
3509 |
-
"version": "v4",
|
3510 |
-
"lastModified": "2016-02-23",
|
3511 |
-
"files": {
|
3512 |
-
"regular": "http://fonts.gstatic.com/s/doppioone/v4/WHZ3HJQotpk_4aSMNBo_t_esZW2xOQ-xsNqO47m55DA.ttf"
|
3513 |
-
}
|
3514 |
-
},
|
3515 |
-
{
|
3516 |
-
"kind": "webfonts#webfont",
|
3517 |
-
"family": "Dorsa",
|
3518 |
-
"category": "sans-serif",
|
3519 |
-
"variants": [
|
3520 |
-
"regular"
|
3521 |
-
],
|
3522 |
-
"subsets": [
|
3523 |
-
"latin"
|
3524 |
-
],
|
3525 |
-
"version": "v7",
|
3526 |
-
"lastModified": "2016-02-23",
|
3527 |
-
"files": {
|
3528 |
-
"regular": "http://fonts.gstatic.com/s/dorsa/v7/wCc3cUe6XrmG2LQE6GlIrw.ttf"
|
3529 |
-
}
|
3530 |
-
},
|
3531 |
-
{
|
3532 |
-
"kind": "webfonts#webfont",
|
3533 |
-
"family": "Dosis",
|
3534 |
-
"category": "sans-serif",
|
3535 |
-
"variants": [
|
3536 |
-
"200",
|
3537 |
-
"300",
|
3538 |
-
"regular",
|
3539 |
-
"500",
|
3540 |
-
"600",
|
3541 |
-
"700",
|
3542 |
-
"800"
|
3543 |
-
],
|
3544 |
-
"subsets": [
|
3545 |
-
"latin-ext",
|
3546 |
-
"latin"
|
3547 |
-
],
|
3548 |
-
"version": "v4",
|
3549 |
-
"lastModified": "2016-02-23",
|
3550 |
-
"files": {
|
3551 |
-
"200": "http://fonts.gstatic.com/s/dosis/v4/ztftab0r6hcd7AeurUGrSQ.ttf",
|
3552 |
-
"300": "http://fonts.gstatic.com/s/dosis/v4/awIB6L0h5mb0plIKorXmuA.ttf",
|
3553 |
-
"regular": "http://fonts.gstatic.com/s/dosis/v4/rJRlixu-w0JZ1MyhJpao_Q.ttf",
|
3554 |
-
"500": "http://fonts.gstatic.com/s/dosis/v4/ruEXDOFMxDPGnjCBKRqdAQ.ttf",
|
3555 |
-
"600": "http://fonts.gstatic.com/s/dosis/v4/KNAswRNwm3tfONddYyidxg.ttf",
|
3556 |
-
"700": "http://fonts.gstatic.com/s/dosis/v4/AEEAj0ONidK8NQQMBBlSig.ttf",
|
3557 |
-
"800": "http://fonts.gstatic.com/s/dosis/v4/nlrKd8E69vvUU39XGsvR7Q.ttf"
|
3558 |
-
}
|
3559 |
-
},
|
3560 |
-
{
|
3561 |
-
"kind": "webfonts#webfont",
|
3562 |
-
"family": "Dr Sugiyama",
|
3563 |
-
"category": "handwriting",
|
3564 |
-
"variants": [
|
3565 |
-
"regular"
|
3566 |
-
],
|
3567 |
-
"subsets": [
|
3568 |
-
"latin-ext",
|
3569 |
-
"latin"
|
3570 |
-
],
|
3571 |
-
"version": "v5",
|
3572 |
-
"lastModified": "2016-02-23",
|
3573 |
-
"files": {
|
3574 |
-
"regular": "http://fonts.gstatic.com/s/drsugiyama/v5/S5Yx3MIckgoyHhhS4C9Tv6CWcynf_cDxXwCLxiixG1c.ttf"
|
3575 |
-
}
|
3576 |
-
},
|
3577 |
-
{
|
3578 |
-
"kind": "webfonts#webfont",
|
3579 |
-
"family": "Droid Sans",
|
3580 |
-
"category": "sans-serif",
|
3581 |
-
"variants": [
|
3582 |
-
"regular",
|
3583 |
-
"700"
|
3584 |
-
],
|
3585 |
-
"subsets": [
|
3586 |
-
"latin"
|
3587 |
-
],
|
3588 |
-
"version": "v6",
|
3589 |
-
"lastModified": "2016-02-23",
|
3590 |
-
"files": {
|
3591 |
-
"regular": "http://fonts.gstatic.com/s/droidsans/v6/rS9BT6-asrfjpkcV3DXf__esZW2xOQ-xsNqO47m55DA.ttf",
|
3592 |
-
"700": "http://fonts.gstatic.com/s/droidsans/v6/EFpQQyG9GqCrobXxL-KRMQJKKGfqHaYFsRG-T3ceEVo.ttf"
|
3593 |
-
}
|
3594 |
-
},
|
3595 |
-
{
|
3596 |
-
"kind": "webfonts#webfont",
|
3597 |
-
"family": "Droid Sans Mono",
|
3598 |
-
"category": "monospace",
|
3599 |
-
"variants": [
|
3600 |
-
"regular"
|
3601 |
-
],
|
3602 |
-
"subsets": [
|
3603 |
-
"latin"
|
3604 |
-
],
|
3605 |
-
"version": "v7",
|
3606 |
-
"lastModified": "2016-02-23",
|
3607 |
-
"files": {
|
3608 |
-
"regular": "http://fonts.gstatic.com/s/droidsansmono/v7/ns-m2xQYezAtqh7ai59hJcwD6PD0c3_abh9zHKQtbGU.ttf"
|
3609 |
-
}
|
3610 |
-
},
|
3611 |
-
{
|
3612 |
-
"kind": "webfonts#webfont",
|
3613 |
-
"family": "Droid Serif",
|
3614 |
-
"category": "serif",
|
3615 |
-
"variants": [
|
3616 |
-
"regular",
|
3617 |
-
"italic",
|
3618 |
-
"700",
|
3619 |
-
"700italic"
|
3620 |
-
],
|
3621 |
-
"subsets": [
|
3622 |
-
"latin"
|
3623 |
-
],
|
3624 |
-
"version": "v6",
|
3625 |
-
"lastModified": "2016-02-23",
|
3626 |
-
"files": {
|
3627 |
-
"regular": "http://fonts.gstatic.com/s/droidserif/v6/DgAtPy6rIVa2Zx3Xh9KaNaCWcynf_cDxXwCLxiixG1c.ttf",
|
3628 |
-
"italic": "http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5890eOrDcLawS7-ssYqLr2Xp4.ttf",
|
3629 |
-
"700": "http://fonts.gstatic.com/s/droidserif/v6/QQt14e8dY39u-eYBZmppwXe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
3630 |
-
"700italic": "http://fonts.gstatic.com/s/droidserif/v6/c92rD_x0V1LslSFt3-QEps_zJjSACmk0BRPxQqhnNLU.ttf"
|
3631 |
-
}
|
3632 |
-
},
|
3633 |
-
{
|
3634 |
-
"kind": "webfonts#webfont",
|
3635 |
-
"family": "Duru Sans",
|
3636 |
-
"category": "sans-serif",
|
3637 |
-
"variants": [
|
3638 |
-
"regular"
|
3639 |
-
],
|
3640 |
-
"subsets": [
|
3641 |
-
"latin-ext",
|
3642 |
-
"latin"
|
3643 |
-
],
|
3644 |
-
"version": "v9",
|
3645 |
-
"lastModified": "2016-02-23",
|
3646 |
-
"files": {
|
3647 |
-
"regular": "http://fonts.gstatic.com/s/durusans/v9/xn7iYH8xwmSyTvEV_HOxTw.ttf"
|
3648 |
-
}
|
3649 |
-
},
|
3650 |
-
{
|
3651 |
-
"kind": "webfonts#webfont",
|
3652 |
-
"family": "Dynalight",
|
3653 |
-
"category": "display",
|
3654 |
-
"variants": [
|
3655 |
-
"regular"
|
3656 |
-
],
|
3657 |
-
"subsets": [
|
3658 |
-
"latin-ext",
|
3659 |
-
"latin"
|
3660 |
-
],
|
3661 |
-
"version": "v5",
|
3662 |
-
"lastModified": "2016-02-23",
|
3663 |
-
"files": {
|
3664 |
-
"regular": "http://fonts.gstatic.com/s/dynalight/v5/-CWsIe8OUDWTIHjSAh41kA.ttf"
|
3665 |
-
}
|
3666 |
-
},
|
3667 |
-
{
|
3668 |
-
"kind": "webfonts#webfont",
|
3669 |
-
"family": "EB Garamond",
|
3670 |
-
"category": "serif",
|
3671 |
-
"variants": [
|
3672 |
-
"regular"
|
3673 |
-
],
|
3674 |
-
"subsets": [
|
3675 |
-
"latin-ext",
|
3676 |
-
"vietnamese",
|
3677 |
-
"cyrillic-ext",
|
3678 |
-
"cyrillic",
|
3679 |
-
"latin"
|
3680 |
-
],
|
3681 |
-
"version": "v7",
|
3682 |
-
"lastModified": "2016-02-23",
|
3683 |
-
"files": {
|
3684 |
-
"regular": "http://fonts.gstatic.com/s/ebgaramond/v7/CDR0kuiFK7I1OZ2hSdR7G6CWcynf_cDxXwCLxiixG1c.ttf"
|
3685 |
-
}
|
3686 |
-
},
|
3687 |
-
{
|
3688 |
-
"kind": "webfonts#webfont",
|
3689 |
-
"family": "Eagle Lake",
|
3690 |
-
"category": "handwriting",
|
3691 |
-
"variants": [
|
3692 |
-
"regular"
|
3693 |
-
],
|
3694 |
-
"subsets": [
|
3695 |
-
"latin-ext",
|
3696 |
-
"latin"
|
3697 |
-
],
|
3698 |
-
"version": "v4",
|
3699 |
-
"lastModified": "2016-02-23",
|
3700 |
-
"files": {
|
3701 |
-
"regular": "http://fonts.gstatic.com/s/eaglelake/v4/ZKlYin7caemhx9eSg6RvPfesZW2xOQ-xsNqO47m55DA.ttf"
|
3702 |
-
}
|
3703 |
-
},
|
3704 |
-
{
|
3705 |
-
"kind": "webfonts#webfont",
|
3706 |
-
"family": "Eater",
|
3707 |
-
"category": "display",
|
3708 |
-
"variants": [
|
3709 |
-
"regular"
|
3710 |
-
],
|
3711 |
-
"subsets": [
|
3712 |
-
"latin-ext",
|
3713 |
-
"latin"
|
3714 |
-
],
|
3715 |
-
"version": "v5",
|
3716 |
-
"lastModified": "2016-02-23",
|
3717 |
-
"files": {
|
3718 |
-
"regular": "http://fonts.gstatic.com/s/eater/v5/gm6f3OmYEdbs3lPQtUfBkA.ttf"
|
3719 |
-
}
|
3720 |
-
},
|
3721 |
-
{
|
3722 |
-
"kind": "webfonts#webfont",
|
3723 |
-
"family": "Economica",
|
3724 |
-
"category": "sans-serif",
|
3725 |
-
"variants": [
|
3726 |
-
"regular",
|
3727 |
-
"italic",
|
3728 |
-
"700",
|
3729 |
-
"700italic"
|
3730 |
-
],
|
3731 |
-
"subsets": [
|
3732 |
-
"latin-ext",
|
3733 |
-
"latin"
|
3734 |
-
],
|
3735 |
-
"version": "v4",
|
3736 |
-
"lastModified": "2016-02-23",
|
3737 |
-
"files": {
|
3738 |
-
"regular": "http://fonts.gstatic.com/s/economica/v4/G4rJRujzZbq9Nxngu9l3hg.ttf",
|
3739 |
-
"italic": "http://fonts.gstatic.com/s/economica/v4/p5O9AVeUqx_n35xQRinNYaCWcynf_cDxXwCLxiixG1c.ttf",
|
3740 |
-
"700": "http://fonts.gstatic.com/s/economica/v4/UK4l2VEpwjv3gdcwbwXE9C3USBnSvpkopQaUR-2r7iU.ttf",
|
3741 |
-
"700italic": "http://fonts.gstatic.com/s/economica/v4/ac5dlUsedQ03RqGOeay-3Xe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
3742 |
-
}
|
3743 |
-
},
|
3744 |
-
{
|
3745 |
-
"kind": "webfonts#webfont",
|
3746 |
-
"family": "Eczar",
|
3747 |
-
"category": "serif",
|
3748 |
-
"variants": [
|
3749 |
-
"regular",
|
3750 |
-
"500",
|
3751 |
-
"600",
|
3752 |
-
"700",
|
3753 |
-
"800"
|
3754 |
-
],
|
3755 |
-
"subsets": [
|
3756 |
-
"devanagari",
|
3757 |
-
"latin-ext",
|
3758 |
-
"latin"
|
3759 |
-
],
|
3760 |
-
"version": "v4",
|
3761 |
-
"lastModified": "2016-02-24",
|
3762 |
-
"files": {
|
3763 |
-
"regular": "http://fonts.gstatic.com/s/eczar/v4/uKZcAQ5JBBs1UbeXFRbBRg.ttf",
|
3764 |
-
"500": "http://fonts.gstatic.com/s/eczar/v4/Ooe4KaPp2594tF8TbMfdlQ.ttf",
|
3765 |
-
"600": "http://fonts.gstatic.com/s/eczar/v4/IjQsWW0bmgkZ6lnN72cnTQ.ttf",
|
3766 |
-
"700": "http://fonts.gstatic.com/s/eczar/v4/ELC8RVXfBMb3VuuHtMwBOA.ttf",
|
3767 |
-
"800": "http://fonts.gstatic.com/s/eczar/v4/9Uyt6nTZLx_Qj5_WRah-iQ.ttf"
|
3768 |
-
}
|
3769 |
-
},
|
3770 |
-
{
|
3771 |
-
"kind": "webfonts#webfont",
|
3772 |
-
"family": "Ek Mukta",
|
3773 |
-
"category": "sans-serif",
|
3774 |
-
"variants": [
|
3775 |
-
"200",
|
3776 |
-
"300",
|
3777 |
-
"regular",
|
3778 |
-
"500",
|
3779 |
-
"600",
|
3780 |
-
"700",
|
3781 |
-
"800"
|
3782 |
-
],
|
3783 |
-
"subsets": [
|
3784 |
-
"devanagari",
|
3785 |
-
"latin-ext",
|
3786 |
-
"latin"
|
3787 |
-
],
|
3788 |
-
"version": "v7",
|
3789 |
-
"lastModified": "2016-02-23",
|
3790 |
-
"files": {
|
3791 |
-
"200": "http://fonts.gstatic.com/s/ekmukta/v7/crtkNHh5JcM3VJKG0E-B36CWcynf_cDxXwCLxiixG1c.ttf",
|
3792 |
-
"300": "http://fonts.gstatic.com/s/ekmukta/v7/mpaAv7CIyk0VnZlqSneVxKCWcynf_cDxXwCLxiixG1c.ttf",
|
3793 |
-
"regular": "http://fonts.gstatic.com/s/ekmukta/v7/aFcjXdC5jyJ1p8w54wIIrg.ttf",
|
3794 |
-
"500": "http://fonts.gstatic.com/s/ekmukta/v7/PZ1y2MstFczWvBlFSgzMyaCWcynf_cDxXwCLxiixG1c.ttf",
|
3795 |
-
"600": "http://fonts.gstatic.com/s/ekmukta/v7/Z5Mfzeu6M3emakcJO2QeTqCWcynf_cDxXwCLxiixG1c.ttf",
|
3796 |
-
"700": "http://fonts.gstatic.com/s/ekmukta/v7/4ugcOGR28Jn-oBIn0-qLYaCWcynf_cDxXwCLxiixG1c.ttf",
|
3797 |
-
"800": "http://fonts.gstatic.com/s/ekmukta/v7/O68TH5OjEhVmn9_gIrcfS6CWcynf_cDxXwCLxiixG1c.ttf"
|
3798 |
-
}
|
3799 |
-
},
|
3800 |
-
{
|
3801 |
-
"kind": "webfonts#webfont",
|
3802 |
-
"family": "Electrolize",
|
3803 |
-
"category": "sans-serif",
|
3804 |
-
"variants": [
|
3805 |
-
"regular"
|
3806 |
-
],
|
3807 |
-
"subsets": [
|
3808 |
-
"latin"
|
3809 |
-
],
|
3810 |
-
"version": "v5",
|
3811 |
-
"lastModified": "2016-02-23",
|
3812 |
-
"files": {
|
3813 |
-
"regular": "http://fonts.gstatic.com/s/electrolize/v5/yFVu5iokC-nt4B1Cyfxb9aCWcynf_cDxXwCLxiixG1c.ttf"
|
3814 |
-
}
|
3815 |
-
},
|
3816 |
-
{
|
3817 |
-
"kind": "webfonts#webfont",
|
3818 |
-
"family": "Elsie",
|
3819 |
-
"category": "display",
|
3820 |
-
"variants": [
|
3821 |
-
"regular",
|
3822 |
-
"900"
|
3823 |
-
],
|
3824 |
-
"subsets": [
|
3825 |
-
"latin-ext",
|
3826 |
-
"latin"
|
3827 |
-
],
|
3828 |
-
"version": "v5",
|
3829 |
-
"lastModified": "2016-02-23",
|
3830 |
-
"files": {
|
3831 |
-
"regular": "http://fonts.gstatic.com/s/elsie/v5/gwspePauE45BJu6Ok1QrfQ.ttf",
|
3832 |
-
"900": "http://fonts.gstatic.com/s/elsie/v5/1t-9f0N2NFYwAgN7oaISqg.ttf"
|
3833 |
-
}
|
3834 |
-
},
|
3835 |
-
{
|
3836 |
-
"kind": "webfonts#webfont",
|
3837 |
-
"family": "Elsie Swash Caps",
|
3838 |
-
"category": "display",
|
3839 |
-
"variants": [
|
3840 |
-
"regular",
|
3841 |
-
"900"
|
3842 |
-
],
|
3843 |
-
"subsets": [
|
3844 |
-
"latin-ext",
|
3845 |
-
"latin"
|
3846 |
-
],
|
3847 |
-
"version": "v4",
|
3848 |
-
"lastModified": "2016-02-23",
|
3849 |
-
"files": {
|
3850 |
-
"regular": "http://fonts.gstatic.com/s/elsieswashcaps/v4/9L3hIJMPCf6sxCltnxd6X2YeFSdnSpRYv5h9gpdlD1g.ttf",
|
3851 |
-
"900": "http://fonts.gstatic.com/s/elsieswashcaps/v4/iZnus9qif0tR5pGaDv5zdKoKBWBozTtxi30NfZDOXXU.ttf"
|
3852 |
-
}
|
3853 |
-
},
|
3854 |
-
{
|
3855 |
-
"kind": "webfonts#webfont",
|
3856 |
-
"family": "Emblema One",
|
3857 |
-
"category": "display",
|
3858 |
-
"variants": [
|
3859 |
-
"regular"
|
3860 |
-
],
|
3861 |
-
"subsets": [
|
3862 |
-
"latin-ext",
|
3863 |
-
"latin"
|
3864 |
-
],
|
3865 |
-
"version": "v5",
|
3866 |
-
"lastModified": "2016-02-23",
|
3867 |
-
"files": {
|
3868 |
-
"regular": "http://fonts.gstatic.com/s/emblemaone/v5/7IlBUjBWPIiw7cr_O2IfSaCWcynf_cDxXwCLxiixG1c.ttf"
|
3869 |
-
}
|
3870 |
-
},
|
3871 |
-
{
|
3872 |
-
"kind": "webfonts#webfont",
|
3873 |
-
"family": "Emilys Candy",
|
3874 |
-
"category": "display",
|
3875 |
-
"variants": [
|
3876 |
-
"regular"
|
3877 |
-
],
|
3878 |
-
"subsets": [
|
3879 |
-
"latin-ext",
|
3880 |
-
"latin"
|
3881 |
-
],
|
3882 |
-
"version": "v4",
|
3883 |
-
"lastModified": "2016-02-23",
|
3884 |
-
"files": {
|
3885 |
-
"regular": "http://fonts.gstatic.com/s/emilyscandy/v4/PofLVm6v1SwZGOzC8s-I3S3USBnSvpkopQaUR-2r7iU.ttf"
|
3886 |
-
}
|
3887 |
-
},
|
3888 |
-
{
|
3889 |
-
"kind": "webfonts#webfont",
|
3890 |
-
"family": "Engagement",
|
3891 |
-
"category": "handwriting",
|
3892 |
-
"variants": [
|
3893 |
-
"regular"
|
3894 |
-
],
|
3895 |
-
"subsets": [
|
3896 |
-
"latin"
|
3897 |
-
],
|
3898 |
-
"version": "v5",
|
3899 |
-
"lastModified": "2016-02-23",
|
3900 |
-
"files": {
|
3901 |
-
"regular": "http://fonts.gstatic.com/s/engagement/v5/4Uz0Jii7oVPcaFRYmbpU6vesZW2xOQ-xsNqO47m55DA.ttf"
|
3902 |
-
}
|
3903 |
-
},
|
3904 |
-
{
|
3905 |
-
"kind": "webfonts#webfont",
|
3906 |
-
"family": "Englebert",
|
3907 |
-
"category": "sans-serif",
|
3908 |
-
"variants": [
|
3909 |
-
"regular"
|
3910 |
-
],
|
3911 |
-
"subsets": [
|
3912 |
-
"latin-ext",
|
3913 |
-
"latin"
|
3914 |
-
],
|
3915 |
-
"version": "v4",
|
3916 |
-
"lastModified": "2016-02-23",
|
3917 |
-
"files": {
|
3918 |
-
"regular": "http://fonts.gstatic.com/s/englebert/v4/sll38iOvOuarDTYBchlP3Q.ttf"
|
3919 |
-
}
|
3920 |
-
},
|
3921 |
-
{
|
3922 |
-
"kind": "webfonts#webfont",
|
3923 |
-
"family": "Enriqueta",
|
3924 |
-
"category": "serif",
|
3925 |
-
"variants": [
|
3926 |
-
"regular",
|
3927 |
-
"700"
|
3928 |
-
],
|
3929 |
-
"subsets": [
|
3930 |
-
"latin-ext",
|
3931 |
-
"latin"
|
3932 |
-
],
|
3933 |
-
"version": "v5",
|
3934 |
-
"lastModified": "2016-02-23",
|
3935 |
-
"files": {
|
3936 |
-
"regular": "http://fonts.gstatic.com/s/enriqueta/v5/_p90TrIwR1SC-vDKtmrv6A.ttf",
|
3937 |
-
"700": "http://fonts.gstatic.com/s/enriqueta/v5/I27Pb-wEGH2ajLYP0QrtSC3USBnSvpkopQaUR-2r7iU.ttf"
|
3938 |
-
}
|
3939 |
-
},
|
3940 |
-
{
|
3941 |
-
"kind": "webfonts#webfont",
|
3942 |
-
"family": "Erica One",
|
3943 |
-
"category": "display",
|
3944 |
-
"variants": [
|
3945 |
-
"regular"
|
3946 |
-
],
|
3947 |
-
"subsets": [
|
3948 |
-
"latin-ext",
|
3949 |
-
"latin"
|
3950 |
-
],
|
3951 |
-
"version": "v7",
|
3952 |
-
"lastModified": "2016-02-24",
|
3953 |
-
"files": {
|
3954 |
-
"regular": "http://fonts.gstatic.com/s/ericaone/v7/cIBnH2VAqQMIGYAcE4ufvQ.ttf"
|
3955 |
-
}
|
3956 |
-
},
|
3957 |
-
{
|
3958 |
-
"kind": "webfonts#webfont",
|
3959 |
-
"family": "Esteban",
|
3960 |
-
"category": "serif",
|
3961 |
-
"variants": [
|
3962 |
-
"regular"
|
3963 |
-
],
|
3964 |
-
"subsets": [
|
3965 |
-
"latin-ext",
|
3966 |
-
"latin"
|
3967 |
-
],
|
3968 |
-
"version": "v4",
|
3969 |
-
"lastModified": "2016-02-23",
|
3970 |
-
"files": {
|
3971 |
-
"regular": "http://fonts.gstatic.com/s/esteban/v4/ESyhLgqDDyK5JcFPp2svDw.ttf"
|
3972 |
-
}
|
3973 |
-
},
|
3974 |
-
{
|
3975 |
-
"kind": "webfonts#webfont",
|
3976 |
-
"family": "Euphoria Script",
|
3977 |
-
"category": "handwriting",
|
3978 |
-
"variants": [
|
3979 |
-
"regular"
|
3980 |
-
],
|
3981 |
-
"subsets": [
|
3982 |
-
"latin-ext",
|
3983 |
-
"latin"
|
3984 |
-
],
|
3985 |
-
"version": "v4",
|
3986 |
-
"lastModified": "2016-02-23",
|
3987 |
-
"files": {
|
3988 |
-
"regular": "http://fonts.gstatic.com/s/euphoriascript/v4/c4XB4Iijj_NvSsCF4I0O2MxLhO8OSNnfAp53LK1_iRs.ttf"
|
3989 |
-
}
|
3990 |
-
},
|
3991 |
-
{
|
3992 |
-
"kind": "webfonts#webfont",
|
3993 |
-
"family": "Ewert",
|
3994 |
-
"category": "display",
|
3995 |
-
"variants": [
|
3996 |
-
"regular"
|
3997 |
-
],
|
3998 |
-
"subsets": [
|
3999 |
-
"latin-ext",
|
4000 |
-
"latin"
|
4001 |
-
],
|
4002 |
-
"version": "v4",
|
4003 |
-
"lastModified": "2016-02-23",
|
4004 |
-
"files": {
|
4005 |
-
"regular": "http://fonts.gstatic.com/s/ewert/v4/Em8hrzuzSbfHcTVqMjbAQg.ttf"
|
4006 |
-
}
|
4007 |
-
},
|
4008 |
-
{
|
4009 |
-
"kind": "webfonts#webfont",
|
4010 |
-
"family": "Exo",
|
4011 |
-
"category": "sans-serif",
|
4012 |
-
"variants": [
|
4013 |
-
"100",
|
4014 |
-
"100italic",
|
4015 |
-
"200",
|
4016 |
-
"200italic",
|
4017 |
-
"300",
|
4018 |
-
"300italic",
|
4019 |
-
"regular",
|
4020 |
-
"italic",
|
4021 |
-
"500",
|
4022 |
-
"500italic",
|
4023 |
-
"600",
|
4024 |
-
"600italic",
|
4025 |
-
"700",
|
4026 |
-
"700italic",
|
4027 |
-
"800",
|
4028 |
-
"800italic",
|
4029 |
-
"900",
|
4030 |
-
"900italic"
|
4031 |
-
],
|
4032 |
-
"subsets": [
|
4033 |
-
"latin-ext",
|
4034 |
-
"latin"
|
4035 |
-
],
|
4036 |
-
"version": "v4",
|
4037 |
-
"lastModified": "2016-02-23",
|
4038 |
-
"files": {
|
4039 |
-
"100": "http://fonts.gstatic.com/s/exo/v4/RI7A9uwjRmPbVp0n8e-Jvg.ttf",
|
4040 |
-
"100italic": "http://fonts.gstatic.com/s/exo/v4/qtGyZZlWb2EEvby3ZPosxw.ttf",
|
4041 |
-
"200": "http://fonts.gstatic.com/s/exo/v4/F8OfC_swrRRxpFt-tlXZQg.ttf",
|
4042 |
-
"200italic": "http://fonts.gstatic.com/s/exo/v4/fr4HBfXHYiIngW2_bhlgRw.ttf",
|
4043 |
-
"300": "http://fonts.gstatic.com/s/exo/v4/SBrN7TKUqgGUvfxqHqsnNw.ttf",
|
4044 |
-
"300italic": "http://fonts.gstatic.com/s/exo/v4/3gmiLjBegIfcDLISjTGA1g.ttf",
|
4045 |
-
"regular": "http://fonts.gstatic.com/s/exo/v4/eUEzTFueNXRVhbt4PEB8kQ.ttf",
|
4046 |
-
"italic": "http://fonts.gstatic.com/s/exo/v4/cfgolWisMSURhpQeVHl_NA.ttf",
|
4047 |
-
"500": "http://fonts.gstatic.com/s/exo/v4/jCg6DmGGXt_OVyp5ofQHPw.ttf",
|
4048 |
-
"500italic": "http://fonts.gstatic.com/s/exo/v4/lo5eTdCNJZQVN08p8RnzAQ.ttf",
|
4049 |
-
"600": "http://fonts.gstatic.com/s/exo/v4/q_SG5kXUmOcIvFpgtdZnlw.ttf",
|
4050 |
-
"600italic": "http://fonts.gstatic.com/s/exo/v4/0cExa8K_pxS2lTuMr68XUA.ttf",
|
4051 |
-
"700": "http://fonts.gstatic.com/s/exo/v4/3_jwsL4v9uHjl5Q37G57mw.ttf",
|
4052 |
-
"700italic": "http://fonts.gstatic.com/s/exo/v4/0me55yJIxd5vyQ9bF7SsiA.ttf",
|
4053 |
-
"800": "http://fonts.gstatic.com/s/exo/v4/yLPuxBuV0lzqibRJyooOJg.ttf",
|
4054 |
-
"800italic": "http://fonts.gstatic.com/s/exo/v4/n3LejeKVj_8gtZq5fIgNYw.ttf",
|
4055 |
-
"900": "http://fonts.gstatic.com/s/exo/v4/97d0nd6Yv4-SA_X92xAuZA.ttf",
|
4056 |
-
"900italic": "http://fonts.gstatic.com/s/exo/v4/JHTkQVhzyLtkY13Ye95TJQ.ttf"
|
4057 |
-
}
|
4058 |
-
},
|
4059 |
-
{
|
4060 |
-
"kind": "webfonts#webfont",
|
4061 |
-
"family": "Exo 2",
|
4062 |
-
"category": "sans-serif",
|
4063 |
-
"variants": [
|
4064 |
-
"100",
|
4065 |
-
"100italic",
|
4066 |
-
"200",
|
4067 |
-
"200italic",
|
4068 |
-
"300",
|
4069 |
-
"300italic",
|
4070 |
-
"regular",
|
4071 |
-
"italic",
|
4072 |
-
"500",
|
4073 |
-
"500italic",
|
4074 |
-
"600",
|
4075 |
-
"600italic",
|
4076 |
-
"700",
|
4077 |
-
"700italic",
|
4078 |
-
"800",
|
4079 |
-
"800italic",
|
4080 |
-
"900",
|
4081 |
-
"900italic"
|
4082 |
-
],
|
4083 |
-
"subsets": [
|
4084 |
-
"latin-ext",
|
4085 |
-
"cyrillic",
|
4086 |
-
"latin"
|
4087 |
-
],
|
4088 |
-
"version": "v3",
|
4089 |
-
"lastModified": "2016-02-23",
|
4090 |
-
"files": {
|
4091 |
-
"100": "http://fonts.gstatic.com/s/exo2/v3/oVOtQy53isv97g4UhBUDqg.ttf",
|
4092 |
-
"100italic": "http://fonts.gstatic.com/s/exo2/v3/LNYVgsJcaCxoKFHmd4AZcg.ttf",
|
4093 |
-
"200": "http://fonts.gstatic.com/s/exo2/v3/qa-Ci2pBwJdCxciE1ErifQ.ttf",
|
4094 |
-
"200italic": "http://fonts.gstatic.com/s/exo2/v3/DCrVxDVvS69n50O-5erZVvesZW2xOQ-xsNqO47m55DA.ttf",
|
4095 |
-
"300": "http://fonts.gstatic.com/s/exo2/v3/nLUBdz_lHHoVIPor05Byhw.ttf",
|
4096 |
-
"300italic": "http://fonts.gstatic.com/s/exo2/v3/iSy9VTeUTiqiurQg2ywtu_esZW2xOQ-xsNqO47m55DA.ttf",
|
4097 |
-
"regular": "http://fonts.gstatic.com/s/exo2/v3/Pf_kZuIH5c5WKVkQUaeSWQ.ttf",
|
4098 |
-
"italic": "http://fonts.gstatic.com/s/exo2/v3/xxA5ZscX9sTU6U0lZJUlYA.ttf",
|
4099 |
-
"500": "http://fonts.gstatic.com/s/exo2/v3/oM0rzUuPqVJpW-VEIpuW5w.ttf",
|
4100 |
-
"500italic": "http://fonts.gstatic.com/s/exo2/v3/amzRVCB-gipwdihZZ2LtT_esZW2xOQ-xsNqO47m55DA.ttf",
|
4101 |
-
"600": "http://fonts.gstatic.com/s/exo2/v3/YnSn3HsyvyI1feGSdRMYqA.ttf",
|
4102 |
-
"600italic": "http://fonts.gstatic.com/s/exo2/v3/Vmo58BiptGwfVFb0teU5gPesZW2xOQ-xsNqO47m55DA.ttf",
|
4103 |
-
"700": "http://fonts.gstatic.com/s/exo2/v3/2DiK4XkdTckfTk6we73-bQ.ttf",
|
4104 |
-
"700italic": "http://fonts.gstatic.com/s/exo2/v3/Sdo-zW-4_--pDkTg6bYrY_esZW2xOQ-xsNqO47m55DA.ttf",
|
4105 |
-
"800": "http://fonts.gstatic.com/s/exo2/v3/IVYl_7dJruOg8zKRpC8Hrw.ttf",
|
4106 |
-
"800italic": "http://fonts.gstatic.com/s/exo2/v3/p0TA6KeOz1o4rySEbvUxI_esZW2xOQ-xsNqO47m55DA.ttf",
|
4107 |
-
"900": "http://fonts.gstatic.com/s/exo2/v3/e8csG8Wnu87AF6uCndkFRQ.ttf",
|
4108 |
-
"900italic": "http://fonts.gstatic.com/s/exo2/v3/KPhsGCoT2-7Uj6pMlRscH_esZW2xOQ-xsNqO47m55DA.ttf"
|
4109 |
-
}
|
4110 |
-
},
|
4111 |
-
{
|
4112 |
-
"kind": "webfonts#webfont",
|
4113 |
-
"family": "Expletus Sans",
|
4114 |
-
"category": "display",
|
4115 |
-
"variants": [
|
4116 |
-
"regular",
|
4117 |
-
"italic",
|
4118 |
-
"500",
|
4119 |
-
"500italic",
|
4120 |
-
"600",
|
4121 |
-
"600italic",
|
4122 |
-
"700",
|
4123 |
-
"700italic"
|
4124 |
-
],
|
4125 |
-
"subsets": [
|
4126 |
-
"latin"
|
4127 |
-
],
|
4128 |
-
"version": "v9",
|
4129 |
-
"lastModified": "2016-02-23",
|
4130 |
-
"files": {
|
4131 |
-
"regular": "http://fonts.gstatic.com/s/expletussans/v9/gegTSDBDs5le3g6uxU1ZsX8f0n03UdmQgF_CLvNR2vg.ttf",
|
4132 |
-
"italic": "http://fonts.gstatic.com/s/expletussans/v9/Y-erXmY0b6DU_i2Qu0hTJj4G9C9ttb0Oz5Cvf0qOitE.ttf",
|
4133 |
-
"500": "http://fonts.gstatic.com/s/expletussans/v9/cl6rhMY77Ilk8lB_uYRRwAqQmZ7VjhwksfpNVG0pqGc.ttf",
|
4134 |
-
"500italic": "http://fonts.gstatic.com/s/expletussans/v9/sRBNtc46w65uJE451UYmW87DCVO6wo6i5LKIyZDzK40.ttf",
|
4135 |
-
"600": "http://fonts.gstatic.com/s/expletussans/v9/cl6rhMY77Ilk8lB_uYRRwCvj1tU7IJMS3CS9kCx2B3U.ttf",
|
4136 |
-
"600italic": "http://fonts.gstatic.com/s/expletussans/v9/sRBNtc46w65uJE451UYmW8yKH23ZS6zCKOFHG0e_4JE.ttf",
|
4137 |
-
"700": "http://fonts.gstatic.com/s/expletussans/v9/cl6rhMY77Ilk8lB_uYRRwFCbmAUID8LN-q3pJpOk3Ys.ttf",
|
4138 |
-
"700italic": "http://fonts.gstatic.com/s/expletussans/v9/sRBNtc46w65uJE451UYmW5F66r9C4AnxxlBlGd7xY4g.ttf"
|
4139 |
-
}
|
4140 |
-
},
|
4141 |
-
{
|
4142 |
-
"kind": "webfonts#webfont",
|
4143 |
-
"family": "Fanwood Text",
|
4144 |
-
"category": "serif",
|
4145 |
-
"variants": [
|
4146 |
-
"regular",
|
4147 |
-
"italic"
|
4148 |
-
],
|
4149 |
-
"subsets": [
|
4150 |
-
"latin"
|
4151 |
-
],
|
4152 |
-
"version": "v6",
|
4153 |
-
"lastModified": "2016-02-23",
|
4154 |
-
"files": {
|
4155 |
-
"regular": "http://fonts.gstatic.com/s/fanwoodtext/v6/hDNDHUlsSb8bgnEmDp4T_i3USBnSvpkopQaUR-2r7iU.ttf",
|
4156 |
-
"italic": "http://fonts.gstatic.com/s/fanwoodtext/v6/0J3SBbkMZqBV-3iGxs5E9_MZXuCXbOrAvx5R0IT5Oyo.ttf"
|
4157 |
-
}
|
4158 |
-
},
|
4159 |
-
{
|
4160 |
-
"kind": "webfonts#webfont",
|
4161 |
-
"family": "Fascinate",
|
4162 |
-
"category": "display",
|
4163 |
-
"variants": [
|
4164 |
-
"regular"
|
4165 |
-
],
|
4166 |
-
"subsets": [
|
4167 |
-
"latin"
|
4168 |
-
],
|
4169 |
-
"version": "v5",
|
4170 |
-
"lastModified": "2016-02-23",
|
4171 |
-
"files": {
|
4172 |
-
"regular": "http://fonts.gstatic.com/s/fascinate/v5/ZE0637WWkBPKt1AmFaqD3Q.ttf"
|
4173 |
-
}
|
4174 |
-
},
|
4175 |
-
{
|
4176 |
-
"kind": "webfonts#webfont",
|
4177 |
-
"family": "Fascinate Inline",
|
4178 |
-
"category": "display",
|
4179 |
-
"variants": [
|
4180 |
-
"regular"
|
4181 |
-
],
|
4182 |
-
"subsets": [
|
4183 |
-
"latin"
|
4184 |
-
],
|
4185 |
-
"version": "v6",
|
4186 |
-
"lastModified": "2016-02-23",
|
4187 |
-
"files": {
|
4188 |
-
"regular": "http://fonts.gstatic.com/s/fascinateinline/v6/lRguYfMfWArflkm5aOQ5QJmp8DTZ6iHear7UV05iykg.ttf"
|
4189 |
-
}
|
4190 |
-
},
|
4191 |
-
{
|
4192 |
-
"kind": "webfonts#webfont",
|
4193 |
-
"family": "Faster One",
|
4194 |
-
"category": "display",
|
4195 |
-
"variants": [
|
4196 |
-
"regular"
|
4197 |
-
],
|
4198 |
-
"subsets": [
|
4199 |
-
"latin"
|
4200 |
-
],
|
4201 |
-
"version": "v6",
|
4202 |
-
"lastModified": "2016-02-23",
|
4203 |
-
"files": {
|
4204 |
-
"regular": "http://fonts.gstatic.com/s/fasterone/v6/YxTOW2sf56uxD1T7byP5K_esZW2xOQ-xsNqO47m55DA.ttf"
|
4205 |
-
}
|
4206 |
-
},
|
4207 |
-
{
|
4208 |
-
"kind": "webfonts#webfont",
|
4209 |
-
"family": "Fasthand",
|
4210 |
-
"category": "serif",
|
4211 |
-
"variants": [
|
4212 |
-
"regular"
|
4213 |
-
],
|
4214 |
-
"subsets": [
|
4215 |
-
"khmer"
|
4216 |
-
],
|
4217 |
-
"version": "v7",
|
4218 |
-
"lastModified": "2015-04-03",
|
4219 |
-
"files": {
|
4220 |
-
"regular": "http://fonts.gstatic.com/s/fasthand/v7/6XAagHH_KmpZL67wTvsETQ.ttf"
|
4221 |
-
}
|
4222 |
-
},
|
4223 |
-
{
|
4224 |
-
"kind": "webfonts#webfont",
|
4225 |
-
"family": "Fauna One",
|
4226 |
-
"category": "serif",
|
4227 |
-
"variants": [
|
4228 |
-
"regular"
|
4229 |
-
],
|
4230 |
-
"subsets": [
|
4231 |
-
"latin-ext",
|
4232 |
-
"latin"
|
4233 |
-
],
|
4234 |
-
"version": "v4",
|
4235 |
-
"lastModified": "2016-02-23",
|
4236 |
-
"files": {
|
4237 |
-
"regular": "http://fonts.gstatic.com/s/faunaone/v4/8kL-wpAPofcAMELI_5NRnQ.ttf"
|
4238 |
-
}
|
4239 |
-
},
|
4240 |
-
{
|
4241 |
-
"kind": "webfonts#webfont",
|
4242 |
-
"family": "Federant",
|
4243 |
-
"category": "display",
|
4244 |
-
"variants": [
|
4245 |
-
"regular"
|
4246 |
-
],
|
4247 |
-
"subsets": [
|
4248 |
-
"latin"
|
4249 |
-
],
|
4250 |
-
"version": "v8",
|
4251 |
-
"lastModified": "2016-02-24",
|
4252 |
-
"files": {
|
4253 |
-
"regular": "http://fonts.gstatic.com/s/federant/v8/tddZFSiGvxICNOGra0i5aA.ttf"
|
4254 |
-
}
|
4255 |
-
},
|
4256 |
-
{
|
4257 |
-
"kind": "webfonts#webfont",
|
4258 |
-
"family": "Federo",
|
4259 |
-
"category": "sans-serif",
|
4260 |
-
"variants": [
|
4261 |
-
"regular"
|
4262 |
-
],
|
4263 |
-
"subsets": [
|
4264 |
-
"latin"
|
4265 |
-
],
|
4266 |
-
"version": "v8",
|
4267 |
-
"lastModified": "2016-02-23",
|
4268 |
-
"files": {
|
4269 |
-
"regular": "http://fonts.gstatic.com/s/federo/v8/JPhe1S2tujeyaR79gXBLeQ.ttf"
|
4270 |
-
}
|
4271 |
-
},
|
4272 |
-
{
|
4273 |
-
"kind": "webfonts#webfont",
|
4274 |
-
"family": "Felipa",
|
4275 |
-
"category": "handwriting",
|
4276 |
-
"variants": [
|
4277 |
-
"regular"
|
4278 |
-
],
|
4279 |
-
"subsets": [
|
4280 |
-
"latin-ext",
|
4281 |
-
"latin"
|
4282 |
-
],
|
4283 |
-
"version": "v4",
|
4284 |
-
"lastModified": "2016-02-23",
|
4285 |
-
"files": {
|
4286 |
-
"regular": "http://fonts.gstatic.com/s/felipa/v4/SeyfyFZY7abAQXGrOIYnYg.ttf"
|
4287 |
-
}
|
4288 |
-
},
|
4289 |
-
{
|
4290 |
-
"kind": "webfonts#webfont",
|
4291 |
-
"family": "Fenix",
|
4292 |
-
"category": "serif",
|
4293 |
-
"variants": [
|
4294 |
-
"regular"
|
4295 |
-
],
|
4296 |
-
"subsets": [
|
4297 |
-
"latin-ext",
|
4298 |
-
"latin"
|
4299 |
-
],
|
4300 |
-
"version": "v4",
|
4301 |
-
"lastModified": "2016-02-23",
|
4302 |
-
"files": {
|
4303 |
-
"regular": "http://fonts.gstatic.com/s/fenix/v4/Ak8wR3VSlAN7VN_eMeJj7Q.ttf"
|
4304 |
-
}
|
4305 |
-
},
|
4306 |
-
{
|
4307 |
-
"kind": "webfonts#webfont",
|
4308 |
-
"family": "Finger Paint",
|
4309 |
-
"category": "display",
|
4310 |
-
"variants": [
|
4311 |
-
"regular"
|
4312 |
-
],
|
4313 |
-
"subsets": [
|
4314 |
-
"latin"
|
4315 |
-
],
|
4316 |
-
"version": "v4",
|
4317 |
-
"lastModified": "2016-02-23",
|
4318 |
-
"files": {
|
4319 |
-
"regular": "http://fonts.gstatic.com/s/fingerpaint/v4/m_ZRbiY-aPb13R3DWPBGXy3USBnSvpkopQaUR-2r7iU.ttf"
|
4320 |
-
}
|
4321 |
-
},
|
4322 |
-
{
|
4323 |
-
"kind": "webfonts#webfont",
|
4324 |
-
"family": "Fira Mono",
|
4325 |
-
"category": "monospace",
|
4326 |
-
"variants": [
|
4327 |
-
"regular",
|
4328 |
-
"700"
|
4329 |
-
],
|
4330 |
-
"subsets": [
|
4331 |
-
"latin-ext",
|
4332 |
-
"cyrillic-ext",
|
4333 |
-
"cyrillic",
|
4334 |
-
"greek",
|
4335 |
-
"latin"
|
4336 |
-
],
|
4337 |
-
"version": "v3",
|
4338 |
-
"lastModified": "2015-04-06",
|
4339 |
-
"files": {
|
4340 |
-
"regular": "http://fonts.gstatic.com/s/firamono/v3/WQOm1D4RO-yvA9q9trJc8g.ttf",
|
4341 |
-
"700": "http://fonts.gstatic.com/s/firamono/v3/l24Wph3FsyKAbJ8dfExTZy3USBnSvpkopQaUR-2r7iU.ttf"
|
4342 |
-
}
|
4343 |
-
},
|
4344 |
-
{
|
4345 |
-
"kind": "webfonts#webfont",
|
4346 |
-
"family": "Fira Sans",
|
4347 |
-
"category": "sans-serif",
|
4348 |
-
"variants": [
|
4349 |
-
"300",
|
4350 |
-
"300italic",
|
4351 |
-
"regular",
|
4352 |
-
"italic",
|
4353 |
-
"500",
|
4354 |
-
"500italic",
|
4355 |
-
"700",
|
4356 |
-
"700italic"
|
4357 |
-
],
|
4358 |
-
"subsets": [
|
4359 |
-
"latin-ext",
|
4360 |
-
"cyrillic-ext",
|
4361 |
-
"cyrillic",
|
4362 |
-
"greek",
|
4363 |
-
"latin"
|
4364 |
-
],
|
4365 |
-
"version": "v5",
|
4366 |
-
"lastModified": "2016-02-23",
|
4367 |
-
"files": {
|
4368 |
-
"300": "http://fonts.gstatic.com/s/firasans/v5/VTBnrK42EiOBncVyQXZ7jy3USBnSvpkopQaUR-2r7iU.ttf",
|
4369 |
-
"300italic": "http://fonts.gstatic.com/s/firasans/v5/6s0YCA9oCTF6hM60YM-qTS9-WlPSxbfiI49GsXo3q0g.ttf",
|
4370 |
-
"regular": "http://fonts.gstatic.com/s/firasans/v5/nsT0isDy56OkSX99sFQbXw.ttf",
|
4371 |
-
"italic": "http://fonts.gstatic.com/s/firasans/v5/cPT_2ddmoxsUuMtQqa8zGqCWcynf_cDxXwCLxiixG1c.ttf",
|
4372 |
-
"500": "http://fonts.gstatic.com/s/firasans/v5/zM2u8V3CuPVwAAXFQcDi4C3USBnSvpkopQaUR-2r7iU.ttf",
|
4373 |
-
"500italic": "http://fonts.gstatic.com/s/firasans/v5/6s0YCA9oCTF6hM60YM-qTcCNfqCYlB_eIx7H1TVXe60.ttf",
|
4374 |
-
"700": "http://fonts.gstatic.com/s/firasans/v5/DugPdSljmOTocZOR2CItOi3USBnSvpkopQaUR-2r7iU.ttf",
|
4375 |
-
"700italic": "http://fonts.gstatic.com/s/firasans/v5/6s0YCA9oCTF6hM60YM-qTXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
4376 |
-
}
|
4377 |
-
},
|
4378 |
-
{
|
4379 |
-
"kind": "webfonts#webfont",
|
4380 |
-
"family": "Fjalla One",
|
4381 |
-
"category": "sans-serif",
|
4382 |
-
"variants": [
|
4383 |
-
"regular"
|
4384 |
-
],
|
4385 |
-
"subsets": [
|
4386 |
-
"latin-ext",
|
4387 |
-
"latin"
|
4388 |
-
],
|
4389 |
-
"version": "v4",
|
4390 |
-
"lastModified": "2016-02-23",
|
4391 |
-
"files": {
|
4392 |
-
"regular": "http://fonts.gstatic.com/s/fjallaone/v4/3b7vWCfOZsU53vMa8LWsf_esZW2xOQ-xsNqO47m55DA.ttf"
|
4393 |
-
}
|
4394 |
-
},
|
4395 |
-
{
|
4396 |
-
"kind": "webfonts#webfont",
|
4397 |
-
"family": "Fjord One",
|
4398 |
-
"category": "serif",
|
4399 |
-
"variants": [
|
4400 |
-
"regular"
|
4401 |
-
],
|
4402 |
-
"subsets": [
|
4403 |
-
"latin"
|
4404 |
-
],
|
4405 |
-
"version": "v5",
|
4406 |
-
"lastModified": "2016-02-23",
|
4407 |
-
"files": {
|
4408 |
-
"regular": "http://fonts.gstatic.com/s/fjordone/v5/R_YHK8au2uFPw5tNu5N7zw.ttf"
|
4409 |
-
}
|
4410 |
-
},
|
4411 |
-
{
|
4412 |
-
"kind": "webfonts#webfont",
|
4413 |
-
"family": "Flamenco",
|
4414 |
-
"category": "display",
|
4415 |
-
"variants": [
|
4416 |
-
"300",
|
4417 |
-
"regular"
|
4418 |
-
],
|
4419 |
-
"subsets": [
|
4420 |
-
"latin"
|
4421 |
-
],
|
4422 |
-
"version": "v6",
|
4423 |
-
"lastModified": "2016-02-23",
|
4424 |
-
"files": {
|
4425 |
-
"300": "http://fonts.gstatic.com/s/flamenco/v6/x9iI5CogvuZVCGoRHwXuo6CWcynf_cDxXwCLxiixG1c.ttf",
|
4426 |
-
"regular": "http://fonts.gstatic.com/s/flamenco/v6/HC0ugfLLgt26I5_BWD1PZA.ttf"
|
4427 |
-
}
|
4428 |
-
},
|
4429 |
-
{
|
4430 |
-
"kind": "webfonts#webfont",
|
4431 |
-
"family": "Flavors",
|
4432 |
-
"category": "display",
|
4433 |
-
"variants": [
|
4434 |
-
"regular"
|
4435 |
-
],
|
4436 |
-
"subsets": [
|
4437 |
-
"latin"
|
4438 |
-
],
|
4439 |
-
"version": "v5",
|
4440 |
-
"lastModified": "2016-02-23",
|
4441 |
-
"files": {
|
4442 |
-
"regular": "http://fonts.gstatic.com/s/flavors/v5/SPJi5QclATvon8ExcKGRvQ.ttf"
|
4443 |
-
}
|
4444 |
-
},
|
4445 |
-
{
|
4446 |
-
"kind": "webfonts#webfont",
|
4447 |
-
"family": "Fondamento",
|
4448 |
-
"category": "handwriting",
|
4449 |
-
"variants": [
|
4450 |
-
"regular",
|
4451 |
-
"italic"
|
4452 |
-
],
|
4453 |
-
"subsets": [
|
4454 |
-
"latin-ext",
|
4455 |
-
"latin"
|
4456 |
-
],
|
4457 |
-
"version": "v5",
|
4458 |
-
"lastModified": "2016-02-23",
|
4459 |
-
"files": {
|
4460 |
-
"regular": "http://fonts.gstatic.com/s/fondamento/v5/6LWXcjT1B7bnWluAOSNfMPesZW2xOQ-xsNqO47m55DA.ttf",
|
4461 |
-
"italic": "http://fonts.gstatic.com/s/fondamento/v5/y6TmwhSbZ8rYq7OTFyo7OS3USBnSvpkopQaUR-2r7iU.ttf"
|
4462 |
-
}
|
4463 |
-
},
|
4464 |
-
{
|
4465 |
-
"kind": "webfonts#webfont",
|
4466 |
-
"family": "Fontdiner Swanky",
|
4467 |
-
"category": "display",
|
4468 |
-
"variants": [
|
4469 |
-
"regular"
|
4470 |
-
],
|
4471 |
-
"subsets": [
|
4472 |
-
"latin"
|
4473 |
-
],
|
4474 |
-
"version": "v6",
|
4475 |
-
"lastModified": "2016-02-23",
|
4476 |
-
"files": {
|
4477 |
-
"regular": "http://fonts.gstatic.com/s/fontdinerswanky/v6/8_GxIO5ixMtn5P6COsF3TlBjMPLzPAFJwRBn-s1U7kA.ttf"
|
4478 |
-
}
|
4479 |
-
},
|
4480 |
-
{
|
4481 |
-
"kind": "webfonts#webfont",
|
4482 |
-
"family": "Forum",
|
4483 |
-
"category": "display",
|
4484 |
-
"variants": [
|
4485 |
-
"regular"
|
4486 |
-
],
|
4487 |
-
"subsets": [
|
4488 |
-
"latin-ext",
|
4489 |
-
"cyrillic-ext",
|
4490 |
-
"cyrillic",
|
4491 |
-
"latin"
|
4492 |
-
],
|
4493 |
-
"version": "v7",
|
4494 |
-
"lastModified": "2016-02-23",
|
4495 |
-
"files": {
|
4496 |
-
"regular": "http://fonts.gstatic.com/s/forum/v7/MZUpsq1VfLrqv8eSDcbrrQ.ttf"
|
4497 |
-
}
|
4498 |
-
},
|
4499 |
-
{
|
4500 |
-
"kind": "webfonts#webfont",
|
4501 |
-
"family": "Francois One",
|
4502 |
-
"category": "sans-serif",
|
4503 |
-
"variants": [
|
4504 |
-
"regular"
|
4505 |
-
],
|
4506 |
-
"subsets": [
|
4507 |
-
"latin-ext",
|
4508 |
-
"latin"
|
4509 |
-
],
|
4510 |
-
"version": "v9",
|
4511 |
-
"lastModified": "2016-02-23",
|
4512 |
-
"files": {
|
4513 |
-
"regular": "http://fonts.gstatic.com/s/francoisone/v9/bYbkq2nU2TSx4SwFbz5sCC3USBnSvpkopQaUR-2r7iU.ttf"
|
4514 |
-
}
|
4515 |
-
},
|
4516 |
-
{
|
4517 |
-
"kind": "webfonts#webfont",
|
4518 |
-
"family": "Freckle Face",
|
4519 |
-
"category": "display",
|
4520 |
-
"variants": [
|
4521 |
-
"regular"
|
4522 |
-
],
|
4523 |
-
"subsets": [
|
4524 |
-
"latin-ext",
|
4525 |
-
"latin"
|
4526 |
-
],
|
4527 |
-
"version": "v4",
|
4528 |
-
"lastModified": "2016-02-23",
|
4529 |
-
"files": {
|
4530 |
-
"regular": "http://fonts.gstatic.com/s/freckleface/v4/7-B8j9BPJgazdHIGqPNv8y3USBnSvpkopQaUR-2r7iU.ttf"
|
4531 |
-
}
|
4532 |
-
},
|
4533 |
-
{
|
4534 |
-
"kind": "webfonts#webfont",
|
4535 |
-
"family": "Fredericka the Great",
|
4536 |
-
"category": "display",
|
4537 |
-
"variants": [
|
4538 |
-
"regular"
|
4539 |
-
],
|
4540 |
-
"subsets": [
|
4541 |
-
"latin"
|
4542 |
-
],
|
4543 |
-
"version": "v5",
|
4544 |
-
"lastModified": "2016-02-23",
|
4545 |
-
"files": {
|
4546 |
-
"regular": "http://fonts.gstatic.com/s/frederickathegreat/v5/7Es8Lxoku-e5eOZWpxw18nrnet6gXN1McwdQxS1dVrI.ttf"
|
4547 |
-
}
|
4548 |
-
},
|
4549 |
-
{
|
4550 |
-
"kind": "webfonts#webfont",
|
4551 |
-
"family": "Fredoka One",
|
4552 |
-
"category": "display",
|
4553 |
-
"variants": [
|
4554 |
-
"regular"
|
4555 |
-
],
|
4556 |
-
"subsets": [
|
4557 |
-
"latin"
|
4558 |
-
],
|
4559 |
-
"version": "v4",
|
4560 |
-
"lastModified": "2016-02-23",
|
4561 |
-
"files": {
|
4562 |
-
"regular": "http://fonts.gstatic.com/s/fredokaone/v4/QKfwXi-z-KtJAlnO2ethYqCWcynf_cDxXwCLxiixG1c.ttf"
|
4563 |
-
}
|
4564 |
-
},
|
4565 |
-
{
|
4566 |
-
"kind": "webfonts#webfont",
|
4567 |
-
"family": "Freehand",
|
4568 |
-
"category": "display",
|
4569 |
-
"variants": [
|
4570 |
-
"regular"
|
4571 |
-
],
|
4572 |
-
"subsets": [
|
4573 |
-
"khmer"
|
4574 |
-
],
|
4575 |
-
"version": "v8",
|
4576 |
-
"lastModified": "2015-04-06",
|
4577 |
-
"files": {
|
4578 |
-
"regular": "http://fonts.gstatic.com/s/freehand/v8/uEBQxvA0lnn_BrD6krlxMw.ttf"
|
4579 |
-
}
|
4580 |
-
},
|
4581 |
-
{
|
4582 |
-
"kind": "webfonts#webfont",
|
4583 |
-
"family": "Fresca",
|
4584 |
-
"category": "sans-serif",
|
4585 |
-
"variants": [
|
4586 |
-
"regular"
|
4587 |
-
],
|
4588 |
-
"subsets": [
|
4589 |
-
"latin-ext",
|
4590 |
-
"latin"
|
4591 |
-
],
|
4592 |
-
"version": "v5",
|
4593 |
-
"lastModified": "2016-02-23",
|
4594 |
-
"files": {
|
4595 |
-
"regular": "http://fonts.gstatic.com/s/fresca/v5/2q7Qm9sCo1tWvVgSDVWNIw.ttf"
|
4596 |
-
}
|
4597 |
-
},
|
4598 |
-
{
|
4599 |
-
"kind": "webfonts#webfont",
|
4600 |
-
"family": "Frijole",
|
4601 |
-
"category": "display",
|
4602 |
-
"variants": [
|
4603 |
-
"regular"
|
4604 |
-
],
|
4605 |
-
"subsets": [
|
4606 |
-
"latin"
|
4607 |
-
],
|
4608 |
-
"version": "v5",
|
4609 |
-
"lastModified": "2016-02-23",
|
4610 |
-
"files": {
|
4611 |
-
"regular": "http://fonts.gstatic.com/s/frijole/v5/L2MfZse-2gCascuD-nLhWg.ttf"
|
4612 |
-
}
|
4613 |
-
},
|
4614 |
-
{
|
4615 |
-
"kind": "webfonts#webfont",
|
4616 |
-
"family": "Fruktur",
|
4617 |
-
"category": "display",
|
4618 |
-
"variants": [
|
4619 |
-
"regular"
|
4620 |
-
],
|
4621 |
-
"subsets": [
|
4622 |
-
"latin-ext",
|
4623 |
-
"latin"
|
4624 |
-
],
|
4625 |
-
"version": "v8",
|
4626 |
-
"lastModified": "2016-02-23",
|
4627 |
-
"files": {
|
4628 |
-
"regular": "http://fonts.gstatic.com/s/fruktur/v8/PnQvfEi1LssAvhJsCwH__w.ttf"
|
4629 |
-
}
|
4630 |
-
},
|
4631 |
-
{
|
4632 |
-
"kind": "webfonts#webfont",
|
4633 |
-
"family": "Fugaz One",
|
4634 |
-
"category": "display",
|
4635 |
-
"variants": [
|
4636 |
-
"regular"
|
4637 |
-
],
|
4638 |
-
"subsets": [
|
4639 |
-
"latin"
|
4640 |
-
],
|
4641 |
-
"version": "v6",
|
4642 |
-
"lastModified": "2016-02-23",
|
4643 |
-
"files": {
|
4644 |
-
"regular": "http://fonts.gstatic.com/s/fugazone/v6/5tteVDCwxsr8-5RuSiRWOw.ttf"
|
4645 |
-
}
|
4646 |
-
},
|
4647 |
-
{
|
4648 |
-
"kind": "webfonts#webfont",
|
4649 |
-
"family": "GFS Didot",
|
4650 |
-
"category": "serif",
|
4651 |
-
"variants": [
|
4652 |
-
"regular"
|
4653 |
-
],
|
4654 |
-
"subsets": [
|
4655 |
-
"greek"
|
4656 |
-
],
|
4657 |
-
"version": "v6",
|
4658 |
-
"lastModified": "2016-02-23",
|
4659 |
-
"files": {
|
4660 |
-
"regular": "http://fonts.gstatic.com/s/gfsdidot/v6/jQKxZy2RU-h9tkPZcRVluA.ttf"
|
4661 |
-
}
|
4662 |
-
},
|
4663 |
-
{
|
4664 |
-
"kind": "webfonts#webfont",
|
4665 |
-
"family": "GFS Neohellenic",
|
4666 |
-
"category": "sans-serif",
|
4667 |
-
"variants": [
|
4668 |
-
"regular",
|
4669 |
-
"italic",
|
4670 |
-
"700",
|
4671 |
-
"700italic"
|
4672 |
-
],
|
4673 |
-
"subsets": [
|
4674 |
-
"greek"
|
4675 |
-
],
|
4676 |
-
"version": "v7",
|
4677 |
-
"lastModified": "2016-02-23",
|
4678 |
-
"files": {
|
4679 |
-
"regular": "http://fonts.gstatic.com/s/gfsneohellenic/v7/B4xRqbn-tANVqVgamMsSDiayCZa0z7CpFzlkqoCHztc.ttf",
|
4680 |
-
"italic": "http://fonts.gstatic.com/s/gfsneohellenic/v7/KnaWrO4awITAqigQIIYXKkCTdomiyJpIzPbEbIES3rU.ttf",
|
4681 |
-
"700": "http://fonts.gstatic.com/s/gfsneohellenic/v7/7HwjPQa7qNiOsnUce2h4448_BwCLZY3eDSV6kppAwI8.ttf",
|
4682 |
-
"700italic": "http://fonts.gstatic.com/s/gfsneohellenic/v7/FwWjoX6XqT-szJFyqsu_GYFF0fM4h-krcpQk7emtCpE.ttf"
|
4683 |
-
}
|
4684 |
-
},
|
4685 |
-
{
|
4686 |
-
"kind": "webfonts#webfont",
|
4687 |
-
"family": "Gabriela",
|
4688 |
-
"category": "serif",
|
4689 |
-
"variants": [
|
4690 |
-
"regular"
|
4691 |
-
],
|
4692 |
-
"subsets": [
|
4693 |
-
"latin-ext",
|
4694 |
-
"latin"
|
4695 |
-
],
|
4696 |
-
"version": "v4",
|
4697 |
-
"lastModified": "2016-02-23",
|
4698 |
-
"files": {
|
4699 |
-
"regular": "http://fonts.gstatic.com/s/gabriela/v4/B-2ZfbAO3HDrxqV6lR5tdA.ttf"
|
4700 |
-
}
|
4701 |
-
},
|
4702 |
-
{
|
4703 |
-
"kind": "webfonts#webfont",
|
4704 |
-
"family": "Gafata",
|
4705 |
-
"category": "sans-serif",
|
4706 |
-
"variants": [
|
4707 |
-
"regular"
|
4708 |
-
],
|
4709 |
-
"subsets": [
|
4710 |
-
"latin-ext",
|
4711 |
-
"latin"
|
4712 |
-
],
|
4713 |
-
"version": "v5",
|
4714 |
-
"lastModified": "2016-02-23",
|
4715 |
-
"files": {
|
4716 |
-
"regular": "http://fonts.gstatic.com/s/gafata/v5/aTFqlki_3Dc3geo-FxHTvQ.ttf"
|
4717 |
-
}
|
4718 |
-
},
|
4719 |
-
{
|
4720 |
-
"kind": "webfonts#webfont",
|
4721 |
-
"family": "Galdeano",
|
4722 |
-
"category": "sans-serif",
|
4723 |
-
"variants": [
|
4724 |
-
"regular"
|
4725 |
-
],
|
4726 |
-
"subsets": [
|
4727 |
-
"latin"
|
4728 |
-
],
|
4729 |
-
"version": "v6",
|
4730 |
-
"lastModified": "2016-02-23",
|
4731 |
-
"files": {
|
4732 |
-
"regular": "http://fonts.gstatic.com/s/galdeano/v6/ZKFMQI6HxEG1jOT0UGSZUg.ttf"
|
4733 |
-
}
|
4734 |
-
},
|
4735 |
-
{
|
4736 |
-
"kind": "webfonts#webfont",
|
4737 |
-
"family": "Galindo",
|
4738 |
-
"category": "display",
|
4739 |
-
"variants": [
|
4740 |
-
"regular"
|
4741 |
-
],
|
4742 |
-
"subsets": [
|
4743 |
-
"latin-ext",
|
4744 |
-
"latin"
|
4745 |
-
],
|
4746 |
-
"version": "v4",
|
4747 |
-
"lastModified": "2016-02-23",
|
4748 |
-
"files": {
|
4749 |
-
"regular": "http://fonts.gstatic.com/s/galindo/v4/2lafAS_ZEfB33OJryhXDUg.ttf"
|
4750 |
-
}
|
4751 |
-
},
|
4752 |
-
{
|
4753 |
-
"kind": "webfonts#webfont",
|
4754 |
-
"family": "Gentium Basic",
|
4755 |
-
"category": "serif",
|
4756 |
-
"variants": [
|
4757 |
-
"regular",
|
4758 |
-
"italic",
|
4759 |
-
"700",
|
4760 |
-
"700italic"
|
4761 |
-
],
|
4762 |
-
"subsets": [
|
4763 |
-
"latin-ext",
|
4764 |
-
"latin"
|
4765 |
-
],
|
4766 |
-
"version": "v8",
|
4767 |
-
"lastModified": "2016-02-23",
|
4768 |
-
"files": {
|
4769 |
-
"regular": "http://fonts.gstatic.com/s/gentiumbasic/v8/KCktj43blvLkhOTolFn-MYtBLojGU5Qdl8-5NL4v70w.ttf",
|
4770 |
-
"italic": "http://fonts.gstatic.com/s/gentiumbasic/v8/qoFz4NSMaYC2UmsMAG3lyTj3mvXnCeAk09uTtmkJGRc.ttf",
|
4771 |
-
"700": "http://fonts.gstatic.com/s/gentiumbasic/v8/2qL6yulgGf0wwgOp-UqGyLNuTeOOLg3nUymsEEGmdO0.ttf",
|
4772 |
-
"700italic": "http://fonts.gstatic.com/s/gentiumbasic/v8/8N9-c_aQDJ8LbI1NGVMrwtswO1vWwP9exiF8s0wqW10.ttf"
|
4773 |
-
}
|
4774 |
-
},
|
4775 |
-
{
|
4776 |
-
"kind": "webfonts#webfont",
|
4777 |
-
"family": "Gentium Book Basic",
|
4778 |
-
"category": "serif",
|
4779 |
-
"variants": [
|
4780 |
-
"regular",
|
4781 |
-
"italic",
|
4782 |
-
"700",
|
4783 |
-
"700italic"
|
4784 |
-
],
|
4785 |
-
"subsets": [
|
4786 |
-
"latin-ext",
|
4787 |
-
"latin"
|
4788 |
-
],
|
4789 |
-
"version": "v7",
|
4790 |
-
"lastModified": "2016-02-23",
|
4791 |
-
"files": {
|
4792 |
-
"regular": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/IRFxB2matTxrjZt6a3FUnrWDjKAyldGEr6eEi2MBNeY.ttf",
|
4793 |
-
"italic": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/qHqW2lwKO8-uTfIkh8FsUfXfjMwrYnmPVsQth2IcAPY.ttf",
|
4794 |
-
"700": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/T2vUYmWzlqUtgLYdlemGnaWESMHIjnSjm9UUxYtEOko.ttf",
|
4795 |
-
"700italic": "http://fonts.gstatic.com/s/gentiumbookbasic/v7/632u7TMIoFDWQYUaHFUp5PA2A9KyRZEkn4TZVuhsWRM.ttf"
|
4796 |
-
}
|
4797 |
-
},
|
4798 |
-
{
|
4799 |
-
"kind": "webfonts#webfont",
|
4800 |
-
"family": "Geo",
|
4801 |
-
"category": "sans-serif",
|
4802 |
-
"variants": [
|
4803 |
-
"regular",
|
4804 |
-
"italic"
|
4805 |
-
],
|
4806 |
-
"subsets": [
|
4807 |
-
"latin"
|
4808 |
-
],
|
4809 |
-
"version": "v8",
|
4810 |
-
"lastModified": "2016-02-23",
|
4811 |
-
"files": {
|
4812 |
-
"regular": "http://fonts.gstatic.com/s/geo/v8/mJuJYk5Pww84B4uHAQ1XaA.ttf",
|
4813 |
-
"italic": "http://fonts.gstatic.com/s/geo/v8/8_r1wToF7nPdDuX1qxel6Q.ttf"
|
4814 |
-
}
|
4815 |
-
},
|
4816 |
-
{
|
4817 |
-
"kind": "webfonts#webfont",
|
4818 |
-
"family": "Geostar",
|
4819 |
-
"category": "display",
|
4820 |
-
"variants": [
|
4821 |
-
"regular"
|
4822 |
-
],
|
4823 |
-
"subsets": [
|
4824 |
-
"latin"
|
4825 |
-
],
|
4826 |
-
"version": "v6",
|
4827 |
-
"lastModified": "2016-02-23",
|
4828 |
-
"files": {
|
4829 |
-
"regular": "http://fonts.gstatic.com/s/geostar/v6/A8WQbhQbpYx3GWWaShJ9GA.ttf"
|
4830 |
-
}
|
4831 |
-
},
|
4832 |
-
{
|
4833 |
-
"kind": "webfonts#webfont",
|
4834 |
-
"family": "Geostar Fill",
|
4835 |
-
"category": "display",
|
4836 |
-
"variants": [
|
4837 |
-
"regular"
|
4838 |
-
],
|
4839 |
-
"subsets": [
|
4840 |
-
"latin"
|
4841 |
-
],
|
4842 |
-
"version": "v6",
|
4843 |
-
"lastModified": "2016-02-23",
|
4844 |
-
"files": {
|
4845 |
-
"regular": "http://fonts.gstatic.com/s/geostarfill/v6/Y5ovXPPOHYTfQzK2aM-hui3USBnSvpkopQaUR-2r7iU.ttf"
|
4846 |
-
}
|
4847 |
-
},
|
4848 |
-
{
|
4849 |
-
"kind": "webfonts#webfont",
|
4850 |
-
"family": "Germania One",
|
4851 |
-
"category": "display",
|
4852 |
-
"variants": [
|
4853 |
-
"regular"
|
4854 |
-
],
|
4855 |
-
"subsets": [
|
4856 |
-
"latin"
|
4857 |
-
],
|
4858 |
-
"version": "v4",
|
4859 |
-
"lastModified": "2016-02-23",
|
4860 |
-
"files": {
|
4861 |
-
"regular": "http://fonts.gstatic.com/s/germaniaone/v4/3_6AyUql_-FbDi1e68jHdC3USBnSvpkopQaUR-2r7iU.ttf"
|
4862 |
-
}
|
4863 |
-
},
|
4864 |
-
{
|
4865 |
-
"kind": "webfonts#webfont",
|
4866 |
-
"family": "Gidugu",
|
4867 |
-
"category": "sans-serif",
|
4868 |
-
"variants": [
|
4869 |
-
"regular"
|
4870 |
-
],
|
4871 |
-
"subsets": [
|
4872 |
-
"telugu",
|
4873 |
-
"latin"
|
4874 |
-
],
|
4875 |
-
"version": "v3",
|
4876 |
-
"lastModified": "2016-02-23",
|
4877 |
-
"files": {
|
4878 |
-
"regular": "http://fonts.gstatic.com/s/gidugu/v3/Ey6Eq3hrT6MM58iFItFcgw.ttf"
|
4879 |
-
}
|
4880 |
-
},
|
4881 |
-
{
|
4882 |
-
"kind": "webfonts#webfont",
|
4883 |
-
"family": "Gilda Display",
|
4884 |
-
"category": "serif",
|
4885 |
-
"variants": [
|
4886 |
-
"regular"
|
4887 |
-
],
|
4888 |
-
"subsets": [
|
4889 |
-
"latin-ext",
|
4890 |
-
"latin"
|
4891 |
-
],
|
4892 |
-
"version": "v4",
|
4893 |
-
"lastModified": "2016-02-23",
|
4894 |
-
"files": {
|
4895 |
-
"regular": "http://fonts.gstatic.com/s/gildadisplay/v4/8yAVUZLLZ3wb7dSsjix0CADHmap7fRWINAsw8-RaxNg.ttf"
|
4896 |
-
}
|
4897 |
-
},
|
4898 |
-
{
|
4899 |
-
"kind": "webfonts#webfont",
|
4900 |
-
"family": "Give You Glory",
|
4901 |
-
"category": "handwriting",
|
4902 |
-
"variants": [
|
4903 |
-
"regular"
|
4904 |
-
],
|
4905 |
-
"subsets": [
|
4906 |
-
"latin"
|
4907 |
-
],
|
4908 |
-
"version": "v6",
|
4909 |
-
"lastModified": "2016-02-23",
|
4910 |
-
"files": {
|
4911 |
-
"regular": "http://fonts.gstatic.com/s/giveyouglory/v6/DFEWZFgGmfseyIdGRJAxuBwwkpSPZdvjnMtysdqprfI.ttf"
|
4912 |
-
}
|
4913 |
-
},
|
4914 |
-
{
|
4915 |
-
"kind": "webfonts#webfont",
|
4916 |
-
"family": "Glass Antiqua",
|
4917 |
-
"category": "display",
|
4918 |
-
"variants": [
|
4919 |
-
"regular"
|
4920 |
-
],
|
4921 |
-
"subsets": [
|
4922 |
-
"latin-ext",
|
4923 |
-
"latin"
|
4924 |
-
],
|
4925 |
-
"version": "v4",
|
4926 |
-
"lastModified": "2016-02-23",
|
4927 |
-
"files": {
|
4928 |
-
"regular": "http://fonts.gstatic.com/s/glassantiqua/v4/0yLrXKplgdUDIMz5TnCHNODcg5akpSnIcsPhLOFv7l8.ttf"
|
4929 |
-
}
|
4930 |
-
},
|
4931 |
-
{
|
4932 |
-
"kind": "webfonts#webfont",
|
4933 |
-
"family": "Glegoo",
|
4934 |
-
"category": "serif",
|
4935 |
-
"variants": [
|
4936 |
-
"regular",
|
4937 |
-
"700"
|
4938 |
-
],
|
4939 |
-
"subsets": [
|
4940 |
-
"devanagari",
|
4941 |
-
"latin-ext",
|
4942 |
-
"latin"
|
4943 |
-
],
|
4944 |
-
"version": "v5",
|
4945 |
-
"lastModified": "2016-02-23",
|
4946 |
-
"files": {
|
4947 |
-
"regular": "http://fonts.gstatic.com/s/glegoo/v5/2tf-h3n2A_SNYXEO0C8bKw.ttf",
|
4948 |
-
"700": "http://fonts.gstatic.com/s/glegoo/v5/TlLolbauH0-0Aiz1LUH5og.ttf"
|
4949 |
-
}
|
4950 |
-
},
|
4951 |
-
{
|
4952 |
-
"kind": "webfonts#webfont",
|
4953 |
-
"family": "Gloria Hallelujah",
|
4954 |
-
"category": "handwriting",
|
4955 |
-
"variants": [
|
4956 |
-
"regular"
|
4957 |
-
],
|
4958 |
-
"subsets": [
|
4959 |
-
"latin"
|
4960 |
-
],
|
4961 |
-
"version": "v8",
|
4962 |
-
"lastModified": "2016-02-23",
|
4963 |
-
"files": {
|
4964 |
-
"regular": "http://fonts.gstatic.com/s/gloriahallelujah/v8/CA1k7SlXcY5kvI81M_R28Q3RdPdyebSUyJECJouPsvA.ttf"
|
4965 |
-
}
|
4966 |
-
},
|
4967 |
-
{
|
4968 |
-
"kind": "webfonts#webfont",
|
4969 |
-
"family": "Goblin One",
|
4970 |
-
"category": "display",
|
4971 |
-
"variants": [
|
4972 |
-
"regular"
|
4973 |
-
],
|
4974 |
-
"subsets": [
|
4975 |
-
"latin"
|
4976 |
-
],
|
4977 |
-
"version": "v6",
|
4978 |
-
"lastModified": "2016-02-23",
|
4979 |
-
"files": {
|
4980 |
-
"regular": "http://fonts.gstatic.com/s/goblinone/v6/331XtzoXgpVEvNTVcBJ_C_esZW2xOQ-xsNqO47m55DA.ttf"
|
4981 |
-
}
|
4982 |
-
},
|
4983 |
-
{
|
4984 |
-
"kind": "webfonts#webfont",
|
4985 |
-
"family": "Gochi Hand",
|
4986 |
-
"category": "handwriting",
|
4987 |
-
"variants": [
|
4988 |
-
"regular"
|
4989 |
-
],
|
4990 |
-
"subsets": [
|
4991 |
-
"latin"
|
4992 |
-
],
|
4993 |
-
"version": "v7",
|
4994 |
-
"lastModified": "2016-02-23",
|
4995 |
-
"files": {
|
4996 |
-
"regular": "http://fonts.gstatic.com/s/gochihand/v7/KT1-WxgHsittJ34_20IfAPesZW2xOQ-xsNqO47m55DA.ttf"
|
4997 |
-
}
|
4998 |
-
},
|
4999 |
-
{
|
5000 |
-
"kind": "webfonts#webfont",
|
5001 |
-
"family": "Gorditas",
|
5002 |
-
"category": "display",
|
5003 |
-
"variants": [
|
5004 |
-
"regular",
|
5005 |
-
"700"
|
5006 |
-
],
|
5007 |
-
"subsets": [
|
5008 |
-
"latin"
|
5009 |
-
],
|
5010 |
-
"version": "v4",
|
5011 |
-
"lastModified": "2016-02-23",
|
5012 |
-
"files": {
|
5013 |
-
"regular": "http://fonts.gstatic.com/s/gorditas/v4/uMgZhXUyH6qNGF3QsjQT5Q.ttf",
|
5014 |
-
"700": "http://fonts.gstatic.com/s/gorditas/v4/6-XCeknmxaon8AUqVkMnHaCWcynf_cDxXwCLxiixG1c.ttf"
|
5015 |
-
}
|
5016 |
-
},
|
5017 |
-
{
|
5018 |
-
"kind": "webfonts#webfont",
|
5019 |
-
"family": "Goudy Bookletter 1911",
|
5020 |
-
"category": "serif",
|
5021 |
-
"variants": [
|
5022 |
-
"regular"
|
5023 |
-
],
|
5024 |
-
"subsets": [
|
5025 |
-
"latin"
|
5026 |
-
],
|
5027 |
-
"version": "v6",
|
5028 |
-
"lastModified": "2016-02-23",
|
5029 |
-
"files": {
|
5030 |
-
"regular": "http://fonts.gstatic.com/s/goudybookletter1911/v6/l5lwlGTN3pEY5Bf-rQEuIIjNDsyURsIKu4GSfvSE4mA.ttf"
|
5031 |
-
}
|
5032 |
-
},
|
5033 |
-
{
|
5034 |
-
"kind": "webfonts#webfont",
|
5035 |
-
"family": "Graduate",
|
5036 |
-
"category": "display",
|
5037 |
-
"variants": [
|
5038 |
-
"regular"
|
5039 |
-
],
|
5040 |
-
"subsets": [
|
5041 |
-
"latin"
|
5042 |
-
],
|
5043 |
-
"version": "v4",
|
5044 |
-
"lastModified": "2016-02-23",
|
5045 |
-
"files": {
|
5046 |
-
"regular": "http://fonts.gstatic.com/s/graduate/v4/JpAmYLHqcIh9_Ff35HHwiA.ttf"
|
5047 |
-
}
|
5048 |
-
},
|
5049 |
-
{
|
5050 |
-
"kind": "webfonts#webfont",
|
5051 |
-
"family": "Grand Hotel",
|
5052 |
-
"category": "handwriting",
|
5053 |
-
"variants": [
|
5054 |
-
"regular"
|
5055 |
-
],
|
5056 |
-
"subsets": [
|
5057 |
-
"latin-ext",
|
5058 |
-
"latin"
|
5059 |
-
],
|
5060 |
-
"version": "v4",
|
5061 |
-
"lastModified": "2016-02-23",
|
5062 |
-
"files": {
|
5063 |
-
"regular": "http://fonts.gstatic.com/s/grandhotel/v4/C_A8HiFZjXPpnMt38XnK7qCWcynf_cDxXwCLxiixG1c.ttf"
|
5064 |
-
}
|
5065 |
-
},
|
5066 |
-
{
|
5067 |
-
"kind": "webfonts#webfont",
|
5068 |
-
"family": "Gravitas One",
|
5069 |
-
"category": "display",
|
5070 |
-
"variants": [
|
5071 |
-
"regular"
|
5072 |
-
],
|
5073 |
-
"subsets": [
|
5074 |
-
"latin"
|
5075 |
-
],
|
5076 |
-
"version": "v6",
|
5077 |
-
"lastModified": "2016-02-23",
|
5078 |
-
"files": {
|
5079 |
-
"regular": "http://fonts.gstatic.com/s/gravitasone/v6/nBHdBv6zVNU8MtP6w9FwTS3USBnSvpkopQaUR-2r7iU.ttf"
|
5080 |
-
}
|
5081 |
-
},
|
5082 |
-
{
|
5083 |
-
"kind": "webfonts#webfont",
|
5084 |
-
"family": "Great Vibes",
|
5085 |
-
"category": "handwriting",
|
5086 |
-
"variants": [
|
5087 |
-
"regular"
|
5088 |
-
],
|
5089 |
-
"subsets": [
|
5090 |
-
"latin-ext",
|
5091 |
-
"latin"
|
5092 |
-
],
|
5093 |
-
"version": "v4",
|
5094 |
-
"lastModified": "2016-02-23",
|
5095 |
-
"files": {
|
5096 |
-
"regular": "http://fonts.gstatic.com/s/greatvibes/v4/4Mi5RG_9LjQYrTU55GN_L6CWcynf_cDxXwCLxiixG1c.ttf"
|
5097 |
-
}
|
5098 |
-
},
|
5099 |
-
{
|
5100 |
-
"kind": "webfonts#webfont",
|
5101 |
-
"family": "Griffy",
|
5102 |
-
"category": "display",
|
5103 |
-
"variants": [
|
5104 |
-
"regular"
|
5105 |
-
],
|
5106 |
-
"subsets": [
|
5107 |
-
"latin-ext",
|
5108 |
-
"latin"
|
5109 |
-
],
|
5110 |
-
"version": "v4",
|
5111 |
-
"lastModified": "2016-02-23",
|
5112 |
-
"files": {
|
5113 |
-
"regular": "http://fonts.gstatic.com/s/griffy/v4/vWkyYGBSyE5xjnShNtJtzw.ttf"
|
5114 |
-
}
|
5115 |
-
},
|
5116 |
-
{
|
5117 |
-
"kind": "webfonts#webfont",
|
5118 |
-
"family": "Gruppo",
|
5119 |
-
"category": "display",
|
5120 |
-
"variants": [
|
5121 |
-
"regular"
|
5122 |
-
],
|
5123 |
-
"subsets": [
|
5124 |
-
"latin-ext",
|
5125 |
-
"latin"
|
5126 |
-
],
|
5127 |
-
"version": "v7",
|
5128 |
-
"lastModified": "2016-02-23",
|
5129 |
-
"files": {
|
5130 |
-
"regular": "http://fonts.gstatic.com/s/gruppo/v7/pS_JM0cK_piBZve-lfUq9w.ttf"
|
5131 |
-
}
|
5132 |
-
},
|
5133 |
-
{
|
5134 |
-
"kind": "webfonts#webfont",
|
5135 |
-
"family": "Gudea",
|
5136 |
-
"category": "sans-serif",
|
5137 |
-
"variants": [
|
5138 |
-
"regular",
|
5139 |
-
"italic",
|
5140 |
-
"700"
|
5141 |
-
],
|
5142 |
-
"subsets": [
|
5143 |
-
"latin-ext",
|
5144 |
-
"latin"
|
5145 |
-
],
|
5146 |
-
"version": "v4",
|
5147 |
-
"lastModified": "2016-02-23",
|
5148 |
-
"files": {
|
5149 |
-
"regular": "http://fonts.gstatic.com/s/gudea/v4/S-4QqBlkMPiiA3jNeCR5yw.ttf",
|
5150 |
-
"italic": "http://fonts.gstatic.com/s/gudea/v4/7mNgsGw_vfS-uUgRVXNDSw.ttf",
|
5151 |
-
"700": "http://fonts.gstatic.com/s/gudea/v4/lsip4aiWhJ9bx172Y9FN_w.ttf"
|
5152 |
-
}
|
5153 |
-
},
|
5154 |
-
{
|
5155 |
-
"kind": "webfonts#webfont",
|
5156 |
-
"family": "Gurajada",
|
5157 |
-
"category": "serif",
|
5158 |
-
"variants": [
|
5159 |
-
"regular"
|
5160 |
-
],
|
5161 |
-
"subsets": [
|
5162 |
-
"telugu",
|
5163 |
-
"latin"
|
5164 |
-
],
|
5165 |
-
"version": "v4",
|
5166 |
-
"lastModified": "2016-02-23",
|
5167 |
-
"files": {
|
5168 |
-
"regular": "http://fonts.gstatic.com/s/gurajada/v4/6Adfkl4PCRyq6XTENACEyA.ttf"
|
5169 |
-
}
|
5170 |
-
},
|
5171 |
-
{
|
5172 |
-
"kind": "webfonts#webfont",
|
5173 |
-
"family": "Habibi",
|
5174 |
-
"category": "serif",
|
5175 |
-
"variants": [
|
5176 |
-
"regular"
|
5177 |
-
],
|
5178 |
-
"subsets": [
|
5179 |
-
"latin-ext",
|
5180 |
-
"latin"
|
5181 |
-
],
|
5182 |
-
"version": "v5",
|
5183 |
-
"lastModified": "2016-02-23",
|
5184 |
-
"files": {
|
5185 |
-
"regular": "http://fonts.gstatic.com/s/habibi/v5/YYyqXF6pWpL7kmKgS_2iUA.ttf"
|
5186 |
-
}
|
5187 |
-
},
|
5188 |
-
{
|
5189 |
-
"kind": "webfonts#webfont",
|
5190 |
-
"family": "Halant",
|
5191 |
-
"category": "serif",
|
5192 |
-
"variants": [
|
5193 |
-
"300",
|
5194 |
-
"regular",
|
5195 |
-
"500",
|
5196 |
-
"600",
|
5197 |
-
"700"
|
5198 |
-
],
|
5199 |
-
"subsets": [
|
5200 |
-
"devanagari",
|
5201 |
-
"latin-ext",
|
5202 |
-
"latin"
|
5203 |
-
],
|
5204 |
-
"version": "v2",
|
5205 |
-
"lastModified": "2016-03-14",
|
5206 |
-
"files": {
|
5207 |
-
"300": "http://fonts.gstatic.com/s/halant/v2/dM3ItAOWNNod_Cf3MnLlEg.ttf",
|
5208 |
-
"regular": "http://fonts.gstatic.com/s/halant/v2/rEs7Jk3SVyt3cTx6DoTu1w.ttf",
|
5209 |
-
"500": "http://fonts.gstatic.com/s/halant/v2/tlsNj3K-hJKtiirTDtUbkQ.ttf",
|
5210 |
-
"600": "http://fonts.gstatic.com/s/halant/v2/zNR2WvI_V8o652vIZp3X4Q.ttf",
|
5211 |
-
"700": "http://fonts.gstatic.com/s/halant/v2/D9FN7OH89AuCmZDLHbPQfA.ttf"
|
5212 |
-
}
|
5213 |
-
},
|
5214 |
-
{
|
5215 |
-
"kind": "webfonts#webfont",
|
5216 |
-
"family": "Hammersmith One",
|
5217 |
-
"category": "sans-serif",
|
5218 |
-
"variants": [
|
5219 |
-
"regular"
|
5220 |
-
],
|
5221 |
-
"subsets": [
|
5222 |
-
"latin-ext",
|
5223 |
-
"latin"
|
5224 |
-
],
|
5225 |
-
"version": "v7",
|
5226 |
-
"lastModified": "2016-02-23",
|
5227 |
-
"files": {
|
5228 |
-
"regular": "http://fonts.gstatic.com/s/hammersmithone/v7/FWNn6ITYqL6or7ZTmBxRhjjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
5229 |
-
}
|
5230 |
-
},
|
5231 |
-
{
|
5232 |
-
"kind": "webfonts#webfont",
|
5233 |
-
"family": "Hanalei",
|
5234 |
-
"category": "display",
|
5235 |
-
"variants": [
|
5236 |
-
"regular"
|
5237 |
-
],
|
5238 |
-
"subsets": [
|
5239 |
-
"latin-ext",
|
5240 |
-
"latin"
|
5241 |
-
],
|
5242 |
-
"version": "v6",
|
5243 |
-
"lastModified": "2016-02-23",
|
5244 |
-
"files": {
|
5245 |
-
"regular": "http://fonts.gstatic.com/s/hanalei/v6/Sx8vVMBnXSQyK6Cn0CBJ3A.ttf"
|
5246 |
-
}
|
5247 |
-
},
|
5248 |
-
{
|
5249 |
-
"kind": "webfonts#webfont",
|
5250 |
-
"family": "Hanalei Fill",
|
5251 |
-
"category": "display",
|
5252 |
-
"variants": [
|
5253 |
-
"regular"
|
5254 |
-
],
|
5255 |
-
"subsets": [
|
5256 |
-
"latin-ext",
|
5257 |
-
"latin"
|
5258 |
-
],
|
5259 |
-
"version": "v5",
|
5260 |
-
"lastModified": "2016-02-23",
|
5261 |
-
"files": {
|
5262 |
-
"regular": "http://fonts.gstatic.com/s/hanaleifill/v5/5uPeWLnaDdtm4UBG26Ds6C3USBnSvpkopQaUR-2r7iU.ttf"
|
5263 |
-
}
|
5264 |
-
},
|
5265 |
-
{
|
5266 |
-
"kind": "webfonts#webfont",
|
5267 |
-
"family": "Handlee",
|
5268 |
-
"category": "handwriting",
|
5269 |
-
"variants": [
|
5270 |
-
"regular"
|
5271 |
-
],
|
5272 |
-
"subsets": [
|
5273 |
-
"latin"
|
5274 |
-
],
|
5275 |
-
"version": "v5",
|
5276 |
-
"lastModified": "2016-02-23",
|
5277 |
-
"files": {
|
5278 |
-
"regular": "http://fonts.gstatic.com/s/handlee/v5/6OfkXkyC0E5NZN80ED8u3A.ttf"
|
5279 |
-
}
|
5280 |
-
},
|
5281 |
-
{
|
5282 |
-
"kind": "webfonts#webfont",
|
5283 |
-
"family": "Hanuman",
|
5284 |
-
"category": "serif",
|
5285 |
-
"variants": [
|
5286 |
-
"regular",
|
5287 |
-
"700"
|
5288 |
-
],
|
5289 |
-
"subsets": [
|
5290 |
-
"khmer"
|
5291 |
-
],
|
5292 |
-
"version": "v9",
|
5293 |
-
"lastModified": "2016-02-23",
|
5294 |
-
"files": {
|
5295 |
-
"regular": "http://fonts.gstatic.com/s/hanuman/v9/hRhwOGGmElJSl6KSPvEnOQ.ttf",
|
5296 |
-
"700": "http://fonts.gstatic.com/s/hanuman/v9/lzzXZ2l84x88giDrbfq76vesZW2xOQ-xsNqO47m55DA.ttf"
|
5297 |
-
}
|
5298 |
-
},
|
5299 |
-
{
|
5300 |
-
"kind": "webfonts#webfont",
|
5301 |
-
"family": "Happy Monkey",
|
5302 |
-
"category": "display",
|
5303 |
-
"variants": [
|
5304 |
-
"regular"
|
5305 |
-
],
|
5306 |
-
"subsets": [
|
5307 |
-
"latin-ext",
|
5308 |
-
"latin"
|
5309 |
-
],
|
5310 |
-
"version": "v5",
|
5311 |
-
"lastModified": "2016-02-23",
|
5312 |
-
"files": {
|
5313 |
-
"regular": "http://fonts.gstatic.com/s/happymonkey/v5/c2o0ps8nkBmaOYctqBq1rS3USBnSvpkopQaUR-2r7iU.ttf"
|
5314 |
-
}
|
5315 |
-
},
|
5316 |
-
{
|
5317 |
-
"kind": "webfonts#webfont",
|
5318 |
-
"family": "Headland One",
|
5319 |
-
"category": "serif",
|
5320 |
-
"variants": [
|
5321 |
-
"regular"
|
5322 |
-
],
|
5323 |
-
"subsets": [
|
5324 |
-
"latin-ext",
|
5325 |
-
"latin"
|
5326 |
-
],
|
5327 |
-
"version": "v4",
|
5328 |
-
"lastModified": "2016-02-23",
|
5329 |
-
"files": {
|
5330 |
-
"regular": "http://fonts.gstatic.com/s/headlandone/v4/iGmBeOvQGfq9DSbjJ8jDVy3USBnSvpkopQaUR-2r7iU.ttf"
|
5331 |
-
}
|
5332 |
-
},
|
5333 |
-
{
|
5334 |
-
"kind": "webfonts#webfont",
|
5335 |
-
"family": "Henny Penny",
|
5336 |
-
"category": "display",
|
5337 |
-
"variants": [
|
5338 |
-
"regular"
|
5339 |
-
],
|
5340 |
-
"subsets": [
|
5341 |
-
"latin"
|
5342 |
-
],
|
5343 |
-
"version": "v4",
|
5344 |
-
"lastModified": "2016-02-23",
|
5345 |
-
"files": {
|
5346 |
-
"regular": "http://fonts.gstatic.com/s/hennypenny/v4/XRgo3ogXyi3tpsFfjImRF6CWcynf_cDxXwCLxiixG1c.ttf"
|
5347 |
-
}
|
5348 |
-
},
|
5349 |
-
{
|
5350 |
-
"kind": "webfonts#webfont",
|
5351 |
-
"family": "Herr Von Muellerhoff",
|
5352 |
-
"category": "handwriting",
|
5353 |
-
"variants": [
|
5354 |
-
"regular"
|
5355 |
-
],
|
5356 |
-
"subsets": [
|
5357 |
-
"latin-ext",
|
5358 |
-
"latin"
|
5359 |
-
],
|
5360 |
-
"version": "v6",
|
5361 |
-
"lastModified": "2016-02-23",
|
5362 |
-
"files": {
|
5363 |
-
"regular": "http://fonts.gstatic.com/s/herrvonmuellerhoff/v6/mmy24EUmk4tjm4gAEjUd7NLGIYrUsBdh-JWHYgiDiMU.ttf"
|
5364 |
-
}
|
5365 |
-
},
|
5366 |
-
{
|
5367 |
-
"kind": "webfonts#webfont",
|
5368 |
-
"family": "Hind",
|
5369 |
-
"category": "sans-serif",
|
5370 |
-
"variants": [
|
5371 |
-
"300",
|
5372 |
-
"regular",
|
5373 |
-
"500",
|
5374 |
-
"600",
|
5375 |
-
"700"
|
5376 |
-
],
|
5377 |
-
"subsets": [
|
5378 |
-
"devanagari",
|
5379 |
-
"latin-ext",
|
5380 |
-
"latin"
|
5381 |
-
],
|
5382 |
-
"version": "v5",
|
5383 |
-
"lastModified": "2016-02-23",
|
5384 |
-
"files": {
|
5385 |
-
"300": "http://fonts.gstatic.com/s/hind/v5/qa346Adgv9kPDXoD1my4kA.ttf",
|
5386 |
-
"regular": "http://fonts.gstatic.com/s/hind/v5/mktFHh5Z5P9YjGKSslSUtA.ttf",
|
5387 |
-
"500": "http://fonts.gstatic.com/s/hind/v5/2cs8RCVcYtiv4iNDH1UsQQ.ttf",
|
5388 |
-
"600": "http://fonts.gstatic.com/s/hind/v5/TUKUmFMXSoxloBP1ni08oA.ttf",
|
5389 |
-
"700": "http://fonts.gstatic.com/s/hind/v5/cXJJavLdUbCfjxlsA6DqTw.ttf"
|
5390 |
-
}
|
5391 |
-
},
|
5392 |
-
{
|
5393 |
-
"kind": "webfonts#webfont",
|
5394 |
-
"family": "Hind Siliguri",
|
5395 |
-
"category": "sans-serif",
|
5396 |
-
"variants": [
|
5397 |
-
"300",
|
5398 |
-
"regular",
|
5399 |
-
"500",
|
5400 |
-
"600",
|
5401 |
-
"700"
|
5402 |
-
],
|
5403 |
-
"subsets": [
|
5404 |
-
"latin-ext",
|
5405 |
-
"bengali",
|
5406 |
-
"latin"
|
5407 |
-
],
|
5408 |
-
"version": "v1",
|
5409 |
-
"lastModified": "2015-09-09",
|
5410 |
-
"files": {
|
5411 |
-
"300": "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJnzoJ52uD-1fmXmi8u0n_zsc.ttf",
|
5412 |
-
"regular": "http://fonts.gstatic.com/s/hindsiliguri/v1/f2eEi2pbIa8eBfNwpUl0Am_MnNA9OgK8I1F23mNWOpE.ttf",
|
5413 |
-
"500": "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJn__2zpxNHQ3utWt_82o9dAo.ttf",
|
5414 |
-
"600": "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJn-x91FDzFvnud68bXrNkpDA.ttf",
|
5415 |
-
"700": "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJn6iiXuG_rGcOxkuidirlnJE.ttf"
|
5416 |
-
}
|
5417 |
-
},
|
5418 |
-
{
|
5419 |
-
"kind": "webfonts#webfont",
|
5420 |
-
"family": "Hind Vadodara",
|
5421 |
-
"category": "sans-serif",
|
5422 |
-
"variants": [
|
5423 |
-
"300",
|
5424 |
-
"regular",
|
5425 |
-
"500",
|
5426 |
-
"600",
|
5427 |
-
"700"
|
5428 |
-
],
|
5429 |
-
"subsets": [
|
5430 |
-
"latin-ext",
|
5431 |
-
"gujarati",
|
5432 |
-
"latin"
|
5433 |
-
],
|
5434 |
-
"version": "v1",
|
5435 |
-
"lastModified": "2015-09-09",
|
5436 |
-
"files": {
|
5437 |
-
"300": "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTbDwfZ__Dotj_J8NiWv76DQ.ttf",
|
5438 |
-
"regular": "http://fonts.gstatic.com/s/hindvadodara/v1/9c6KKeibr6NtFqknnNxZB-Dcg5akpSnIcsPhLOFv7l8.ttf",
|
5439 |
-
"500": "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTZzEKvFIU9WyojfbAkhDb6c.ttf",
|
5440 |
-
"600": "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTfgXs2VXrZsRiQ1c96pXZKI.ttf",
|
5441 |
-
"700": "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTYGjoH95IEFGA7BjhXnx_eg.ttf"
|
5442 |
-
}
|
5443 |
-
},
|
5444 |
-
{
|
5445 |
-
"kind": "webfonts#webfont",
|
5446 |
-
"family": "Holtwood One SC",
|
5447 |
-
"category": "serif",
|
5448 |
-
"variants": [
|
5449 |
-
"regular"
|
5450 |
-
],
|
5451 |
-
"subsets": [
|
5452 |
-
"latin"
|
5453 |
-
],
|
5454 |
-
"version": "v7",
|
5455 |
-
"lastModified": "2016-02-23",
|
5456 |
-
"files": {
|
5457 |
-
"regular": "http://fonts.gstatic.com/s/holtwoodonesc/v7/sToOq3cIxbfnhbEkgYNuBbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
5458 |
-
}
|
5459 |
-
},
|
5460 |
-
{
|
5461 |
-
"kind": "webfonts#webfont",
|
5462 |
-
"family": "Homemade Apple",
|
5463 |
-
"category": "handwriting",
|
5464 |
-
"variants": [
|
5465 |
-
"regular"
|
5466 |
-
],
|
5467 |
-
"subsets": [
|
5468 |
-
"latin"
|
5469 |
-
],
|
5470 |
-
"version": "v6",
|
5471 |
-
"lastModified": "2016-02-23",
|
5472 |
-
"files": {
|
5473 |
-
"regular": "http://fonts.gstatic.com/s/homemadeapple/v6/yg3UMEsefgZ8IHz_ryz86BiPOmFWYV1WlrJkRafc4c0.ttf"
|
5474 |
-
}
|
5475 |
-
},
|
5476 |
-
{
|
5477 |
-
"kind": "webfonts#webfont",
|
5478 |
-
"family": "Homenaje",
|
5479 |
-
"category": "sans-serif",
|
5480 |
-
"variants": [
|
5481 |
-
"regular"
|
5482 |
-
],
|
5483 |
-
"subsets": [
|
5484 |
-
"latin-ext",
|
5485 |
-
"latin"
|
5486 |
-
],
|
5487 |
-
"version": "v5",
|
5488 |
-
"lastModified": "2016-02-23",
|
5489 |
-
"files": {
|
5490 |
-
"regular": "http://fonts.gstatic.com/s/homenaje/v5/v0YBU0iBRrGdVjDNQILxtA.ttf"
|
5491 |
-
}
|
5492 |
-
},
|
5493 |
-
{
|
5494 |
-
"kind": "webfonts#webfont",
|
5495 |
-
"family": "IM Fell DW Pica",
|
5496 |
-
"category": "serif",
|
5497 |
-
"variants": [
|
5498 |
-
"regular",
|
5499 |
-
"italic"
|
5500 |
-
],
|
5501 |
-
"subsets": [
|
5502 |
-
"latin"
|
5503 |
-
],
|
5504 |
-
"version": "v6",
|
5505 |
-
"lastModified": "2016-02-23",
|
5506 |
-
"files": {
|
5507 |
-
"regular": "http://fonts.gstatic.com/s/imfelldwpica/v6/W81bfaWiUicLSPbJhW-ATsA5qm663gJGVdtpamafG5A.ttf",
|
5508 |
-
"italic": "http://fonts.gstatic.com/s/imfelldwpica/v6/alQJ8SK5aSOZVaelYoyT4PL2asmh5DlYQYCosKo6yQs.ttf"
|
5509 |
-
}
|
5510 |
-
},
|
5511 |
-
{
|
5512 |
-
"kind": "webfonts#webfont",
|
5513 |
-
"family": "IM Fell DW Pica SC",
|
5514 |
-
"category": "serif",
|
5515 |
-
"variants": [
|
5516 |
-
"regular"
|
5517 |
-
],
|
5518 |
-
"subsets": [
|
5519 |
-
"latin"
|
5520 |
-
],
|
5521 |
-
"version": "v6",
|
5522 |
-
"lastModified": "2016-02-23",
|
5523 |
-
"files": {
|
5524 |
-
"regular": "http://fonts.gstatic.com/s/imfelldwpicasc/v6/xBKKJV4z2KsrtQnmjGO17JZ9RBdEL0H9o5qzT1Rtof4.ttf"
|
5525 |
-
}
|
5526 |
-
},
|
5527 |
-
{
|
5528 |
-
"kind": "webfonts#webfont",
|
5529 |
-
"family": "IM Fell Double Pica",
|
5530 |
-
"category": "serif",
|
5531 |
-
"variants": [
|
5532 |
-
"regular",
|
5533 |
-
"italic"
|
5534 |
-
],
|
5535 |
-
"subsets": [
|
5536 |
-
"latin"
|
5537 |
-
],
|
5538 |
-
"version": "v6",
|
5539 |
-
"lastModified": "2016-02-23",
|
5540 |
-
"files": {
|
5541 |
-
"regular": "http://fonts.gstatic.com/s/imfelldoublepica/v6/yN1wY_01BkQnO0LYAhXdUol14jEdVOhEmvtCMCVwYak.ttf",
|
5542 |
-
"italic": "http://fonts.gstatic.com/s/imfelldoublepica/v6/64odUh2hAw8D9dkFKTlWYq0AWwkgdQfsRHec8TYi4mI.ttf"
|
5543 |
-
}
|
5544 |
-
},
|
5545 |
-
{
|
5546 |
-
"kind": "webfonts#webfont",
|
5547 |
-
"family": "IM Fell Double Pica SC",
|
5548 |
-
"category": "serif",
|
5549 |
-
"variants": [
|
5550 |
-
"regular"
|
5551 |
-
],
|
5552 |
-
"subsets": [
|
5553 |
-
"latin"
|
5554 |
-
],
|
5555 |
-
"version": "v6",
|
5556 |
-
"lastModified": "2016-02-23",
|
5557 |
-
"files": {
|
5558 |
-
"regular": "http://fonts.gstatic.com/s/imfelldoublepicasc/v6/jkrUtrLFpMw4ZazhfkKsGwc4LoC4OJUqLw9omnT3VOU.ttf"
|
5559 |
-
}
|
5560 |
-
},
|
5561 |
-
{
|
5562 |
-
"kind": "webfonts#webfont",
|
5563 |
-
"family": "IM Fell English",
|
5564 |
-
"category": "serif",
|
5565 |
-
"variants": [
|
5566 |
-
"regular",
|
5567 |
-
"italic"
|
5568 |
-
],
|
5569 |
-
"subsets": [
|
5570 |
-
"latin"
|
5571 |
-
],
|
5572 |
-
"version": "v6",
|
5573 |
-
"lastModified": "2016-02-23",
|
5574 |
-
"files": {
|
5575 |
-
"regular": "http://fonts.gstatic.com/s/imfellenglish/v6/xwIisCqGFi8pff-oa9uSVHGNmx1fDm-u2eBJHQkdrmk.ttf",
|
5576 |
-
"italic": "http://fonts.gstatic.com/s/imfellenglish/v6/Z3cnIAI_L3XTRfz4JuZKbuewladMPCWTthtMv9cPS-c.ttf"
|
5577 |
-
}
|
5578 |
-
},
|
5579 |
-
{
|
5580 |
-
"kind": "webfonts#webfont",
|
5581 |
-
"family": "IM Fell English SC",
|
5582 |
-
"category": "serif",
|
5583 |
-
"variants": [
|
5584 |
-
"regular"
|
5585 |
-
],
|
5586 |
-
"subsets": [
|
5587 |
-
"latin"
|
5588 |
-
],
|
5589 |
-
"version": "v6",
|
5590 |
-
"lastModified": "2016-02-23",
|
5591 |
-
"files": {
|
5592 |
-
"regular": "http://fonts.gstatic.com/s/imfellenglishsc/v6/h3Tn6yWfw4b5qaLD1RWvz5ATixNthKRRR1XVH3rJNiw.ttf"
|
5593 |
-
}
|
5594 |
-
},
|
5595 |
-
{
|
5596 |
-
"kind": "webfonts#webfont",
|
5597 |
-
"family": "IM Fell French Canon",
|
5598 |
-
"category": "serif",
|
5599 |
-
"variants": [
|
5600 |
-
"regular",
|
5601 |
-
"italic"
|
5602 |
-
],
|
5603 |
-
"subsets": [
|
5604 |
-
"latin"
|
5605 |
-
],
|
5606 |
-
"version": "v6",
|
5607 |
-
"lastModified": "2016-02-23",
|
5608 |
-
"files": {
|
5609 |
-
"regular": "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/iKB0WL1BagSpNPz3NLMdsJ3V2FNpBrlLSvqUnERhBP8.ttf",
|
5610 |
-
"italic": "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/owCuNQkLLFW7TBBPJbMnhRa-QL94KdW80H29tcyld2A.ttf"
|
5611 |
-
}
|
5612 |
-
},
|
5613 |
-
{
|
5614 |
-
"kind": "webfonts#webfont",
|
5615 |
-
"family": "IM Fell French Canon SC",
|
5616 |
-
"category": "serif",
|
5617 |
-
"variants": [
|
5618 |
-
"regular"
|
5619 |
-
],
|
5620 |
-
"subsets": [
|
5621 |
-
"latin"
|
5622 |
-
],
|
5623 |
-
"version": "v6",
|
5624 |
-
"lastModified": "2016-02-23",
|
5625 |
-
"files": {
|
5626 |
-
"regular": "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v6/kA3bS19-tQbeT_iG32EZmaiyyzHwYrAbmNulTz423iM.ttf"
|
5627 |
-
}
|
5628 |
-
},
|
5629 |
-
{
|
5630 |
-
"kind": "webfonts#webfont",
|
5631 |
-
"family": "IM Fell Great Primer",
|
5632 |
-
"category": "serif",
|
5633 |
-
"variants": [
|
5634 |
-
"regular",
|
5635 |
-
"italic"
|
5636 |
-
],
|
5637 |
-
"subsets": [
|
5638 |
-
"latin"
|
5639 |
-
],
|
5640 |
-
"version": "v6",
|
5641 |
-
"lastModified": "2016-02-23",
|
5642 |
-
"files": {
|
5643 |
-
"regular": "http://fonts.gstatic.com/s/imfellgreatprimer/v6/AL8ALGNthei20f9Cu3e93rgeX3ROgtTz44CitKAxzKI.ttf",
|
5644 |
-
"italic": "http://fonts.gstatic.com/s/imfellgreatprimer/v6/1a-artkXMVg682r7TTxVY1_YG2SFv8Ma7CxRl1S3o7g.ttf"
|
5645 |
-
}
|
5646 |
-
},
|
5647 |
-
{
|
5648 |
-
"kind": "webfonts#webfont",
|
5649 |
-
"family": "IM Fell Great Primer SC",
|
5650 |
-
"category": "serif",
|
5651 |
-
"variants": [
|
5652 |
-
"regular"
|
5653 |
-
],
|
5654 |
-
"subsets": [
|
5655 |
-
"latin"
|
5656 |
-
],
|
5657 |
-
"version": "v6",
|
5658 |
-
"lastModified": "2016-02-23",
|
5659 |
-
"files": {
|
5660 |
-
"regular": "http://fonts.gstatic.com/s/imfellgreatprimersc/v6/A313vRj97hMMGFjt6rgSJtRg-ciw1Y27JeXb2Zv4lZQ.ttf"
|
5661 |
-
}
|
5662 |
-
},
|
5663 |
-
{
|
5664 |
-
"kind": "webfonts#webfont",
|
5665 |
-
"family": "Iceberg",
|
5666 |
-
"category": "display",
|
5667 |
-
"variants": [
|
5668 |
-
"regular"
|
5669 |
-
],
|
5670 |
-
"subsets": [
|
5671 |
-
"latin"
|
5672 |
-
],
|
5673 |
-
"version": "v4",
|
5674 |
-
"lastModified": "2016-02-23",
|
5675 |
-
"files": {
|
5676 |
-
"regular": "http://fonts.gstatic.com/s/iceberg/v4/p2XVm4M-N0AOEEOymFKC5w.ttf"
|
5677 |
-
}
|
5678 |
-
},
|
5679 |
-
{
|
5680 |
-
"kind": "webfonts#webfont",
|
5681 |
-
"family": "Iceland",
|
5682 |
-
"category": "display",
|
5683 |
-
"variants": [
|
5684 |
-
"regular"
|
5685 |
-
],
|
5686 |
-
"subsets": [
|
5687 |
-
"latin"
|
5688 |
-
],
|
5689 |
-
"version": "v5",
|
5690 |
-
"lastModified": "2016-02-23",
|
5691 |
-
"files": {
|
5692 |
-
"regular": "http://fonts.gstatic.com/s/iceland/v5/kq3uTMGgvzWGNi39B_WxGA.ttf"
|
5693 |
-
}
|
5694 |
-
},
|
5695 |
-
{
|
5696 |
-
"kind": "webfonts#webfont",
|
5697 |
-
"family": "Imprima",
|
5698 |
-
"category": "sans-serif",
|
5699 |
-
"variants": [
|
5700 |
-
"regular"
|
5701 |
-
],
|
5702 |
-
"subsets": [
|
5703 |
-
"latin-ext",
|
5704 |
-
"latin"
|
5705 |
-
],
|
5706 |
-
"version": "v4",
|
5707 |
-
"lastModified": "2016-02-23",
|
5708 |
-
"files": {
|
5709 |
-
"regular": "http://fonts.gstatic.com/s/imprima/v4/eRjquWLjwLGnTEhLH7u3kA.ttf"
|
5710 |
-
}
|
5711 |
-
},
|
5712 |
-
{
|
5713 |
-
"kind": "webfonts#webfont",
|
5714 |
-
"family": "Inconsolata",
|
5715 |
-
"category": "monospace",
|
5716 |
-
"variants": [
|
5717 |
-
"regular",
|
5718 |
-
"700"
|
5719 |
-
],
|
5720 |
-
"subsets": [
|
5721 |
-
"latin-ext",
|
5722 |
-
"latin"
|
5723 |
-
],
|
5724 |
-
"version": "v12",
|
5725 |
-
"lastModified": "2016-02-23",
|
5726 |
-
"files": {
|
5727 |
-
"regular": "http://fonts.gstatic.com/s/inconsolata/v12/7bMKuoy6Nh0ft0SHnIGMuaCWcynf_cDxXwCLxiixG1c.ttf",
|
5728 |
-
"700": "http://fonts.gstatic.com/s/inconsolata/v12/AIed271kqQlcIRSOnQH0yXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
5729 |
-
}
|
5730 |
-
},
|
5731 |
-
{
|
5732 |
-
"kind": "webfonts#webfont",
|
5733 |
-
"family": "Inder",
|
5734 |
-
"category": "sans-serif",
|
5735 |
-
"variants": [
|
5736 |
-
"regular"
|
5737 |
-
],
|
5738 |
-
"subsets": [
|
5739 |
-
"latin-ext",
|
5740 |
-
"latin"
|
5741 |
-
],
|
5742 |
-
"version": "v5",
|
5743 |
-
"lastModified": "2016-02-23",
|
5744 |
-
"files": {
|
5745 |
-
"regular": "http://fonts.gstatic.com/s/inder/v5/C38TwecLTfKxIHDc_Adcrw.ttf"
|
5746 |
-
}
|
5747 |
-
},
|
5748 |
-
{
|
5749 |
-
"kind": "webfonts#webfont",
|
5750 |
-
"family": "Indie Flower",
|
5751 |
-
"category": "handwriting",
|
5752 |
-
"variants": [
|
5753 |
-
"regular"
|
5754 |
-
],
|
5755 |
-
"subsets": [
|
5756 |
-
"latin"
|
5757 |
-
],
|
5758 |
-
"version": "v8",
|
5759 |
-
"lastModified": "2016-02-23",
|
5760 |
-
"files": {
|
5761 |
-
"regular": "http://fonts.gstatic.com/s/indieflower/v8/10JVD_humAd5zP2yrFqw6i3USBnSvpkopQaUR-2r7iU.ttf"
|
5762 |
-
}
|
5763 |
-
},
|
5764 |
-
{
|
5765 |
-
"kind": "webfonts#webfont",
|
5766 |
-
"family": "Inika",
|
5767 |
-
"category": "serif",
|
5768 |
-
"variants": [
|
5769 |
-
"regular",
|
5770 |
-
"700"
|
5771 |
-
],
|
5772 |
-
"subsets": [
|
5773 |
-
"latin-ext",
|
5774 |
-
"latin"
|
5775 |
-
],
|
5776 |
-
"version": "v4",
|
5777 |
-
"lastModified": "2016-02-23",
|
5778 |
-
"files": {
|
5779 |
-
"regular": "http://fonts.gstatic.com/s/inika/v4/eZCrULQGaIxkrRoGz_DjhQ.ttf",
|
5780 |
-
"700": "http://fonts.gstatic.com/s/inika/v4/bl3ZoTyrWsFun2zYbsgJrA.ttf"
|
5781 |
-
}
|
5782 |
-
},
|
5783 |
-
{
|
5784 |
-
"kind": "webfonts#webfont",
|
5785 |
-
"family": "Inknut Antiqua",
|
5786 |
-
"category": "serif",
|
5787 |
-
"variants": [
|
5788 |
-
"300",
|
5789 |
-
"regular",
|
5790 |
-
"500",
|
5791 |
-
"600",
|
5792 |
-
"700",
|
5793 |
-
"800",
|
5794 |
-
"900"
|
5795 |
-
],
|
5796 |
-
"subsets": [
|
5797 |
-
"devanagari",
|
5798 |
-
"latin-ext",
|
5799 |
-
"latin"
|
5800 |
-
],
|
5801 |
-
"version": "v1",
|
5802 |
-
"lastModified": "2016-02-23",
|
5803 |
-
"files": {
|
5804 |
-
"300": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIg6hmPNSXwHGnJQCeQHKUMo.ttf",
|
5805 |
-
"regular": "http://fonts.gstatic.com/s/inknutantiqua/v1/VlmmTfOrxr3HfcnhMueX9arFJ4O13IHVxZbM6yoslpo.ttf",
|
5806 |
-
"500": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIiYCDvi1XFzRnTV7qUFsNgk.ttf",
|
5807 |
-
"600": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIjLEgY6PI0GrY6L00mykcEQ.ttf",
|
5808 |
-
"700": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIlRhfXn9P4_QueZ7VkUHUNc.ttf",
|
5809 |
-
"800": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVInARjXVu2t2krcNTHiCb1qY.ttf",
|
5810 |
-
"900": "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIrTsNy1JrFNT1qKy8j7W3CU.ttf"
|
5811 |
-
}
|
5812 |
-
},
|
5813 |
-
{
|
5814 |
-
"kind": "webfonts#webfont",
|
5815 |
-
"family": "Irish Grover",
|
5816 |
-
"category": "display",
|
5817 |
-
"variants": [
|
5818 |
-
"regular"
|
5819 |
-
],
|
5820 |
-
"subsets": [
|
5821 |
-
"latin"
|
5822 |
-
],
|
5823 |
-
"version": "v6",
|
5824 |
-
"lastModified": "2016-02-23",
|
5825 |
-
"files": {
|
5826 |
-
"regular": "http://fonts.gstatic.com/s/irishgrover/v6/kUp7uUPooL-KsLGzeVJbBC3USBnSvpkopQaUR-2r7iU.ttf"
|
5827 |
-
}
|
5828 |
-
},
|
5829 |
-
{
|
5830 |
-
"kind": "webfonts#webfont",
|
5831 |
-
"family": "Istok Web",
|
5832 |
-
"category": "sans-serif",
|
5833 |
-
"variants": [
|
5834 |
-
"regular",
|
5835 |
-
"italic",
|
5836 |
-
"700",
|
5837 |
-
"700italic"
|
5838 |
-
],
|
5839 |
-
"subsets": [
|
5840 |
-
"latin-ext",
|
5841 |
-
"cyrillic-ext",
|
5842 |
-
"cyrillic",
|
5843 |
-
"latin"
|
5844 |
-
],
|
5845 |
-
"version": "v10",
|
5846 |
-
"lastModified": "2016-02-23",
|
5847 |
-
"files": {
|
5848 |
-
"regular": "http://fonts.gstatic.com/s/istokweb/v10/RYLSjEXQ0nNtLLc4n7--dQ.ttf",
|
5849 |
-
"italic": "http://fonts.gstatic.com/s/istokweb/v10/kvcT2SlTjmGbC3YlZxmrl6CWcynf_cDxXwCLxiixG1c.ttf",
|
5850 |
-
"700": "http://fonts.gstatic.com/s/istokweb/v10/2koEo4AKFSvK4B52O_Mwai3USBnSvpkopQaUR-2r7iU.ttf",
|
5851 |
-
"700italic": "http://fonts.gstatic.com/s/istokweb/v10/ycQ3g52ELrh3o_HYCNNUw3e1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
5852 |
-
}
|
5853 |
-
},
|
5854 |
-
{
|
5855 |
-
"kind": "webfonts#webfont",
|
5856 |
-
"family": "Italiana",
|
5857 |
-
"category": "serif",
|
5858 |
-
"variants": [
|
5859 |
-
"regular"
|
5860 |
-
],
|
5861 |
-
"subsets": [
|
5862 |
-
"latin"
|
5863 |
-
],
|
5864 |
-
"version": "v4",
|
5865 |
-
"lastModified": "2016-02-23",
|
5866 |
-
"files": {
|
5867 |
-
"regular": "http://fonts.gstatic.com/s/italiana/v4/dt95fkCSTOF-c6QNjwSycA.ttf"
|
5868 |
-
}
|
5869 |
-
},
|
5870 |
-
{
|
5871 |
-
"kind": "webfonts#webfont",
|
5872 |
-
"family": "Italianno",
|
5873 |
-
"category": "handwriting",
|
5874 |
-
"variants": [
|
5875 |
-
"regular"
|
5876 |
-
],
|
5877 |
-
"subsets": [
|
5878 |
-
"latin-ext",
|
5879 |
-
"latin"
|
5880 |
-
],
|
5881 |
-
"version": "v6",
|
5882 |
-
"lastModified": "2016-02-23",
|
5883 |
-
"files": {
|
5884 |
-
"regular": "http://fonts.gstatic.com/s/italianno/v6/HsyHnLpKf8uP7aMpDQHZmg.ttf"
|
5885 |
-
}
|
5886 |
-
},
|
5887 |
-
{
|
5888 |
-
"kind": "webfonts#webfont",
|
5889 |
-
"family": "Itim",
|
5890 |
-
"category": "handwriting",
|
5891 |
-
"variants": [
|
5892 |
-
"regular"
|
5893 |
-
],
|
5894 |
-
"subsets": [
|
5895 |
-
"latin-ext",
|
5896 |
-
"thai",
|
5897 |
-
"vietnamese",
|
5898 |
-
"latin"
|
5899 |
-
],
|
5900 |
-
"version": "v1",
|
5901 |
-
"lastModified": "2015-08-06",
|
5902 |
-
"files": {
|
5903 |
-
"regular": "http://fonts.gstatic.com/s/itim/v1/HHV9WK2x5lUkc5bxMXG8Tw.ttf"
|
5904 |
-
}
|
5905 |
-
},
|
5906 |
-
{
|
5907 |
-
"kind": "webfonts#webfont",
|
5908 |
-
"family": "Jacques Francois",
|
5909 |
-
"category": "serif",
|
5910 |
-
"variants": [
|
5911 |
-
"regular"
|
5912 |
-
],
|
5913 |
-
"subsets": [
|
5914 |
-
"latin"
|
5915 |
-
],
|
5916 |
-
"version": "v4",
|
5917 |
-
"lastModified": "2016-02-23",
|
5918 |
-
"files": {
|
5919 |
-
"regular": "http://fonts.gstatic.com/s/jacquesfrancois/v4/_-0XWPQIW6tOzTHg4KaJ_M13D_4KM32Q4UmTSjpuNGQ.ttf"
|
5920 |
-
}
|
5921 |
-
},
|
5922 |
-
{
|
5923 |
-
"kind": "webfonts#webfont",
|
5924 |
-
"family": "Jacques Francois Shadow",
|
5925 |
-
"category": "display",
|
5926 |
-
"variants": [
|
5927 |
-
"regular"
|
5928 |
-
],
|
5929 |
-
"subsets": [
|
5930 |
-
"latin"
|
5931 |
-
],
|
5932 |
-
"version": "v4",
|
5933 |
-
"lastModified": "2016-02-23",
|
5934 |
-
"files": {
|
5935 |
-
"regular": "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v4/V14y0H3vq56fY9SV4OL_FASt0D_oLVawA8L8b9iKjbs.ttf"
|
5936 |
-
}
|
5937 |
-
},
|
5938 |
-
{
|
5939 |
-
"kind": "webfonts#webfont",
|
5940 |
-
"family": "Jaldi",
|
5941 |
-
"category": "sans-serif",
|
5942 |
-
"variants": [
|
5943 |
-
"regular",
|
5944 |
-
"700"
|
5945 |
-
],
|
5946 |
-
"subsets": [
|
5947 |
-
"devanagari",
|
5948 |
-
"latin-ext",
|
5949 |
-
"latin"
|
5950 |
-
],
|
5951 |
-
"version": "v2",
|
5952 |
-
"lastModified": "2015-06-10",
|
5953 |
-
"files": {
|
5954 |
-
"regular": "http://fonts.gstatic.com/s/jaldi/v2/x1vR-bPW9a1EB-BUVqttCw.ttf",
|
5955 |
-
"700": "http://fonts.gstatic.com/s/jaldi/v2/OIbtgjjEp3aVWtjF6WY8mA.ttf"
|
5956 |
-
}
|
5957 |
-
},
|
5958 |
-
{
|
5959 |
-
"kind": "webfonts#webfont",
|
5960 |
-
"family": "Jim Nightshade",
|
5961 |
-
"category": "handwriting",
|
5962 |
-
"variants": [
|
5963 |
-
"regular"
|
5964 |
-
],
|
5965 |
-
"subsets": [
|
5966 |
-
"latin-ext",
|
5967 |
-
"latin"
|
5968 |
-
],
|
5969 |
-
"version": "v4",
|
5970 |
-
"lastModified": "2016-02-23",
|
5971 |
-
"files": {
|
5972 |
-
"regular": "http://fonts.gstatic.com/s/jimnightshade/v4/_n43lYHXVWNgXegdYRIK9CF1W_bo0EdycfH0kHciIic.ttf"
|
5973 |
-
}
|
5974 |
-
},
|
5975 |
-
{
|
5976 |
-
"kind": "webfonts#webfont",
|
5977 |
-
"family": "Jockey One",
|
5978 |
-
"category": "sans-serif",
|
5979 |
-
"variants": [
|
5980 |
-
"regular"
|
5981 |
-
],
|
5982 |
-
"subsets": [
|
5983 |
-
"latin-ext",
|
5984 |
-
"latin"
|
5985 |
-
],
|
5986 |
-
"version": "v6",
|
5987 |
-
"lastModified": "2016-02-23",
|
5988 |
-
"files": {
|
5989 |
-
"regular": "http://fonts.gstatic.com/s/jockeyone/v6/cAucnOZLvFo07w2AbufBCfesZW2xOQ-xsNqO47m55DA.ttf"
|
5990 |
-
}
|
5991 |
-
},
|
5992 |
-
{
|
5993 |
-
"kind": "webfonts#webfont",
|
5994 |
-
"family": "Jolly Lodger",
|
5995 |
-
"category": "display",
|
5996 |
-
"variants": [
|
5997 |
-
"regular"
|
5998 |
-
],
|
5999 |
-
"subsets": [
|
6000 |
-
"latin-ext",
|
6001 |
-
"latin"
|
6002 |
-
],
|
6003 |
-
"version": "v4",
|
6004 |
-
"lastModified": "2016-02-23",
|
6005 |
-
"files": {
|
6006 |
-
"regular": "http://fonts.gstatic.com/s/jollylodger/v4/RX8HnkBgaEKQSHQyP9itiS3USBnSvpkopQaUR-2r7iU.ttf"
|
6007 |
-
}
|
6008 |
-
},
|
6009 |
-
{
|
6010 |
-
"kind": "webfonts#webfont",
|
6011 |
-
"family": "Josefin Sans",
|
6012 |
-
"category": "sans-serif",
|
6013 |
-
"variants": [
|
6014 |
-
"100",
|
6015 |
-
"100italic",
|
6016 |
-
"300",
|
6017 |
-
"300italic",
|
6018 |
-
"regular",
|
6019 |
-
"italic",
|
6020 |
-
"600",
|
6021 |
-
"600italic",
|
6022 |
-
"700",
|
6023 |
-
"700italic"
|
6024 |
-
],
|
6025 |
-
"subsets": [
|
6026 |
-
"latin-ext",
|
6027 |
-
"latin"
|
6028 |
-
],
|
6029 |
-
"version": "v9",
|
6030 |
-
"lastModified": "2016-02-23",
|
6031 |
-
"files": {
|
6032 |
-
"100": "http://fonts.gstatic.com/s/josefinsans/v9/q9w3H4aeBxj0hZ8Osfi3d8SVQ0giZ-l_NELu3lgGyYw.ttf",
|
6033 |
-
"100italic": "http://fonts.gstatic.com/s/josefinsans/v9/s7-P1gqRNRNn-YWdOYnAOXXcj1rQwlNLIS625o-SrL0.ttf",
|
6034 |
-
"300": "http://fonts.gstatic.com/s/josefinsans/v9/C6HYlRF50SGJq1XyXj04z6cQoVhARpoaILP7amxE_8g.ttf",
|
6035 |
-
"300italic": "http://fonts.gstatic.com/s/josefinsans/v9/ppse0J9fKSaoxCIIJb33Gyna0FLWfcB-J_SAYmcAXaI.ttf",
|
6036 |
-
"regular": "http://fonts.gstatic.com/s/josefinsans/v9/xgzbb53t8j-Mo-vYa23n5i3USBnSvpkopQaUR-2r7iU.ttf",
|
6037 |
-
"italic": "http://fonts.gstatic.com/s/josefinsans/v9/q9w3H4aeBxj0hZ8Osfi3d_MZXuCXbOrAvx5R0IT5Oyo.ttf",
|
6038 |
-
"600": "http://fonts.gstatic.com/s/josefinsans/v9/C6HYlRF50SGJq1XyXj04z2v8CylhIUtwUiYO7Z2wXbE.ttf",
|
6039 |
-
"600italic": "http://fonts.gstatic.com/s/josefinsans/v9/ppse0J9fKSaoxCIIJb33G4R-5-urNOGAobhAyctHvW8.ttf",
|
6040 |
-
"700": "http://fonts.gstatic.com/s/josefinsans/v9/C6HYlRF50SGJq1XyXj04z0D2ttfZwueP-QU272T9-k4.ttf",
|
6041 |
-
"700italic": "http://fonts.gstatic.com/s/josefinsans/v9/ppse0J9fKSaoxCIIJb33G_As9-1nE9qOqhChW0m4nDE.ttf"
|
6042 |
-
}
|
6043 |
-
},
|
6044 |
-
{
|
6045 |
-
"kind": "webfonts#webfont",
|
6046 |
-
"family": "Josefin Slab",
|
6047 |
-
"category": "serif",
|
6048 |
-
"variants": [
|
6049 |
-
"100",
|
6050 |
-
"100italic",
|
6051 |
-
"300",
|
6052 |
-
"300italic",
|
6053 |
-
"regular",
|
6054 |
-
"italic",
|
6055 |
-
"600",
|
6056 |
-
"600italic",
|
6057 |
-
"700",
|
6058 |
-
"700italic"
|
6059 |
-
],
|
6060 |
-
"subsets": [
|
6061 |
-
"latin"
|
6062 |
-
],
|
6063 |
-
"version": "v6",
|
6064 |
-
"lastModified": "2016-02-23",
|
6065 |
-
"files": {
|
6066 |
-
"100": "http://fonts.gstatic.com/s/josefinslab/v6/etsUjZYO8lTLU85lDhZwUsSVQ0giZ-l_NELu3lgGyYw.ttf",
|
6067 |
-
"100italic": "http://fonts.gstatic.com/s/josefinslab/v6/8BjDChqLgBF3RJKfwHIYh3Xcj1rQwlNLIS625o-SrL0.ttf",
|
6068 |
-
"300": "http://fonts.gstatic.com/s/josefinslab/v6/NbE6ykYuM2IyEwxQxOIi2KcQoVhARpoaILP7amxE_8g.ttf",
|
6069 |
-
"300italic": "http://fonts.gstatic.com/s/josefinslab/v6/af9sBoKGPbGO0r21xJulyyna0FLWfcB-J_SAYmcAXaI.ttf",
|
6070 |
-
"regular": "http://fonts.gstatic.com/s/josefinslab/v6/46aYWdgz-1oFX11flmyEfS3USBnSvpkopQaUR-2r7iU.ttf",
|
6071 |
-
"italic": "http://fonts.gstatic.com/s/josefinslab/v6/etsUjZYO8lTLU85lDhZwUvMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
6072 |
-
"600": "http://fonts.gstatic.com/s/josefinslab/v6/NbE6ykYuM2IyEwxQxOIi2Gv8CylhIUtwUiYO7Z2wXbE.ttf",
|
6073 |
-
"600italic": "http://fonts.gstatic.com/s/josefinslab/v6/af9sBoKGPbGO0r21xJuly4R-5-urNOGAobhAyctHvW8.ttf",
|
6074 |
-
"700": "http://fonts.gstatic.com/s/josefinslab/v6/NbE6ykYuM2IyEwxQxOIi2ED2ttfZwueP-QU272T9-k4.ttf",
|
6075 |
-
"700italic": "http://fonts.gstatic.com/s/josefinslab/v6/af9sBoKGPbGO0r21xJuly_As9-1nE9qOqhChW0m4nDE.ttf"
|
6076 |
-
}
|
6077 |
-
},
|
6078 |
-
{
|
6079 |
-
"kind": "webfonts#webfont",
|
6080 |
-
"family": "Joti One",
|
6081 |
-
"category": "display",
|
6082 |
-
"variants": [
|
6083 |
-
"regular"
|
6084 |
-
],
|
6085 |
-
"subsets": [
|
6086 |
-
"latin-ext",
|
6087 |
-
"latin"
|
6088 |
-
],
|
6089 |
-
"version": "v4",
|
6090 |
-
"lastModified": "2016-02-23",
|
6091 |
-
"files": {
|
6092 |
-
"regular": "http://fonts.gstatic.com/s/jotione/v4/P3r_Th0ESHJdzunsvWgUfQ.ttf"
|
6093 |
-
}
|
6094 |
-
},
|
6095 |
-
{
|
6096 |
-
"kind": "webfonts#webfont",
|
6097 |
-
"family": "Judson",
|
6098 |
-
"category": "serif",
|
6099 |
-
"variants": [
|
6100 |
-
"regular",
|
6101 |
-
"italic",
|
6102 |
-
"700"
|
6103 |
-
],
|
6104 |
-
"subsets": [
|
6105 |
-
"latin-ext",
|
6106 |
-
"vietnamese",
|
6107 |
-
"latin"
|
6108 |
-
],
|
6109 |
-
"version": "v9",
|
6110 |
-
"lastModified": "2016-02-23",
|
6111 |
-
"files": {
|
6112 |
-
"regular": "http://fonts.gstatic.com/s/judson/v9/znM1AAs0eytUaJzf1CrYZQ.ttf",
|
6113 |
-
"italic": "http://fonts.gstatic.com/s/judson/v9/GVqQW9P52ygW-ySq-CLwAA.ttf",
|
6114 |
-
"700": "http://fonts.gstatic.com/s/judson/v9/he4a2LwiPJc7r8x0oKCKiA.ttf"
|
6115 |
-
}
|
6116 |
-
},
|
6117 |
-
{
|
6118 |
-
"kind": "webfonts#webfont",
|
6119 |
-
"family": "Julee",
|
6120 |
-
"category": "handwriting",
|
6121 |
-
"variants": [
|
6122 |
-
"regular"
|
6123 |
-
],
|
6124 |
-
"subsets": [
|
6125 |
-
"latin"
|
6126 |
-
],
|
6127 |
-
"version": "v6",
|
6128 |
-
"lastModified": "2016-02-23",
|
6129 |
-
"files": {
|
6130 |
-
"regular": "http://fonts.gstatic.com/s/julee/v6/CAib-jsUsSO8SvVRnE9fHA.ttf"
|
6131 |
-
}
|
6132 |
-
},
|
6133 |
-
{
|
6134 |
-
"kind": "webfonts#webfont",
|
6135 |
-
"family": "Julius Sans One",
|
6136 |
-
"category": "sans-serif",
|
6137 |
-
"variants": [
|
6138 |
-
"regular"
|
6139 |
-
],
|
6140 |
-
"subsets": [
|
6141 |
-
"latin-ext",
|
6142 |
-
"latin"
|
6143 |
-
],
|
6144 |
-
"version": "v5",
|
6145 |
-
"lastModified": "2016-02-23",
|
6146 |
-
"files": {
|
6147 |
-
"regular": "http://fonts.gstatic.com/s/juliussansone/v5/iU65JP9acQHPDLkdalCF7jjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
6148 |
-
}
|
6149 |
-
},
|
6150 |
-
{
|
6151 |
-
"kind": "webfonts#webfont",
|
6152 |
-
"family": "Junge",
|
6153 |
-
"category": "serif",
|
6154 |
-
"variants": [
|
6155 |
-
"regular"
|
6156 |
-
],
|
6157 |
-
"subsets": [
|
6158 |
-
"latin"
|
6159 |
-
],
|
6160 |
-
"version": "v4",
|
6161 |
-
"lastModified": "2016-02-23",
|
6162 |
-
"files": {
|
6163 |
-
"regular": "http://fonts.gstatic.com/s/junge/v4/j4IXCXtxrw9qIBheercp3A.ttf"
|
6164 |
-
}
|
6165 |
-
},
|
6166 |
-
{
|
6167 |
-
"kind": "webfonts#webfont",
|
6168 |
-
"family": "Jura",
|
6169 |
-
"category": "sans-serif",
|
6170 |
-
"variants": [
|
6171 |
-
"300",
|
6172 |
-
"regular",
|
6173 |
-
"500",
|
6174 |
-
"600"
|
6175 |
-
],
|
6176 |
-
"subsets": [
|
6177 |
-
"latin-ext",
|
6178 |
-
"cyrillic-ext",
|
6179 |
-
"cyrillic",
|
6180 |
-
"greek",
|
6181 |
-
"latin"
|
6182 |
-
],
|
6183 |
-
"version": "v7",
|
6184 |
-
"lastModified": "2016-02-23",
|
6185 |
-
"files": {
|
6186 |
-
"300": "http://fonts.gstatic.com/s/jura/v7/Rqx_xy1UnN0C7wD3FUSyPQ.ttf",
|
6187 |
-
"regular": "http://fonts.gstatic.com/s/jura/v7/YAWMwF3sN0KCbynMq-Yr_Q.ttf",
|
6188 |
-
"500": "http://fonts.gstatic.com/s/jura/v7/16xhfjHCiaLj3tsqqgmtGg.ttf",
|
6189 |
-
"600": "http://fonts.gstatic.com/s/jura/v7/iwseduOwJSdY8wQ1Y6CJdA.ttf"
|
6190 |
-
}
|
6191 |
-
},
|
6192 |
-
{
|
6193 |
-
"kind": "webfonts#webfont",
|
6194 |
-
"family": "Just Another Hand",
|
6195 |
-
"category": "handwriting",
|
6196 |
-
"variants": [
|
6197 |
-
"regular"
|
6198 |
-
],
|
6199 |
-
"subsets": [
|
6200 |
-
"latin"
|
6201 |
-
],
|
6202 |
-
"version": "v7",
|
6203 |
-
"lastModified": "2016-02-23",
|
6204 |
-
"files": {
|
6205 |
-
"regular": "http://fonts.gstatic.com/s/justanotherhand/v7/fKV8XYuRNNagXr38eqbRf99BnJIEGrvoojniP57E51c.ttf"
|
6206 |
-
}
|
6207 |
-
},
|
6208 |
-
{
|
6209 |
-
"kind": "webfonts#webfont",
|
6210 |
-
"family": "Just Me Again Down Here",
|
6211 |
-
"category": "handwriting",
|
6212 |
-
"variants": [
|
6213 |
-
"regular"
|
6214 |
-
],
|
6215 |
-
"subsets": [
|
6216 |
-
"latin-ext",
|
6217 |
-
"latin"
|
6218 |
-
],
|
6219 |
-
"version": "v8",
|
6220 |
-
"lastModified": "2016-02-23",
|
6221 |
-
"files": {
|
6222 |
-
"regular": "http://fonts.gstatic.com/s/justmeagaindownhere/v8/sN06iTc9ITubLTgXoG-kc3M9eVLpVTSK6TqZTIgBrWQ.ttf"
|
6223 |
-
}
|
6224 |
-
},
|
6225 |
-
{
|
6226 |
-
"kind": "webfonts#webfont",
|
6227 |
-
"family": "Kadwa",
|
6228 |
-
"category": "serif",
|
6229 |
-
"variants": [
|
6230 |
-
"regular",
|
6231 |
-
"700"
|
6232 |
-
],
|
6233 |
-
"subsets": [
|
6234 |
-
"devanagari",
|
6235 |
-
"latin"
|
6236 |
-
],
|
6237 |
-
"version": "v1",
|
6238 |
-
"lastModified": "2015-06-17",
|
6239 |
-
"files": {
|
6240 |
-
"regular": "http://fonts.gstatic.com/s/kadwa/v1/VwEN8oKGqaa0ug9kRpvSSg.ttf",
|
6241 |
-
"700": "http://fonts.gstatic.com/s/kadwa/v1/NFPZaBfekj_Io-7vUMz4Ww.ttf"
|
6242 |
-
}
|
6243 |
-
},
|
6244 |
-
{
|
6245 |
-
"kind": "webfonts#webfont",
|
6246 |
-
"family": "Kalam",
|
6247 |
-
"category": "handwriting",
|
6248 |
-
"variants": [
|
6249 |
-
"300",
|
6250 |
-
"regular",
|
6251 |
-
"700"
|
6252 |
-
],
|
6253 |
-
"subsets": [
|
6254 |
-
"devanagari",
|
6255 |
-
"latin-ext",
|
6256 |
-
"latin"
|
6257 |
-
],
|
6258 |
-
"version": "v7",
|
6259 |
-
"lastModified": "2016-02-23",
|
6260 |
-
"files": {
|
6261 |
-
"300": "http://fonts.gstatic.com/s/kalam/v7/MgQQlk1SgPEHdlkWMNh7Jg.ttf",
|
6262 |
-
"regular": "http://fonts.gstatic.com/s/kalam/v7/hNEJkp2K-aql7e5WQish4Q.ttf",
|
6263 |
-
"700": "http://fonts.gstatic.com/s/kalam/v7/95nLItUGyWtNLZjSckluLQ.ttf"
|
6264 |
-
}
|
6265 |
-
},
|
6266 |
-
{
|
6267 |
-
"kind": "webfonts#webfont",
|
6268 |
-
"family": "Kameron",
|
6269 |
-
"category": "serif",
|
6270 |
-
"variants": [
|
6271 |
-
"regular",
|
6272 |
-
"700"
|
6273 |
-
],
|
6274 |
-
"subsets": [
|
6275 |
-
"latin"
|
6276 |
-
],
|
6277 |
-
"version": "v7",
|
6278 |
-
"lastModified": "2016-02-23",
|
6279 |
-
"files": {
|
6280 |
-
"regular": "http://fonts.gstatic.com/s/kameron/v7/9r8HYhqDSwcq9WMjupL82A.ttf",
|
6281 |
-
"700": "http://fonts.gstatic.com/s/kameron/v7/rabVVbzlflqvmXJUFlKnu_esZW2xOQ-xsNqO47m55DA.ttf"
|
6282 |
-
}
|
6283 |
-
},
|
6284 |
-
{
|
6285 |
-
"kind": "webfonts#webfont",
|
6286 |
-
"family": "Kanit",
|
6287 |
-
"category": "sans-serif",
|
6288 |
-
"variants": [
|
6289 |
-
"100",
|
6290 |
-
"100italic",
|
6291 |
-
"200",
|
6292 |
-
"200italic",
|
6293 |
-
"300",
|
6294 |
-
"300italic",
|
6295 |
-
"regular",
|
6296 |
-
"italic",
|
6297 |
-
"500",
|
6298 |
-
"500italic",
|
6299 |
-
"600",
|
6300 |
-
"600italic",
|
6301 |
-
"700",
|
6302 |
-
"700italic",
|
6303 |
-
"800",
|
6304 |
-
"800italic",
|
6305 |
-
"900",
|
6306 |
-
"900italic"
|
6307 |
-
],
|
6308 |
-
"subsets": [
|
6309 |
-
"latin-ext",
|
6310 |
-
"thai",
|
6311 |
-
"vietnamese",
|
6312 |
-
"latin"
|
6313 |
-
],
|
6314 |
-
"version": "v1",
|
6315 |
-
"lastModified": "2015-12-10",
|
6316 |
-
"files": {
|
6317 |
-
"100": "http://fonts.gstatic.com/s/kanit/v1/CYl4qOK-NWwZp3iTKW1eIA.ttf",
|
6318 |
-
"100italic": "http://fonts.gstatic.com/s/kanit/v1/NLNtc56MpXmHl1yOrop8oQ.ttf",
|
6319 |
-
"200": "http://fonts.gstatic.com/s/kanit/v1/wfLWkj1C4tYl7MoiFWS3bA.ttf",
|
6320 |
-
"200italic": "http://fonts.gstatic.com/s/kanit/v1/D8gkrAAM2bvNJ-1i4ot-1_esZW2xOQ-xsNqO47m55DA.ttf",
|
6321 |
-
"300": "http://fonts.gstatic.com/s/kanit/v1/SM5qHynYGdOmMKEwGUFIPA.ttf",
|
6322 |
-
"300italic": "http://fonts.gstatic.com/s/kanit/v1/IePislKOKy3Bqfpb9V5VM_esZW2xOQ-xsNqO47m55DA.ttf",
|
6323 |
-
"regular": "http://fonts.gstatic.com/s/kanit/v1/L6VKvM17ZmevDynOiw7H9w.ttf",
|
6324 |
-
"italic": "http://fonts.gstatic.com/s/kanit/v1/sHLq5U0-T0oSMTnwTKgv-A.ttf",
|
6325 |
-
"500": "http://fonts.gstatic.com/s/kanit/v1/GxoU_USIJyIy8WIcYSUO2g.ttf",
|
6326 |
-
"500italic": "http://fonts.gstatic.com/s/kanit/v1/hrCiWCaNv9AaF0mDY1F2zPesZW2xOQ-xsNqO47m55DA.ttf",
|
6327 |
-
"600": "http://fonts.gstatic.com/s/kanit/v1/n_qoIVxojeQY0D1pvoNDhA.ttf",
|
6328 |
-
"600italic": "http://fonts.gstatic.com/s/kanit/v1/9BkP85yRDoVayTWQwdGLqPesZW2xOQ-xsNqO47m55DA.ttf",
|
6329 |
-
"700": "http://fonts.gstatic.com/s/kanit/v1/kEGmYvO8My36j5ILmbUPRg.ttf",
|
6330 |
-
"700italic": "http://fonts.gstatic.com/s/kanit/v1/WNo3ZZ9xtOZJknNlvHAFWfesZW2xOQ-xsNqO47m55DA.ttf",
|
6331 |
-
"800": "http://fonts.gstatic.com/s/kanit/v1/YTp-zAuKXxwnA1YnJIF1rg.ttf",
|
6332 |
-
"800italic": "http://fonts.gstatic.com/s/kanit/v1/qiTGrW5sCa9UQp841fWjc_esZW2xOQ-xsNqO47m55DA.ttf",
|
6333 |
-
"900": "http://fonts.gstatic.com/s/kanit/v1/1NIEkusi3bG3GgO9Hor3fQ.ttf",
|
6334 |
-
"900italic": "http://fonts.gstatic.com/s/kanit/v1/ogN5dFD1r4BfxNV4Nb-TXfesZW2xOQ-xsNqO47m55DA.ttf"
|
6335 |
-
}
|
6336 |
-
},
|
6337 |
-
{
|
6338 |
-
"kind": "webfonts#webfont",
|
6339 |
-
"family": "Kantumruy",
|
6340 |
-
"category": "sans-serif",
|
6341 |
-
"variants": [
|
6342 |
-
"300",
|
6343 |
-
"regular",
|
6344 |
-
"700"
|
6345 |
-
],
|
6346 |
-
"subsets": [
|
6347 |
-
"khmer"
|
6348 |
-
],
|
6349 |
-
"version": "v3",
|
6350 |
-
"lastModified": "2015-04-03",
|
6351 |
-
"files": {
|
6352 |
-
"300": "http://fonts.gstatic.com/s/kantumruy/v3/ERRwQE0WG5uanaZWmOFXNi3USBnSvpkopQaUR-2r7iU.ttf",
|
6353 |
-
"regular": "http://fonts.gstatic.com/s/kantumruy/v3/kQfXNYElQxr5dS8FyjD39Q.ttf",
|
6354 |
-
"700": "http://fonts.gstatic.com/s/kantumruy/v3/gie_zErpGf_rNzs920C2Ji3USBnSvpkopQaUR-2r7iU.ttf"
|
6355 |
-
}
|
6356 |
-
},
|
6357 |
-
{
|
6358 |
-
"kind": "webfonts#webfont",
|
6359 |
-
"family": "Karla",
|
6360 |
-
"category": "sans-serif",
|
6361 |
-
"variants": [
|
6362 |
-
"regular",
|
6363 |
-
"italic",
|
6364 |
-
"700",
|
6365 |
-
"700italic"
|
6366 |
-
],
|
6367 |
-
"subsets": [
|
6368 |
-
"latin-ext",
|
6369 |
-
"latin"
|
6370 |
-
],
|
6371 |
-
"version": "v5",
|
6372 |
-
"lastModified": "2016-02-23",
|
6373 |
-
"files": {
|
6374 |
-
"regular": "http://fonts.gstatic.com/s/karla/v5/78UgGRwJFkhqaoFimqoKpQ.ttf",
|
6375 |
-
"italic": "http://fonts.gstatic.com/s/karla/v5/51UBKly9RQOnOkj95ZwEFw.ttf",
|
6376 |
-
"700": "http://fonts.gstatic.com/s/karla/v5/JS501sZLxZ4zraLQdncOUA.ttf",
|
6377 |
-
"700italic": "http://fonts.gstatic.com/s/karla/v5/3YDyi09gQjCRh-5-SVhTTvesZW2xOQ-xsNqO47m55DA.ttf"
|
6378 |
-
}
|
6379 |
-
},
|
6380 |
-
{
|
6381 |
-
"kind": "webfonts#webfont",
|
6382 |
-
"family": "Karma",
|
6383 |
-
"category": "serif",
|
6384 |
-
"variants": [
|
6385 |
-
"300",
|
6386 |
-
"regular",
|
6387 |
-
"500",
|
6388 |
-
"600",
|
6389 |
-
"700"
|
6390 |
-
],
|
6391 |
-
"subsets": [
|
6392 |
-
"devanagari",
|
6393 |
-
"latin-ext",
|
6394 |
-
"latin"
|
6395 |
-
],
|
6396 |
-
"version": "v5",
|
6397 |
-
"lastModified": "2016-02-23",
|
6398 |
-
"files": {
|
6399 |
-
"300": "http://fonts.gstatic.com/s/karma/v5/lH6ijJnguWR2Sz7tEl6MQQ.ttf",
|
6400 |
-
"regular": "http://fonts.gstatic.com/s/karma/v5/wvqTxAGBUrTqU0urTEoPIw.ttf",
|
6401 |
-
"500": "http://fonts.gstatic.com/s/karma/v5/9YGjxi6Hcvz2Kh-rzO_cAw.ttf",
|
6402 |
-
"600": "http://fonts.gstatic.com/s/karma/v5/h_CVzXXtqSxjfS2sIwaejA.ttf",
|
6403 |
-
"700": "http://fonts.gstatic.com/s/karma/v5/smuSM08oApsQPPVYbHd1CA.ttf"
|
6404 |
-
}
|
6405 |
-
},
|
6406 |
-
{
|
6407 |
-
"kind": "webfonts#webfont",
|
6408 |
-
"family": "Kaushan Script",
|
6409 |
-
"category": "handwriting",
|
6410 |
-
"variants": [
|
6411 |
-
"regular"
|
6412 |
-
],
|
6413 |
-
"subsets": [
|
6414 |
-
"latin-ext",
|
6415 |
-
"latin"
|
6416 |
-
],
|
6417 |
-
"version": "v4",
|
6418 |
-
"lastModified": "2016-02-23",
|
6419 |
-
"files": {
|
6420 |
-
"regular": "http://fonts.gstatic.com/s/kaushanscript/v4/qx1LSqts-NtiKcLw4N03IBnpV0hQCek3EmWnCPrvGRM.ttf"
|
6421 |
-
}
|
6422 |
-
},
|
6423 |
-
{
|
6424 |
-
"kind": "webfonts#webfont",
|
6425 |
-
"family": "Kavoon",
|
6426 |
-
"category": "display",
|
6427 |
-
"variants": [
|
6428 |
-
"regular"
|
6429 |
-
],
|
6430 |
-
"subsets": [
|
6431 |
-
"latin-ext",
|
6432 |
-
"latin"
|
6433 |
-
],
|
6434 |
-
"version": "v5",
|
6435 |
-
"lastModified": "2016-02-24",
|
6436 |
-
"files": {
|
6437 |
-
"regular": "http://fonts.gstatic.com/s/kavoon/v5/382m-6baKXqJFQjEgobt6Q.ttf"
|
6438 |
-
}
|
6439 |
-
},
|
6440 |
-
{
|
6441 |
-
"kind": "webfonts#webfont",
|
6442 |
-
"family": "Kdam Thmor",
|
6443 |
-
"category": "display",
|
6444 |
-
"variants": [
|
6445 |
-
"regular"
|
6446 |
-
],
|
6447 |
-
"subsets": [
|
6448 |
-
"khmer"
|
6449 |
-
],
|
6450 |
-
"version": "v3",
|
6451 |
-
"lastModified": "2015-04-06",
|
6452 |
-
"files": {
|
6453 |
-
"regular": "http://fonts.gstatic.com/s/kdamthmor/v3/otCdP6UU-VBIrBfVDWBQJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
6454 |
-
}
|
6455 |
-
},
|
6456 |
-
{
|
6457 |
-
"kind": "webfonts#webfont",
|
6458 |
-
"family": "Keania One",
|
6459 |
-
"category": "display",
|
6460 |
-
"variants": [
|
6461 |
-
"regular"
|
6462 |
-
],
|
6463 |
-
"subsets": [
|
6464 |
-
"latin-ext",
|
6465 |
-
"latin"
|
6466 |
-
],
|
6467 |
-
"version": "v4",
|
6468 |
-
"lastModified": "2016-02-23",
|
6469 |
-
"files": {
|
6470 |
-
"regular": "http://fonts.gstatic.com/s/keaniaone/v4/PACrDKZWngXzgo-ucl6buvesZW2xOQ-xsNqO47m55DA.ttf"
|
6471 |
-
}
|
6472 |
-
},
|
6473 |
-
{
|
6474 |
-
"kind": "webfonts#webfont",
|
6475 |
-
"family": "Kelly Slab",
|
6476 |
-
"category": "display",
|
6477 |
-
"variants": [
|
6478 |
-
"regular"
|
6479 |
-
],
|
6480 |
-
"subsets": [
|
6481 |
-
"latin-ext",
|
6482 |
-
"cyrillic",
|
6483 |
-
"latin"
|
6484 |
-
],
|
6485 |
-
"version": "v6",
|
6486 |
-
"lastModified": "2016-02-23",
|
6487 |
-
"files": {
|
6488 |
-
"regular": "http://fonts.gstatic.com/s/kellyslab/v6/F_2oS1e9XdYx1MAi8XEVefesZW2xOQ-xsNqO47m55DA.ttf"
|
6489 |
-
}
|
6490 |
-
},
|
6491 |
-
{
|
6492 |
-
"kind": "webfonts#webfont",
|
6493 |
-
"family": "Kenia",
|
6494 |
-
"category": "display",
|
6495 |
-
"variants": [
|
6496 |
-
"regular"
|
6497 |
-
],
|
6498 |
-
"subsets": [
|
6499 |
-
"latin"
|
6500 |
-
],
|
6501 |
-
"version": "v8",
|
6502 |
-
"lastModified": "2016-02-23",
|
6503 |
-
"files": {
|
6504 |
-
"regular": "http://fonts.gstatic.com/s/kenia/v8/OLM9-XfITK9PsTLKbGBrwg.ttf"
|
6505 |
-
}
|
6506 |
-
},
|
6507 |
-
{
|
6508 |
-
"kind": "webfonts#webfont",
|
6509 |
-
"family": "Khand",
|
6510 |
-
"category": "sans-serif",
|
6511 |
-
"variants": [
|
6512 |
-
"300",
|
6513 |
-
"regular",
|
6514 |
-
"500",
|
6515 |
-
"600",
|
6516 |
-
"700"
|
6517 |
-
],
|
6518 |
-
"subsets": [
|
6519 |
-
"devanagari",
|
6520 |
-
"latin-ext",
|
6521 |
-
"latin"
|
6522 |
-
],
|
6523 |
-
"version": "v4",
|
6524 |
-
"lastModified": "2016-02-23",
|
6525 |
-
"files": {
|
6526 |
-
"300": "http://fonts.gstatic.com/s/khand/v4/072zRl4OU9Pinjjkg174LA.ttf",
|
6527 |
-
"regular": "http://fonts.gstatic.com/s/khand/v4/HdLdTNFqNIDGJZl1ZEj84w.ttf",
|
6528 |
-
"500": "http://fonts.gstatic.com/s/khand/v4/46_p-SqtuMe56nxQdteWxg.ttf",
|
6529 |
-
"600": "http://fonts.gstatic.com/s/khand/v4/zggGWYIiPJyMTgkfxP_kaA.ttf",
|
6530 |
-
"700": "http://fonts.gstatic.com/s/khand/v4/0I0UWaN-X5QBmfexpXKhqg.ttf"
|
6531 |
-
}
|
6532 |
-
},
|
6533 |
-
{
|
6534 |
-
"kind": "webfonts#webfont",
|
6535 |
-
"family": "Khmer",
|
6536 |
-
"category": "display",
|
6537 |
-
"variants": [
|
6538 |
-
"regular"
|
6539 |
-
],
|
6540 |
-
"subsets": [
|
6541 |
-
"khmer"
|
6542 |
-
],
|
6543 |
-
"version": "v9",
|
6544 |
-
"lastModified": "2015-04-06",
|
6545 |
-
"files": {
|
6546 |
-
"regular": "http://fonts.gstatic.com/s/khmer/v9/vWaBJIbaQuBNz02ALIKJ3A.ttf"
|
6547 |
-
}
|
6548 |
-
},
|
6549 |
-
{
|
6550 |
-
"kind": "webfonts#webfont",
|
6551 |
-
"family": "Khula",
|
6552 |
-
"category": "sans-serif",
|
6553 |
-
"variants": [
|
6554 |
-
"300",
|
6555 |
-
"regular",
|
6556 |
-
"600",
|
6557 |
-
"700",
|
6558 |
-
"800"
|
6559 |
-
],
|
6560 |
-
"subsets": [
|
6561 |
-
"devanagari",
|
6562 |
-
"latin-ext",
|
6563 |
-
"latin"
|
6564 |
-
],
|
6565 |
-
"version": "v1",
|
6566 |
-
"lastModified": "2016-02-23",
|
6567 |
-
"files": {
|
6568 |
-
"300": "http://fonts.gstatic.com/s/khula/v1/_1LySU5Upq-sc4OZ1b_GIw.ttf",
|
6569 |
-
"regular": "http://fonts.gstatic.com/s/khula/v1/izcPIFyCSd16XI1Ak_Wk7Q.ttf",
|
6570 |
-
"600": "http://fonts.gstatic.com/s/khula/v1/4ZH86Hce-aeFDaedTnbkbg.ttf",
|
6571 |
-
"700": "http://fonts.gstatic.com/s/khula/v1/UGVExGl-Jjs-YPpGv-MZ6w.ttf",
|
6572 |
-
"800": "http://fonts.gstatic.com/s/khula/v1/Sccp_oOo8FWgbx5smie7xQ.ttf"
|
6573 |
-
}
|
6574 |
-
},
|
6575 |
-
{
|
6576 |
-
"kind": "webfonts#webfont",
|
6577 |
-
"family": "Kite One",
|
6578 |
-
"category": "sans-serif",
|
6579 |
-
"variants": [
|
6580 |
-
"regular"
|
6581 |
-
],
|
6582 |
-
"subsets": [
|
6583 |
-
"latin"
|
6584 |
-
],
|
6585 |
-
"version": "v4",
|
6586 |
-
"lastModified": "2016-02-23",
|
6587 |
-
"files": {
|
6588 |
-
"regular": "http://fonts.gstatic.com/s/kiteone/v4/8ojWmgUc97m0f_i6sTqLoQ.ttf"
|
6589 |
-
}
|
6590 |
-
},
|
6591 |
-
{
|
6592 |
-
"kind": "webfonts#webfont",
|
6593 |
-
"family": "Knewave",
|
6594 |
-
"category": "display",
|
6595 |
-
"variants": [
|
6596 |
-
"regular"
|
6597 |
-
],
|
6598 |
-
"subsets": [
|
6599 |
-
"latin-ext",
|
6600 |
-
"latin"
|
6601 |
-
],
|
6602 |
-
"version": "v5",
|
6603 |
-
"lastModified": "2016-02-23",
|
6604 |
-
"files": {
|
6605 |
-
"regular": "http://fonts.gstatic.com/s/knewave/v5/KGHM4XWr4iKnBMqzZLkPBg.ttf"
|
6606 |
-
}
|
6607 |
-
},
|
6608 |
-
{
|
6609 |
-
"kind": "webfonts#webfont",
|
6610 |
-
"family": "Kotta One",
|
6611 |
-
"category": "serif",
|
6612 |
-
"variants": [
|
6613 |
-
"regular"
|
6614 |
-
],
|
6615 |
-
"subsets": [
|
6616 |
-
"latin-ext",
|
6617 |
-
"latin"
|
6618 |
-
],
|
6619 |
-
"version": "v4",
|
6620 |
-
"lastModified": "2016-02-23",
|
6621 |
-
"files": {
|
6622 |
-
"regular": "http://fonts.gstatic.com/s/kottaone/v4/AB2Q7hVw6niJYDgLvFXu5w.ttf"
|
6623 |
-
}
|
6624 |
-
},
|
6625 |
-
{
|
6626 |
-
"kind": "webfonts#webfont",
|
6627 |
-
"family": "Koulen",
|
6628 |
-
"category": "display",
|
6629 |
-
"variants": [
|
6630 |
-
"regular"
|
6631 |
-
],
|
6632 |
-
"subsets": [
|
6633 |
-
"khmer"
|
6634 |
-
],
|
6635 |
-
"version": "v10",
|
6636 |
-
"lastModified": "2015-04-06",
|
6637 |
-
"files": {
|
6638 |
-
"regular": "http://fonts.gstatic.com/s/koulen/v10/AAYOK8RSRO7FTskTzFuzNw.ttf"
|
6639 |
-
}
|
6640 |
-
},
|
6641 |
-
{
|
6642 |
-
"kind": "webfonts#webfont",
|
6643 |
-
"family": "Kranky",
|
6644 |
-
"category": "display",
|
6645 |
-
"variants": [
|
6646 |
-
"regular"
|
6647 |
-
],
|
6648 |
-
"subsets": [
|
6649 |
-
"latin"
|
6650 |
-
],
|
6651 |
-
"version": "v6",
|
6652 |
-
"lastModified": "2016-02-23",
|
6653 |
-
"files": {
|
6654 |
-
"regular": "http://fonts.gstatic.com/s/kranky/v6/C8dxxTS99-fZ84vWk8SDrg.ttf"
|
6655 |
-
}
|
6656 |
-
},
|
6657 |
-
{
|
6658 |
-
"kind": "webfonts#webfont",
|
6659 |
-
"family": "Kreon",
|
6660 |
-
"category": "serif",
|
6661 |
-
"variants": [
|
6662 |
-
"300",
|
6663 |
-
"regular",
|
6664 |
-
"700"
|
6665 |
-
],
|
6666 |
-
"subsets": [
|
6667 |
-
"latin"
|
6668 |
-
],
|
6669 |
-
"version": "v9",
|
6670 |
-
"lastModified": "2016-02-23",
|
6671 |
-
"files": {
|
6672 |
-
"300": "http://fonts.gstatic.com/s/kreon/v9/HKtJRiq5C2zbq5N1IX32sA.ttf",
|
6673 |
-
"regular": "http://fonts.gstatic.com/s/kreon/v9/zA_IZt0u0S3cvHJu-n1oEg.ttf",
|
6674 |
-
"700": "http://fonts.gstatic.com/s/kreon/v9/jh0dSmaPodjxISiblIUTkw.ttf"
|
6675 |
-
}
|
6676 |
-
},
|
6677 |
-
{
|
6678 |
-
"kind": "webfonts#webfont",
|
6679 |
-
"family": "Kristi",
|
6680 |
-
"category": "handwriting",
|
6681 |
-
"variants": [
|
6682 |
-
"regular"
|
6683 |
-
],
|
6684 |
-
"subsets": [
|
6685 |
-
"latin"
|
6686 |
-
],
|
6687 |
-
"version": "v7",
|
6688 |
-
"lastModified": "2016-02-23",
|
6689 |
-
"files": {
|
6690 |
-
"regular": "http://fonts.gstatic.com/s/kristi/v7/aRsgBQrkQkMlu4UPSnJyOQ.ttf"
|
6691 |
-
}
|
6692 |
-
},
|
6693 |
-
{
|
6694 |
-
"kind": "webfonts#webfont",
|
6695 |
-
"family": "Krona One",
|
6696 |
-
"category": "sans-serif",
|
6697 |
-
"variants": [
|
6698 |
-
"regular"
|
6699 |
-
],
|
6700 |
-
"subsets": [
|
6701 |
-
"latin-ext",
|
6702 |
-
"latin"
|
6703 |
-
],
|
6704 |
-
"version": "v4",
|
6705 |
-
"lastModified": "2016-02-23",
|
6706 |
-
"files": {
|
6707 |
-
"regular": "http://fonts.gstatic.com/s/kronaone/v4/zcQj4ljqTo166AdourlF9w.ttf"
|
6708 |
-
}
|
6709 |
-
},
|
6710 |
-
{
|
6711 |
-
"kind": "webfonts#webfont",
|
6712 |
-
"family": "Kurale",
|
6713 |
-
"category": "serif",
|
6714 |
-
"variants": [
|
6715 |
-
"regular"
|
6716 |
-
],
|
6717 |
-
"subsets": [
|
6718 |
-
"devanagari",
|
6719 |
-
"latin-ext",
|
6720 |
-
"cyrillic",
|
6721 |
-
"latin"
|
6722 |
-
],
|
6723 |
-
"version": "v1",
|
6724 |
-
"lastModified": "2015-05-14",
|
6725 |
-
"files": {
|
6726 |
-
"regular": "http://fonts.gstatic.com/s/kurale/v1/rxeyIcvQlT4XAWwNbXFCfw.ttf"
|
6727 |
-
}
|
6728 |
-
},
|
6729 |
-
{
|
6730 |
-
"kind": "webfonts#webfont",
|
6731 |
-
"family": "La Belle Aurore",
|
6732 |
-
"category": "handwriting",
|
6733 |
-
"variants": [
|
6734 |
-
"regular"
|
6735 |
-
],
|
6736 |
-
"subsets": [
|
6737 |
-
"latin"
|
6738 |
-
],
|
6739 |
-
"version": "v7",
|
6740 |
-
"lastModified": "2016-02-23",
|
6741 |
-
"files": {
|
6742 |
-
"regular": "http://fonts.gstatic.com/s/labelleaurore/v7/Irdbc4ASuUoWDjd_Wc3md123K2iuuhwZgaKapkyRTY8.ttf"
|
6743 |
-
}
|
6744 |
-
},
|
6745 |
-
{
|
6746 |
-
"kind": "webfonts#webfont",
|
6747 |
-
"family": "Laila",
|
6748 |
-
"category": "serif",
|
6749 |
-
"variants": [
|
6750 |
-
"300",
|
6751 |
-
"regular",
|
6752 |
-
"500",
|
6753 |
-
"600",
|
6754 |
-
"700"
|
6755 |
-
],
|
6756 |
-
"subsets": [
|
6757 |
-
"devanagari",
|
6758 |
-
"latin-ext",
|
6759 |
-
"latin"
|
6760 |
-
],
|
6761 |
-
"version": "v2",
|
6762 |
-
"lastModified": "2016-03-14",
|
6763 |
-
"files": {
|
6764 |
-
"300": "http://fonts.gstatic.com/s/laila/v2/bLbIVEZF3IWSZ-in72GJvA.ttf",
|
6765 |
-
"regular": "http://fonts.gstatic.com/s/laila/v2/6iYor3edprH7360qtBGoag.ttf",
|
6766 |
-
"500": "http://fonts.gstatic.com/s/laila/v2/tkf8VtFvW9g3VsxQCA6WOQ.ttf",
|
6767 |
-
"600": "http://fonts.gstatic.com/s/laila/v2/3EMP2L6JRQ4GaHIxCldCeA.ttf",
|
6768 |
-
"700": "http://fonts.gstatic.com/s/laila/v2/R7P4z1xjcjecmjZ9GyhqHQ.ttf"
|
6769 |
-
}
|
6770 |
-
},
|
6771 |
-
{
|
6772 |
-
"kind": "webfonts#webfont",
|
6773 |
-
"family": "Lakki Reddy",
|
6774 |
-
"category": "handwriting",
|
6775 |
-
"variants": [
|
6776 |
-
"regular"
|
6777 |
-
],
|
6778 |
-
"subsets": [
|
6779 |
-
"telugu",
|
6780 |
-
"latin"
|
6781 |
-
],
|
6782 |
-
"version": "v3",
|
6783 |
-
"lastModified": "2016-02-23",
|
6784 |
-
"files": {
|
6785 |
-
"regular": "http://fonts.gstatic.com/s/lakkireddy/v3/Q5EpFa91FjW37t0FCnedaKCWcynf_cDxXwCLxiixG1c.ttf"
|
6786 |
-
}
|
6787 |
-
},
|
6788 |
-
{
|
6789 |
-
"kind": "webfonts#webfont",
|
6790 |
-
"family": "Lancelot",
|
6791 |
-
"category": "display",
|
6792 |
-
"variants": [
|
6793 |
-
"regular"
|
6794 |
-
],
|
6795 |
-
"subsets": [
|
6796 |
-
"latin-ext",
|
6797 |
-
"latin"
|
6798 |
-
],
|
6799 |
-
"version": "v6",
|
6800 |
-
"lastModified": "2016-02-23",
|
6801 |
-
"files": {
|
6802 |
-
"regular": "http://fonts.gstatic.com/s/lancelot/v6/XMT7T_oo_MQUGAnU2v-sdA.ttf"
|
6803 |
-
}
|
6804 |
-
},
|
6805 |
-
{
|
6806 |
-
"kind": "webfonts#webfont",
|
6807 |
-
"family": "Lateef",
|
6808 |
-
"category": "handwriting",
|
6809 |
-
"variants": [
|
6810 |
-
"regular"
|
6811 |
-
],
|
6812 |
-
"subsets": [
|
6813 |
-
"arabic",
|
6814 |
-
"latin"
|
6815 |
-
],
|
6816 |
-
"version": "v10",
|
6817 |
-
"lastModified": "2016-02-23",
|
6818 |
-
"files": {
|
6819 |
-
"regular": "http://fonts.gstatic.com/s/lateef/v10/PAsKCgi1qc7XPwvzo_I-DQ.ttf"
|
6820 |
-
}
|
6821 |
-
},
|
6822 |
-
{
|
6823 |
-
"kind": "webfonts#webfont",
|
6824 |
-
"family": "Lato",
|
6825 |
-
"category": "sans-serif",
|
6826 |
-
"variants": [
|
6827 |
-
"100",
|
6828 |
-
"100italic",
|
6829 |
-
"300",
|
6830 |
-
"300italic",
|
6831 |
-
"regular",
|
6832 |
-
"italic",
|
6833 |
-
"700",
|
6834 |
-
"700italic",
|
6835 |
-
"900",
|
6836 |
-
"900italic"
|
6837 |
-
],
|
6838 |
-
"subsets": [
|
6839 |
-
"latin-ext",
|
6840 |
-
"latin"
|
6841 |
-
],
|
6842 |
-
"version": "v11",
|
6843 |
-
"lastModified": "2016-02-23",
|
6844 |
-
"files": {
|
6845 |
-
"100": "http://fonts.gstatic.com/s/lato/v11/Upp-ka9rLQmHYCsFgwL-eg.ttf",
|
6846 |
-
"100italic": "http://fonts.gstatic.com/s/lato/v11/zLegi10uS_9-fnUDISl0KA.ttf",
|
6847 |
-
"300": "http://fonts.gstatic.com/s/lato/v11/Ja02qOppOVq9jeRjWekbHg.ttf",
|
6848 |
-
"300italic": "http://fonts.gstatic.com/s/lato/v11/dVebFcn7EV7wAKwgYestUg.ttf",
|
6849 |
-
"regular": "http://fonts.gstatic.com/s/lato/v11/h7rISIcQapZBpei-sXwIwg.ttf",
|
6850 |
-
"italic": "http://fonts.gstatic.com/s/lato/v11/P_dJOFJylV3A870UIOtr0w.ttf",
|
6851 |
-
"700": "http://fonts.gstatic.com/s/lato/v11/iX_QxBBZLhNj5JHlTzHQzg.ttf",
|
6852 |
-
"700italic": "http://fonts.gstatic.com/s/lato/v11/WFcZakHrrCKeUJxHA4T_gw.ttf",
|
6853 |
-
"900": "http://fonts.gstatic.com/s/lato/v11/8TPEV6NbYWZlNsXjbYVv7w.ttf",
|
6854 |
-
"900italic": "http://fonts.gstatic.com/s/lato/v11/draWperrI7n2xi35Cl08fA.ttf"
|
6855 |
-
}
|
6856 |
-
},
|
6857 |
-
{
|
6858 |
-
"kind": "webfonts#webfont",
|
6859 |
-
"family": "League Script",
|
6860 |
-
"category": "handwriting",
|
6861 |
-
"variants": [
|
6862 |
-
"regular"
|
6863 |
-
],
|
6864 |
-
"subsets": [
|
6865 |
-
"latin"
|
6866 |
-
],
|
6867 |
-
"version": "v7",
|
6868 |
-
"lastModified": "2016-02-23",
|
6869 |
-
"files": {
|
6870 |
-
"regular": "http://fonts.gstatic.com/s/leaguescript/v7/wnRFLvfabWK_DauqppD6vSeUSrabuTpOsMEiRLtKwk0.ttf"
|
6871 |
-
}
|
6872 |
-
},
|
6873 |
-
{
|
6874 |
-
"kind": "webfonts#webfont",
|
6875 |
-
"family": "Leckerli One",
|
6876 |
-
"category": "handwriting",
|
6877 |
-
"variants": [
|
6878 |
-
"regular"
|
6879 |
-
],
|
6880 |
-
"subsets": [
|
6881 |
-
"latin"
|
6882 |
-
],
|
6883 |
-
"version": "v7",
|
6884 |
-
"lastModified": "2016-02-23",
|
6885 |
-
"files": {
|
6886 |
-
"regular": "http://fonts.gstatic.com/s/leckerlione/v7/S2Y_iLrItTu8kIJTkS7DrC3USBnSvpkopQaUR-2r7iU.ttf"
|
6887 |
-
}
|
6888 |
-
},
|
6889 |
-
{
|
6890 |
-
"kind": "webfonts#webfont",
|
6891 |
-
"family": "Ledger",
|
6892 |
-
"category": "serif",
|
6893 |
-
"variants": [
|
6894 |
-
"regular"
|
6895 |
-
],
|
6896 |
-
"subsets": [
|
6897 |
-
"latin-ext",
|
6898 |
-
"cyrillic",
|
6899 |
-
"latin"
|
6900 |
-
],
|
6901 |
-
"version": "v4",
|
6902 |
-
"lastModified": "2016-02-23",
|
6903 |
-
"files": {
|
6904 |
-
"regular": "http://fonts.gstatic.com/s/ledger/v4/G432jp-tahOfWHbCYkI0jw.ttf"
|
6905 |
-
}
|
6906 |
-
},
|
6907 |
-
{
|
6908 |
-
"kind": "webfonts#webfont",
|
6909 |
-
"family": "Lekton",
|
6910 |
-
"category": "sans-serif",
|
6911 |
-
"variants": [
|
6912 |
-
"regular",
|
6913 |
-
"italic",
|
6914 |
-
"700"
|
6915 |
-
],
|
6916 |
-
"subsets": [
|
6917 |
-
"latin-ext",
|
6918 |
-
"latin"
|
6919 |
-
],
|
6920 |
-
"version": "v7",
|
6921 |
-
"lastModified": "2016-02-23",
|
6922 |
-
"files": {
|
6923 |
-
"regular": "http://fonts.gstatic.com/s/lekton/v7/r483JYmxf5PjIm4jVAm8Yg.ttf",
|
6924 |
-
"italic": "http://fonts.gstatic.com/s/lekton/v7/_UbDIPBA1wDqSbhp-OED7A.ttf",
|
6925 |
-
"700": "http://fonts.gstatic.com/s/lekton/v7/WZw-uL8WTkx3SBVfTlevXQ.ttf"
|
6926 |
-
}
|
6927 |
-
},
|
6928 |
-
{
|
6929 |
-
"kind": "webfonts#webfont",
|
6930 |
-
"family": "Lemon",
|
6931 |
-
"category": "display",
|
6932 |
-
"variants": [
|
6933 |
-
"regular"
|
6934 |
-
],
|
6935 |
-
"subsets": [
|
6936 |
-
"latin"
|
6937 |
-
],
|
6938 |
-
"version": "v5",
|
6939 |
-
"lastModified": "2016-02-23",
|
6940 |
-
"files": {
|
6941 |
-
"regular": "http://fonts.gstatic.com/s/lemon/v5/wed1nNu4LNSu-3RoRVUhUw.ttf"
|
6942 |
-
}
|
6943 |
-
},
|
6944 |
-
{
|
6945 |
-
"kind": "webfonts#webfont",
|
6946 |
-
"family": "Libre Baskerville",
|
6947 |
-
"category": "serif",
|
6948 |
-
"variants": [
|
6949 |
-
"regular",
|
6950 |
-
"italic",
|
6951 |
-
"700"
|
6952 |
-
],
|
6953 |
-
"subsets": [
|
6954 |
-
"latin-ext",
|
6955 |
-
"latin"
|
6956 |
-
],
|
6957 |
-
"version": "v4",
|
6958 |
-
"lastModified": "2016-02-23",
|
6959 |
-
"files": {
|
6960 |
-
"regular": "http://fonts.gstatic.com/s/librebaskerville/v4/pR0sBQVcY0JZc_ciXjFsKyyZRYCSvpCzQKuMWnP5NDY.ttf",
|
6961 |
-
"italic": "http://fonts.gstatic.com/s/librebaskerville/v4/QHIOz1iKF3bIEzRdDFaf5QnhapNS5Oi8FPrBRDLbsW4.ttf",
|
6962 |
-
"700": "http://fonts.gstatic.com/s/librebaskerville/v4/kH7K4InNTm7mmOXXjrA5v-xuswJKUVpBRfYFpz0W3Iw.ttf"
|
6963 |
-
}
|
6964 |
-
},
|
6965 |
-
{
|
6966 |
-
"kind": "webfonts#webfont",
|
6967 |
-
"family": "Life Savers",
|
6968 |
-
"category": "display",
|
6969 |
-
"variants": [
|
6970 |
-
"regular",
|
6971 |
-
"700"
|
6972 |
-
],
|
6973 |
-
"subsets": [
|
6974 |
-
"latin-ext",
|
6975 |
-
"latin"
|
6976 |
-
],
|
6977 |
-
"version": "v6",
|
6978 |
-
"lastModified": "2016-02-23",
|
6979 |
-
"files": {
|
6980 |
-
"regular": "http://fonts.gstatic.com/s/lifesavers/v6/g49cUDk4Y1P0G5NMkMAm7qCWcynf_cDxXwCLxiixG1c.ttf",
|
6981 |
-
"700": "http://fonts.gstatic.com/s/lifesavers/v6/THQKqChyYUm97rNPVFdGGXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
6982 |
-
}
|
6983 |
-
},
|
6984 |
-
{
|
6985 |
-
"kind": "webfonts#webfont",
|
6986 |
-
"family": "Lilita One",
|
6987 |
-
"category": "display",
|
6988 |
-
"variants": [
|
6989 |
-
"regular"
|
6990 |
-
],
|
6991 |
-
"subsets": [
|
6992 |
-
"latin-ext",
|
6993 |
-
"latin"
|
6994 |
-
],
|
6995 |
-
"version": "v4",
|
6996 |
-
"lastModified": "2016-02-23",
|
6997 |
-
"files": {
|
6998 |
-
"regular": "http://fonts.gstatic.com/s/lilitaone/v4/vTxJQjbNV6BCBHx8sGDCVvesZW2xOQ-xsNqO47m55DA.ttf"
|
6999 |
-
}
|
7000 |
-
},
|
7001 |
-
{
|
7002 |
-
"kind": "webfonts#webfont",
|
7003 |
-
"family": "Lily Script One",
|
7004 |
-
"category": "display",
|
7005 |
-
"variants": [
|
7006 |
-
"regular"
|
7007 |
-
],
|
7008 |
-
"subsets": [
|
7009 |
-
"latin-ext",
|
7010 |
-
"latin"
|
7011 |
-
],
|
7012 |
-
"version": "v4",
|
7013 |
-
"lastModified": "2016-02-23",
|
7014 |
-
"files": {
|
7015 |
-
"regular": "http://fonts.gstatic.com/s/lilyscriptone/v4/uPWsLVW8uiXqIBnE8ZwGPDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
7016 |
-
}
|
7017 |
-
},
|
7018 |
-
{
|
7019 |
-
"kind": "webfonts#webfont",
|
7020 |
-
"family": "Limelight",
|
7021 |
-
"category": "display",
|
7022 |
-
"variants": [
|
7023 |
-
"regular"
|
7024 |
-
],
|
7025 |
-
"subsets": [
|
7026 |
-
"latin-ext",
|
7027 |
-
"latin"
|
7028 |
-
],
|
7029 |
-
"version": "v7",
|
7030 |
-
"lastModified": "2016-02-23",
|
7031 |
-
"files": {
|
7032 |
-
"regular": "http://fonts.gstatic.com/s/limelight/v7/5dTfN6igsXjLjOy8QQShcg.ttf"
|
7033 |
-
}
|
7034 |
-
},
|
7035 |
-
{
|
7036 |
-
"kind": "webfonts#webfont",
|
7037 |
-
"family": "Linden Hill",
|
7038 |
-
"category": "serif",
|
7039 |
-
"variants": [
|
7040 |
-
"regular",
|
7041 |
-
"italic"
|
7042 |
-
],
|
7043 |
-
"subsets": [
|
7044 |
-
"latin"
|
7045 |
-
],
|
7046 |
-
"version": "v6",
|
7047 |
-
"lastModified": "2016-02-23",
|
7048 |
-
"files": {
|
7049 |
-
"regular": "http://fonts.gstatic.com/s/lindenhill/v6/UgsC0txqd-E1yjvjutwm_KCWcynf_cDxXwCLxiixG1c.ttf",
|
7050 |
-
"italic": "http://fonts.gstatic.com/s/lindenhill/v6/OcS3bZcu8vJvIDH8Zic83keOrDcLawS7-ssYqLr2Xp4.ttf"
|
7051 |
-
}
|
7052 |
-
},
|
7053 |
-
{
|
7054 |
-
"kind": "webfonts#webfont",
|
7055 |
-
"family": "Lobster",
|
7056 |
-
"category": "display",
|
7057 |
-
"variants": [
|
7058 |
-
"regular"
|
7059 |
-
],
|
7060 |
-
"subsets": [
|
7061 |
-
"latin-ext",
|
7062 |
-
"vietnamese",
|
7063 |
-
"cyrillic",
|
7064 |
-
"latin"
|
7065 |
-
],
|
7066 |
-
"version": "v16",
|
7067 |
-
"lastModified": "2016-02-23",
|
7068 |
-
"files": {
|
7069 |
-
"regular": "http://fonts.gstatic.com/s/lobster/v16/9LpJGtNuM1D8FAZ2BkJH2Q.ttf"
|
7070 |
-
}
|
7071 |
-
},
|
7072 |
-
{
|
7073 |
-
"kind": "webfonts#webfont",
|
7074 |
-
"family": "Lobster Two",
|
7075 |
-
"category": "display",
|
7076 |
-
"variants": [
|
7077 |
-
"regular",
|
7078 |
-
"italic",
|
7079 |
-
"700",
|
7080 |
-
"700italic"
|
7081 |
-
],
|
7082 |
-
"subsets": [
|
7083 |
-
"latin"
|
7084 |
-
],
|
7085 |
-
"version": "v8",
|
7086 |
-
"lastModified": "2016-02-23",
|
7087 |
-
"files": {
|
7088 |
-
"regular": "http://fonts.gstatic.com/s/lobstertwo/v8/xb9aY4w9ceh8JRzobID1naCWcynf_cDxXwCLxiixG1c.ttf",
|
7089 |
-
"italic": "http://fonts.gstatic.com/s/lobstertwo/v8/Ul_16MSbfayQv1I4QhLEoEeOrDcLawS7-ssYqLr2Xp4.ttf",
|
7090 |
-
"700": "http://fonts.gstatic.com/s/lobstertwo/v8/bmdxOflBqMqjEC0-kGsIiHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
7091 |
-
"700italic": "http://fonts.gstatic.com/s/lobstertwo/v8/LEkN2_no_6kFvRfiBZ8xpM_zJjSACmk0BRPxQqhnNLU.ttf"
|
7092 |
-
}
|
7093 |
-
},
|
7094 |
-
{
|
7095 |
-
"kind": "webfonts#webfont",
|
7096 |
-
"family": "Londrina Outline",
|
7097 |
-
"category": "display",
|
7098 |
-
"variants": [
|
7099 |
-
"regular"
|
7100 |
-
],
|
7101 |
-
"subsets": [
|
7102 |
-
"latin"
|
7103 |
-
],
|
7104 |
-
"version": "v5",
|
7105 |
-
"lastModified": "2016-02-23",
|
7106 |
-
"files": {
|
7107 |
-
"regular": "http://fonts.gstatic.com/s/londrinaoutline/v5/lls08GOa1eT74p072l1AWJmp8DTZ6iHear7UV05iykg.ttf"
|
7108 |
-
}
|
7109 |
-
},
|
7110 |
-
{
|
7111 |
-
"kind": "webfonts#webfont",
|
7112 |
-
"family": "Londrina Shadow",
|
7113 |
-
"category": "display",
|
7114 |
-
"variants": [
|
7115 |
-
"regular"
|
7116 |
-
],
|
7117 |
-
"subsets": [
|
7118 |
-
"latin"
|
7119 |
-
],
|
7120 |
-
"version": "v4",
|
7121 |
-
"lastModified": "2016-02-23",
|
7122 |
-
"files": {
|
7123 |
-
"regular": "http://fonts.gstatic.com/s/londrinashadow/v4/dNYuzPS_7eYgXFJBzMoKdbw6Z3rVA5KDSi7aQxS92Nk.ttf"
|
7124 |
-
}
|
7125 |
-
},
|
7126 |
-
{
|
7127 |
-
"kind": "webfonts#webfont",
|
7128 |
-
"family": "Londrina Sketch",
|
7129 |
-
"category": "display",
|
7130 |
-
"variants": [
|
7131 |
-
"regular"
|
7132 |
-
],
|
7133 |
-
"subsets": [
|
7134 |
-
"latin"
|
7135 |
-
],
|
7136 |
-
"version": "v4",
|
7137 |
-
"lastModified": "2016-02-23",
|
7138 |
-
"files": {
|
7139 |
-
"regular": "http://fonts.gstatic.com/s/londrinasketch/v4/p7Ai06aT1Ycp_D2fyE3z69d6z_uhFGnpCOifUY1fJQo.ttf"
|
7140 |
-
}
|
7141 |
-
},
|
7142 |
-
{
|
7143 |
-
"kind": "webfonts#webfont",
|
7144 |
-
"family": "Londrina Solid",
|
7145 |
-
"category": "display",
|
7146 |
-
"variants": [
|
7147 |
-
"regular"
|
7148 |
-
],
|
7149 |
-
"subsets": [
|
7150 |
-
"latin"
|
7151 |
-
],
|
7152 |
-
"version": "v4",
|
7153 |
-
"lastModified": "2016-02-23",
|
7154 |
-
"files": {
|
7155 |
-
"regular": "http://fonts.gstatic.com/s/londrinasolid/v4/yysorIEiYSBb0ylZjg791MR125CwGqh8XBqkBzea0LA.ttf"
|
7156 |
-
}
|
7157 |
-
},
|
7158 |
-
{
|
7159 |
-
"kind": "webfonts#webfont",
|
7160 |
-
"family": "Lora",
|
7161 |
-
"category": "serif",
|
7162 |
-
"variants": [
|
7163 |
-
"regular",
|
7164 |
-
"italic",
|
7165 |
-
"700",
|
7166 |
-
"700italic"
|
7167 |
-
],
|
7168 |
-
"subsets": [
|
7169 |
-
"latin-ext",
|
7170 |
-
"cyrillic",
|
7171 |
-
"latin"
|
7172 |
-
],
|
7173 |
-
"version": "v9",
|
7174 |
-
"lastModified": "2016-02-23",
|
7175 |
-
"files": {
|
7176 |
-
"regular": "http://fonts.gstatic.com/s/lora/v9/aXJ7KVIGcejEy1abawZazg.ttf",
|
7177 |
-
"italic": "http://fonts.gstatic.com/s/lora/v9/AN2EZaj2tFRpyveuNn9BOg.ttf",
|
7178 |
-
"700": "http://fonts.gstatic.com/s/lora/v9/enKND5SfzQKkggBA_VnT1A.ttf",
|
7179 |
-
"700italic": "http://fonts.gstatic.com/s/lora/v9/ivs9j3kYU65pR9QD9YFdzQ.ttf"
|
7180 |
-
}
|
7181 |
-
},
|
7182 |
-
{
|
7183 |
-
"kind": "webfonts#webfont",
|
7184 |
-
"family": "Love Ya Like A Sister",
|
7185 |
-
"category": "display",
|
7186 |
-
"variants": [
|
7187 |
-
"regular"
|
7188 |
-
],
|
7189 |
-
"subsets": [
|
7190 |
-
"latin"
|
7191 |
-
],
|
7192 |
-
"version": "v7",
|
7193 |
-
"lastModified": "2016-02-23",
|
7194 |
-
"files": {
|
7195 |
-
"regular": "http://fonts.gstatic.com/s/loveyalikeasister/v7/LzkxWS-af0Br2Sk_YgSJY-ad1xEP8DQfgfY8MH9aBUg.ttf"
|
7196 |
-
}
|
7197 |
-
},
|
7198 |
-
{
|
7199 |
-
"kind": "webfonts#webfont",
|
7200 |
-
"family": "Loved by the King",
|
7201 |
-
"category": "handwriting",
|
7202 |
-
"variants": [
|
7203 |
-
"regular"
|
7204 |
-
],
|
7205 |
-
"subsets": [
|
7206 |
-
"latin"
|
7207 |
-
],
|
7208 |
-
"version": "v6",
|
7209 |
-
"lastModified": "2016-02-23",
|
7210 |
-
"files": {
|
7211 |
-
"regular": "http://fonts.gstatic.com/s/lovedbytheking/v6/wg03xD4cWigj4YDufLBSr8io2AFEwwMpu7y5KyiyAJc.ttf"
|
7212 |
-
}
|
7213 |
-
},
|
7214 |
-
{
|
7215 |
-
"kind": "webfonts#webfont",
|
7216 |
-
"family": "Lovers Quarrel",
|
7217 |
-
"category": "handwriting",
|
7218 |
-
"variants": [
|
7219 |
-
"regular"
|
7220 |
-
],
|
7221 |
-
"subsets": [
|
7222 |
-
"latin-ext",
|
7223 |
-
"latin"
|
7224 |
-
],
|
7225 |
-
"version": "v4",
|
7226 |
-
"lastModified": "2016-02-23",
|
7227 |
-
"files": {
|
7228 |
-
"regular": "http://fonts.gstatic.com/s/loversquarrel/v4/gipdZ8b7pKb89MzQLAtJHLHLxci2ElvNEmOB303HLk0.ttf"
|
7229 |
-
}
|
7230 |
-
},
|
7231 |
-
{
|
7232 |
-
"kind": "webfonts#webfont",
|
7233 |
-
"family": "Luckiest Guy",
|
7234 |
-
"category": "display",
|
7235 |
-
"variants": [
|
7236 |
-
"regular"
|
7237 |
-
],
|
7238 |
-
"subsets": [
|
7239 |
-
"latin"
|
7240 |
-
],
|
7241 |
-
"version": "v6",
|
7242 |
-
"lastModified": "2016-02-23",
|
7243 |
-
"files": {
|
7244 |
-
"regular": "http://fonts.gstatic.com/s/luckiestguy/v6/5718gH8nDy3hFVihOpkY5C3USBnSvpkopQaUR-2r7iU.ttf"
|
7245 |
-
}
|
7246 |
-
},
|
7247 |
-
{
|
7248 |
-
"kind": "webfonts#webfont",
|
7249 |
-
"family": "Lusitana",
|
7250 |
-
"category": "serif",
|
7251 |
-
"variants": [
|
7252 |
-
"regular",
|
7253 |
-
"700"
|
7254 |
-
],
|
7255 |
-
"subsets": [
|
7256 |
-
"latin"
|
7257 |
-
],
|
7258 |
-
"version": "v4",
|
7259 |
-
"lastModified": "2016-02-23",
|
7260 |
-
"files": {
|
7261 |
-
"regular": "http://fonts.gstatic.com/s/lusitana/v4/l1h9VDomkwbdzbPdmLcUIw.ttf",
|
7262 |
-
"700": "http://fonts.gstatic.com/s/lusitana/v4/GWtZyUsONxgkdl3Mc1P7FKCWcynf_cDxXwCLxiixG1c.ttf"
|
7263 |
-
}
|
7264 |
-
},
|
7265 |
-
{
|
7266 |
-
"kind": "webfonts#webfont",
|
7267 |
-
"family": "Lustria",
|
7268 |
-
"category": "serif",
|
7269 |
-
"variants": [
|
7270 |
-
"regular"
|
7271 |
-
],
|
7272 |
-
"subsets": [
|
7273 |
-
"latin"
|
7274 |
-
],
|
7275 |
-
"version": "v4",
|
7276 |
-
"lastModified": "2016-02-23",
|
7277 |
-
"files": {
|
7278 |
-
"regular": "http://fonts.gstatic.com/s/lustria/v4/gXAk0s4ai0X-TAOhYzZd1w.ttf"
|
7279 |
-
}
|
7280 |
-
},
|
7281 |
-
{
|
7282 |
-
"kind": "webfonts#webfont",
|
7283 |
-
"family": "Macondo",
|
7284 |
-
"category": "display",
|
7285 |
-
"variants": [
|
7286 |
-
"regular"
|
7287 |
-
],
|
7288 |
-
"subsets": [
|
7289 |
-
"latin"
|
7290 |
-
],
|
7291 |
-
"version": "v5",
|
7292 |
-
"lastModified": "2016-02-23",
|
7293 |
-
"files": {
|
7294 |
-
"regular": "http://fonts.gstatic.com/s/macondo/v5/G6yPNUscRPQ8ufBXs_8yRQ.ttf"
|
7295 |
-
}
|
7296 |
-
},
|
7297 |
-
{
|
7298 |
-
"kind": "webfonts#webfont",
|
7299 |
-
"family": "Macondo Swash Caps",
|
7300 |
-
"category": "display",
|
7301 |
-
"variants": [
|
7302 |
-
"regular"
|
7303 |
-
],
|
7304 |
-
"subsets": [
|
7305 |
-
"latin"
|
7306 |
-
],
|
7307 |
-
"version": "v4",
|
7308 |
-
"lastModified": "2016-02-23",
|
7309 |
-
"files": {
|
7310 |
-
"regular": "http://fonts.gstatic.com/s/macondoswashcaps/v4/SsSR706z-MlvEH7_LS6JAPkkgYRHs6GSG949m-K6x2k.ttf"
|
7311 |
-
}
|
7312 |
-
},
|
7313 |
-
{
|
7314 |
-
"kind": "webfonts#webfont",
|
7315 |
-
"family": "Magra",
|
7316 |
-
"category": "sans-serif",
|
7317 |
-
"variants": [
|
7318 |
-
"regular",
|
7319 |
-
"700"
|
7320 |
-
],
|
7321 |
-
"subsets": [
|
7322 |
-
"latin-ext",
|
7323 |
-
"latin"
|
7324 |
-
],
|
7325 |
-
"version": "v4",
|
7326 |
-
"lastModified": "2016-02-23",
|
7327 |
-
"files": {
|
7328 |
-
"regular": "http://fonts.gstatic.com/s/magra/v4/hoZ13bwCXBxuGZqAudgc5A.ttf",
|
7329 |
-
"700": "http://fonts.gstatic.com/s/magra/v4/6fOM5sq5cIn8D0RjX8Lztw.ttf"
|
7330 |
-
}
|
7331 |
-
},
|
7332 |
-
{
|
7333 |
-
"kind": "webfonts#webfont",
|
7334 |
-
"family": "Maiden Orange",
|
7335 |
-
"category": "display",
|
7336 |
-
"variants": [
|
7337 |
-
"regular"
|
7338 |
-
],
|
7339 |
-
"subsets": [
|
7340 |
-
"latin"
|
7341 |
-
],
|
7342 |
-
"version": "v6",
|
7343 |
-
"lastModified": "2016-02-23",
|
7344 |
-
"files": {
|
7345 |
-
"regular": "http://fonts.gstatic.com/s/maidenorange/v6/ZhKIA2SPisEwdhW7g0RUWojjx0o0jr6fNXxPgYh_a8Q.ttf"
|
7346 |
-
}
|
7347 |
-
},
|
7348 |
-
{
|
7349 |
-
"kind": "webfonts#webfont",
|
7350 |
-
"family": "Mako",
|
7351 |
-
"category": "sans-serif",
|
7352 |
-
"variants": [
|
7353 |
-
"regular"
|
7354 |
-
],
|
7355 |
-
"subsets": [
|
7356 |
-
"latin"
|
7357 |
-
],
|
7358 |
-
"version": "v7",
|
7359 |
-
"lastModified": "2016-02-23",
|
7360 |
-
"files": {
|
7361 |
-
"regular": "http://fonts.gstatic.com/s/mako/v7/z5zSLmfPlv1uTVAdmJBLXg.ttf"
|
7362 |
-
}
|
7363 |
-
},
|
7364 |
-
{
|
7365 |
-
"kind": "webfonts#webfont",
|
7366 |
-
"family": "Mallanna",
|
7367 |
-
"category": "sans-serif",
|
7368 |
-
"variants": [
|
7369 |
-
"regular"
|
7370 |
-
],
|
7371 |
-
"subsets": [
|
7372 |
-
"telugu",
|
7373 |
-
"latin"
|
7374 |
-
],
|
7375 |
-
"version": "v4",
|
7376 |
-
"lastModified": "2016-02-23",
|
7377 |
-
"files": {
|
7378 |
-
"regular": "http://fonts.gstatic.com/s/mallanna/v4/krCTa-CfMbtxqF0689CbuQ.ttf"
|
7379 |
-
}
|
7380 |
-
},
|
7381 |
-
{
|
7382 |
-
"kind": "webfonts#webfont",
|
7383 |
-
"family": "Mandali",
|
7384 |
-
"category": "sans-serif",
|
7385 |
-
"variants": [
|
7386 |
-
"regular"
|
7387 |
-
],
|
7388 |
-
"subsets": [
|
7389 |
-
"telugu",
|
7390 |
-
"latin"
|
7391 |
-
],
|
7392 |
-
"version": "v4",
|
7393 |
-
"lastModified": "2016-02-23",
|
7394 |
-
"files": {
|
7395 |
-
"regular": "http://fonts.gstatic.com/s/mandali/v4/0lF8yJ7fkyjXuqtSi5bWbQ.ttf"
|
7396 |
-
}
|
7397 |
-
},
|
7398 |
-
{
|
7399 |
-
"kind": "webfonts#webfont",
|
7400 |
-
"family": "Marcellus",
|
7401 |
-
"category": "serif",
|
7402 |
-
"variants": [
|
7403 |
-
"regular"
|
7404 |
-
],
|
7405 |
-
"subsets": [
|
7406 |
-
"latin-ext",
|
7407 |
-
"latin"
|
7408 |
-
],
|
7409 |
-
"version": "v4",
|
7410 |
-
"lastModified": "2016-02-23",
|
7411 |
-
"files": {
|
7412 |
-
"regular": "http://fonts.gstatic.com/s/marcellus/v4/UjiLZzumxWC9whJ86UtaYw.ttf"
|
7413 |
-
}
|
7414 |
-
},
|
7415 |
-
{
|
7416 |
-
"kind": "webfonts#webfont",
|
7417 |
-
"family": "Marcellus SC",
|
7418 |
-
"category": "serif",
|
7419 |
-
"variants": [
|
7420 |
-
"regular"
|
7421 |
-
],
|
7422 |
-
"subsets": [
|
7423 |
-
"latin-ext",
|
7424 |
-
"latin"
|
7425 |
-
],
|
7426 |
-
"version": "v4",
|
7427 |
-
"lastModified": "2016-02-23",
|
7428 |
-
"files": {
|
7429 |
-
"regular": "http://fonts.gstatic.com/s/marcellussc/v4/_jugwxhkkynrvsfrxVx8gS3USBnSvpkopQaUR-2r7iU.ttf"
|
7430 |
-
}
|
7431 |
-
},
|
7432 |
-
{
|
7433 |
-
"kind": "webfonts#webfont",
|
7434 |
-
"family": "Marck Script",
|
7435 |
-
"category": "handwriting",
|
7436 |
-
"variants": [
|
7437 |
-
"regular"
|
7438 |
-
],
|
7439 |
-
"subsets": [
|
7440 |
-
"latin-ext",
|
7441 |
-
"cyrillic",
|
7442 |
-
"latin"
|
7443 |
-
],
|
7444 |
-
"version": "v7",
|
7445 |
-
"lastModified": "2016-02-23",
|
7446 |
-
"files": {
|
7447 |
-
"regular": "http://fonts.gstatic.com/s/marckscript/v7/O_D1NAZVOFOobLbVtW3bci3USBnSvpkopQaUR-2r7iU.ttf"
|
7448 |
-
}
|
7449 |
-
},
|
7450 |
-
{
|
7451 |
-
"kind": "webfonts#webfont",
|
7452 |
-
"family": "Margarine",
|
7453 |
-
"category": "display",
|
7454 |
-
"variants": [
|
7455 |
-
"regular"
|
7456 |
-
],
|
7457 |
-
"subsets": [
|
7458 |
-
"latin-ext",
|
7459 |
-
"latin"
|
7460 |
-
],
|
7461 |
-
"version": "v5",
|
7462 |
-
"lastModified": "2016-02-23",
|
7463 |
-
"files": {
|
7464 |
-
"regular": "http://fonts.gstatic.com/s/margarine/v5/DJnJwIrcO_cGkjSzY3MERw.ttf"
|
7465 |
-
}
|
7466 |
-
},
|
7467 |
-
{
|
7468 |
-
"kind": "webfonts#webfont",
|
7469 |
-
"family": "Marko One",
|
7470 |
-
"category": "serif",
|
7471 |
-
"variants": [
|
7472 |
-
"regular"
|
7473 |
-
],
|
7474 |
-
"subsets": [
|
7475 |
-
"latin"
|
7476 |
-
],
|
7477 |
-
"version": "v6",
|
7478 |
-
"lastModified": "2016-02-23",
|
7479 |
-
"files": {
|
7480 |
-
"regular": "http://fonts.gstatic.com/s/markoone/v6/hpP7j861sOAco43iDc4n4w.ttf"
|
7481 |
-
}
|
7482 |
-
},
|
7483 |
-
{
|
7484 |
-
"kind": "webfonts#webfont",
|
7485 |
-
"family": "Marmelad",
|
7486 |
-
"category": "sans-serif",
|
7487 |
-
"variants": [
|
7488 |
-
"regular"
|
7489 |
-
],
|
7490 |
-
"subsets": [
|
7491 |
-
"latin-ext",
|
7492 |
-
"cyrillic",
|
7493 |
-
"latin"
|
7494 |
-
],
|
7495 |
-
"version": "v6",
|
7496 |
-
"lastModified": "2016-02-23",
|
7497 |
-
"files": {
|
7498 |
-
"regular": "http://fonts.gstatic.com/s/marmelad/v6/jI0_FBlSOIRLL0ePWOhOwQ.ttf"
|
7499 |
-
}
|
7500 |
-
},
|
7501 |
-
{
|
7502 |
-
"kind": "webfonts#webfont",
|
7503 |
-
"family": "Martel",
|
7504 |
-
"category": "serif",
|
7505 |
-
"variants": [
|
7506 |
-
"200",
|
7507 |
-
"300",
|
7508 |
-
"regular",
|
7509 |
-
"600",
|
7510 |
-
"700",
|
7511 |
-
"800",
|
7512 |
-
"900"
|
7513 |
-
],
|
7514 |
-
"subsets": [
|
7515 |
-
"devanagari",
|
7516 |
-
"latin-ext",
|
7517 |
-
"latin"
|
7518 |
-
],
|
7519 |
-
"version": "v1",
|
7520 |
-
"lastModified": "2015-04-22",
|
7521 |
-
"files": {
|
7522 |
-
"200": "http://fonts.gstatic.com/s/martel/v1/_wfGdswZbat7P4tupHLA1w.ttf",
|
7523 |
-
"300": "http://fonts.gstatic.com/s/martel/v1/SghoV2F2VPdVU3P0a4fa9w.ttf",
|
7524 |
-
"regular": "http://fonts.gstatic.com/s/martel/v1/9ALu5czkaaf5zsYk6GJEnQ.ttf",
|
7525 |
-
"600": "http://fonts.gstatic.com/s/martel/v1/Kt9uPhH1PvUwuZ5Y6zuAMQ.ttf",
|
7526 |
-
"700": "http://fonts.gstatic.com/s/martel/v1/4OzIiKB5wE36xXL2U0vzWQ.ttf",
|
7527 |
-
"800": "http://fonts.gstatic.com/s/martel/v1/RVF8drcQoRkRL7l_ZkpTlQ.ttf",
|
7528 |
-
"900": "http://fonts.gstatic.com/s/martel/v1/iS0YUpFJoiLRlnyl40rpEA.ttf"
|
7529 |
-
}
|
7530 |
-
},
|
7531 |
-
{
|
7532 |
-
"kind": "webfonts#webfont",
|
7533 |
-
"family": "Martel Sans",
|
7534 |
-
"category": "sans-serif",
|
7535 |
-
"variants": [
|
7536 |
-
"200",
|
7537 |
-
"300",
|
7538 |
-
"regular",
|
7539 |
-
"600",
|
7540 |
-
"700",
|
7541 |
-
"800",
|
7542 |
-
"900"
|
7543 |
-
],
|
7544 |
-
"subsets": [
|
7545 |
-
"devanagari",
|
7546 |
-
"latin-ext",
|
7547 |
-
"latin"
|
7548 |
-
],
|
7549 |
-
"version": "v2",
|
7550 |
-
"lastModified": "2015-12-08",
|
7551 |
-
"files": {
|
7552 |
-
"200": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQEnzyIngrzGjGh22wPb6cGM.ttf",
|
7553 |
-
"300": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQC9-WlPSxbfiI49GsXo3q0g.ttf",
|
7554 |
-
"regular": "http://fonts.gstatic.com/s/martelsans/v2/91c8DPDZncMc0RFfhmc2RqCWcynf_cDxXwCLxiixG1c.ttf",
|
7555 |
-
"600": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQJZ7xm-Bj30Bj2KNdXDzSZg.ttf",
|
7556 |
-
"700": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
7557 |
-
"800": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQA89PwPrYLaRFJ-HNCU9NbA.ttf",
|
7558 |
-
"900": "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQCenaqEuufTBk9XMKnKmgDA.ttf"
|
7559 |
-
}
|
7560 |
-
},
|
7561 |
-
{
|
7562 |
-
"kind": "webfonts#webfont",
|
7563 |
-
"family": "Marvel",
|
7564 |
-
"category": "sans-serif",
|
7565 |
-
"variants": [
|
7566 |
-
"regular",
|
7567 |
-
"italic",
|
7568 |
-
"700",
|
7569 |
-
"700italic"
|
7570 |
-
],
|
7571 |
-
"subsets": [
|
7572 |
-
"latin"
|
7573 |
-
],
|
7574 |
-
"version": "v6",
|
7575 |
-
"lastModified": "2016-02-23",
|
7576 |
-
"files": {
|
7577 |
-
"regular": "http://fonts.gstatic.com/s/marvel/v6/Fg1dO8tWVb-MlyqhsbXEkg.ttf",
|
7578 |
-
"italic": "http://fonts.gstatic.com/s/marvel/v6/HzyjFB-oR5usrc7Lxz9g8w.ttf",
|
7579 |
-
"700": "http://fonts.gstatic.com/s/marvel/v6/WrHDBL1RupWGo2UcdgxB3Q.ttf",
|
7580 |
-
"700italic": "http://fonts.gstatic.com/s/marvel/v6/Gzf5NT09Y6xskdQRj2kz1qCWcynf_cDxXwCLxiixG1c.ttf"
|
7581 |
-
}
|
7582 |
-
},
|
7583 |
-
{
|
7584 |
-
"kind": "webfonts#webfont",
|
7585 |
-
"family": "Mate",
|
7586 |
-
"category": "serif",
|
7587 |
-
"variants": [
|
7588 |
-
"regular",
|
7589 |
-
"italic"
|
7590 |
-
],
|
7591 |
-
"subsets": [
|
7592 |
-
"latin"
|
7593 |
-
],
|
7594 |
-
"version": "v5",
|
7595 |
-
"lastModified": "2016-02-23",
|
7596 |
-
"files": {
|
7597 |
-
"regular": "http://fonts.gstatic.com/s/mate/v5/ooFviPcJ6hZP5bAE71Cawg.ttf",
|
7598 |
-
"italic": "http://fonts.gstatic.com/s/mate/v5/5XwW6_cbisGvCX5qmNiqfA.ttf"
|
7599 |
-
}
|
7600 |
-
},
|
7601 |
-
{
|
7602 |
-
"kind": "webfonts#webfont",
|
7603 |
-
"family": "Mate SC",
|
7604 |
-
"category": "serif",
|
7605 |
-
"variants": [
|
7606 |
-
"regular"
|
7607 |
-
],
|
7608 |
-
"subsets": [
|
7609 |
-
"latin"
|
7610 |
-
],
|
7611 |
-
"version": "v5",
|
7612 |
-
"lastModified": "2016-02-23",
|
7613 |
-
"files": {
|
7614 |
-
"regular": "http://fonts.gstatic.com/s/matesc/v5/-YkIT2TZoPZF6pawKzDpWw.ttf"
|
7615 |
-
}
|
7616 |
-
},
|
7617 |
-
{
|
7618 |
-
"kind": "webfonts#webfont",
|
7619 |
-
"family": "Maven Pro",
|
7620 |
-
"category": "sans-serif",
|
7621 |
-
"variants": [
|
7622 |
-
"regular",
|
7623 |
-
"500",
|
7624 |
-
"700",
|
7625 |
-
"900"
|
7626 |
-
],
|
7627 |
-
"subsets": [
|
7628 |
-
"latin"
|
7629 |
-
],
|
7630 |
-
"version": "v7",
|
7631 |
-
"lastModified": "2016-02-23",
|
7632 |
-
"files": {
|
7633 |
-
"regular": "http://fonts.gstatic.com/s/mavenpro/v7/sqPJIFG4gqsjl-0q_46Gbw.ttf",
|
7634 |
-
"500": "http://fonts.gstatic.com/s/mavenpro/v7/SQVfzoJBbj9t3aVcmbspRi3USBnSvpkopQaUR-2r7iU.ttf",
|
7635 |
-
"700": "http://fonts.gstatic.com/s/mavenpro/v7/uDssvmXgp7Nj3i336k_dSi3USBnSvpkopQaUR-2r7iU.ttf",
|
7636 |
-
"900": "http://fonts.gstatic.com/s/mavenpro/v7/-91TwiFzqeL1F7Kh91APwS3USBnSvpkopQaUR-2r7iU.ttf"
|
7637 |
-
}
|
7638 |
-
},
|
7639 |
-
{
|
7640 |
-
"kind": "webfonts#webfont",
|
7641 |
-
"family": "McLaren",
|
7642 |
-
"category": "display",
|
7643 |
-
"variants": [
|
7644 |
-
"regular"
|
7645 |
-
],
|
7646 |
-
"subsets": [
|
7647 |
-
"latin-ext",
|
7648 |
-
"latin"
|
7649 |
-
],
|
7650 |
-
"version": "v4",
|
7651 |
-
"lastModified": "2016-02-23",
|
7652 |
-
"files": {
|
7653 |
-
"regular": "http://fonts.gstatic.com/s/mclaren/v4/OprvTGxaiINBKW_1_U0eoQ.ttf"
|
7654 |
-
}
|
7655 |
-
},
|
7656 |
-
{
|
7657 |
-
"kind": "webfonts#webfont",
|
7658 |
-
"family": "Meddon",
|
7659 |
-
"category": "handwriting",
|
7660 |
-
"variants": [
|
7661 |
-
"regular"
|
7662 |
-
],
|
7663 |
-
"subsets": [
|
7664 |
-
"latin"
|
7665 |
-
],
|
7666 |
-
"version": "v9",
|
7667 |
-
"lastModified": "2015-08-12",
|
7668 |
-
"files": {
|
7669 |
-
"regular": "http://fonts.gstatic.com/s/meddon/v9/f8zJO98uu2EtSj9p7ci9RA.ttf"
|
7670 |
-
}
|
7671 |
-
},
|
7672 |
-
{
|
7673 |
-
"kind": "webfonts#webfont",
|
7674 |
-
"family": "MedievalSharp",
|
7675 |
-
"category": "display",
|
7676 |
-
"variants": [
|
7677 |
-
"regular"
|
7678 |
-
],
|
7679 |
-
"subsets": [
|
7680 |
-
"latin-ext",
|
7681 |
-
"latin"
|
7682 |
-
],
|
7683 |
-
"version": "v8",
|
7684 |
-
"lastModified": "2016-02-23",
|
7685 |
-
"files": {
|
7686 |
-
"regular": "http://fonts.gstatic.com/s/medievalsharp/v8/85X_PjV6tftJ0-rX7KYQkOe45sJkivqprK7VkUlzfg0.ttf"
|
7687 |
-
}
|
7688 |
-
},
|
7689 |
-
{
|
7690 |
-
"kind": "webfonts#webfont",
|
7691 |
-
"family": "Medula One",
|
7692 |
-
"category": "display",
|
7693 |
-
"variants": [
|
7694 |
-
"regular"
|
7695 |
-
],
|
7696 |
-
"subsets": [
|
7697 |
-
"latin"
|
7698 |
-
],
|
7699 |
-
"version": "v6",
|
7700 |
-
"lastModified": "2016-02-23",
|
7701 |
-
"files": {
|
7702 |
-
"regular": "http://fonts.gstatic.com/s/medulaone/v6/AasPgDQak81dsTGQHc5zUPesZW2xOQ-xsNqO47m55DA.ttf"
|
7703 |
-
}
|
7704 |
-
},
|
7705 |
-
{
|
7706 |
-
"kind": "webfonts#webfont",
|
7707 |
-
"family": "Megrim",
|
7708 |
-
"category": "display",
|
7709 |
-
"variants": [
|
7710 |
-
"regular"
|
7711 |
-
],
|
7712 |
-
"subsets": [
|
7713 |
-
"latin"
|
7714 |
-
],
|
7715 |
-
"version": "v7",
|
7716 |
-
"lastModified": "2016-02-23",
|
7717 |
-
"files": {
|
7718 |
-
"regular": "http://fonts.gstatic.com/s/megrim/v7/e-9jVUC9lv1zxaFQARuftw.ttf"
|
7719 |
-
}
|
7720 |
-
},
|
7721 |
-
{
|
7722 |
-
"kind": "webfonts#webfont",
|
7723 |
-
"family": "Meie Script",
|
7724 |
-
"category": "handwriting",
|
7725 |
-
"variants": [
|
7726 |
-
"regular"
|
7727 |
-
],
|
7728 |
-
"subsets": [
|
7729 |
-
"latin-ext",
|
7730 |
-
"latin"
|
7731 |
-
],
|
7732 |
-
"version": "v4",
|
7733 |
-
"lastModified": "2016-02-23",
|
7734 |
-
"files": {
|
7735 |
-
"regular": "http://fonts.gstatic.com/s/meiescript/v4/oTIWE5MmPye-rCyVp_6KEqCWcynf_cDxXwCLxiixG1c.ttf"
|
7736 |
-
}
|
7737 |
-
},
|
7738 |
-
{
|
7739 |
-
"kind": "webfonts#webfont",
|
7740 |
-
"family": "Merienda",
|
7741 |
-
"category": "handwriting",
|
7742 |
-
"variants": [
|
7743 |
-
"regular",
|
7744 |
-
"700"
|
7745 |
-
],
|
7746 |
-
"subsets": [
|
7747 |
-
"latin-ext",
|
7748 |
-
"latin"
|
7749 |
-
],
|
7750 |
-
"version": "v4",
|
7751 |
-
"lastModified": "2016-02-23",
|
7752 |
-
"files": {
|
7753 |
-
"regular": "http://fonts.gstatic.com/s/merienda/v4/MYY6Og1qZlOQtPW2G95Y3A.ttf",
|
7754 |
-
"700": "http://fonts.gstatic.com/s/merienda/v4/GlwcvRLlgiVE2MBFQ4r0sKCWcynf_cDxXwCLxiixG1c.ttf"
|
7755 |
-
}
|
7756 |
-
},
|
7757 |
-
{
|
7758 |
-
"kind": "webfonts#webfont",
|
7759 |
-
"family": "Merienda One",
|
7760 |
-
"category": "handwriting",
|
7761 |
-
"variants": [
|
7762 |
-
"regular"
|
7763 |
-
],
|
7764 |
-
"subsets": [
|
7765 |
-
"latin"
|
7766 |
-
],
|
7767 |
-
"version": "v7",
|
7768 |
-
"lastModified": "2016-02-23",
|
7769 |
-
"files": {
|
7770 |
-
"regular": "http://fonts.gstatic.com/s/meriendaone/v7/bCA-uDdUx6nTO8SjzCLXvS3USBnSvpkopQaUR-2r7iU.ttf"
|
7771 |
-
}
|
7772 |
-
},
|
7773 |
-
{
|
7774 |
-
"kind": "webfonts#webfont",
|
7775 |
-
"family": "Merriweather",
|
7776 |
-
"category": "serif",
|
7777 |
-
"variants": [
|
7778 |
-
"300",
|
7779 |
-
"300italic",
|
7780 |
-
"regular",
|
7781 |
-
"italic",
|
7782 |
-
"700",
|
7783 |
-
"700italic",
|
7784 |
-
"900",
|
7785 |
-
"900italic"
|
7786 |
-
],
|
7787 |
-
"subsets": [
|
7788 |
-
"latin-ext",
|
7789 |
-
"cyrillic-ext",
|
7790 |
-
"cyrillic",
|
7791 |
-
"latin"
|
7792 |
-
],
|
7793 |
-
"version": "v11",
|
7794 |
-
"lastModified": "2016-02-23",
|
7795 |
-
"files": {
|
7796 |
-
"300": "http://fonts.gstatic.com/s/merriweather/v11/ZvcMqxEwPfh2qDWBPxn6nqcQoVhARpoaILP7amxE_8g.ttf",
|
7797 |
-
"300italic": "http://fonts.gstatic.com/s/merriweather/v11/EYh7Vl4ywhowqULgRdYwICna0FLWfcB-J_SAYmcAXaI.ttf",
|
7798 |
-
"regular": "http://fonts.gstatic.com/s/merriweather/v11/RFda8w1V0eDZheqfcyQ4EC3USBnSvpkopQaUR-2r7iU.ttf",
|
7799 |
-
"italic": "http://fonts.gstatic.com/s/merriweather/v11/So5lHxHT37p2SS4-t60SlPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
7800 |
-
"700": "http://fonts.gstatic.com/s/merriweather/v11/ZvcMqxEwPfh2qDWBPxn6nkD2ttfZwueP-QU272T9-k4.ttf",
|
7801 |
-
"700italic": "http://fonts.gstatic.com/s/merriweather/v11/EYh7Vl4ywhowqULgRdYwIPAs9-1nE9qOqhChW0m4nDE.ttf",
|
7802 |
-
"900": "http://fonts.gstatic.com/s/merriweather/v11/ZvcMqxEwPfh2qDWBPxn6nqObDOjC3UL77puoeHsE3fw.ttf",
|
7803 |
-
"900italic": "http://fonts.gstatic.com/s/merriweather/v11/EYh7Vl4ywhowqULgRdYwIBd0_s6jQr9r5s5OZYvtzBY.ttf"
|
7804 |
-
}
|
7805 |
-
},
|
7806 |
-
{
|
7807 |
-
"kind": "webfonts#webfont",
|
7808 |
-
"family": "Merriweather Sans",
|
7809 |
-
"category": "sans-serif",
|
7810 |
-
"variants": [
|
7811 |
-
"300",
|
7812 |
-
"300italic",
|
7813 |
-
"regular",
|
7814 |
-
"italic",
|
7815 |
-
"700",
|
7816 |
-
"700italic",
|
7817 |
-
"800",
|
7818 |
-
"800italic"
|
7819 |
-
],
|
7820 |
-
"subsets": [
|
7821 |
-
"latin-ext",
|
7822 |
-
"latin"
|
7823 |
-
],
|
7824 |
-
"version": "v7",
|
7825 |
-
"lastModified": "2016-02-23",
|
7826 |
-
"files": {
|
7827 |
-
"300": "http://fonts.gstatic.com/s/merriweathersans/v7/6LmGj5dOJopQKEkt88Gowan5N8K-_DP0e9e_v51obXQ.ttf",
|
7828 |
-
"300italic": "http://fonts.gstatic.com/s/merriweathersans/v7/nAqt4hiqwq3tzCecpgPmVdytE4nGXk2hYD5nJ740tBw.ttf",
|
7829 |
-
"regular": "http://fonts.gstatic.com/s/merriweathersans/v7/AKu1CjQ4qnV8MUltkAX3sOAj_ty82iuwwDTNEYXGiyQ.ttf",
|
7830 |
-
"italic": "http://fonts.gstatic.com/s/merriweathersans/v7/3Mz4hOHzs2npRMG3B1ascZ32VBCoA_HLsn85tSWZmdo.ttf",
|
7831 |
-
"700": "http://fonts.gstatic.com/s/merriweathersans/v7/6LmGj5dOJopQKEkt88GowbqxG25nQNOioCZSK4sU-CA.ttf",
|
7832 |
-
"700italic": "http://fonts.gstatic.com/s/merriweathersans/v7/nAqt4hiqwq3tzCecpgPmVbuqAJxizi8Dk_SK5et7kMg.ttf",
|
7833 |
-
"800": "http://fonts.gstatic.com/s/merriweathersans/v7/6LmGj5dOJopQKEkt88GowYufzO2zUYSj5LqoJ3UGkco.ttf",
|
7834 |
-
"800italic": "http://fonts.gstatic.com/s/merriweathersans/v7/nAqt4hiqwq3tzCecpgPmVdDmPrYMy3aZO4LmnZsxTQw.ttf"
|
7835 |
-
}
|
7836 |
-
},
|
7837 |
-
{
|
7838 |
-
"kind": "webfonts#webfont",
|
7839 |
-
"family": "Metal",
|
7840 |
-
"category": "display",
|
7841 |
-
"variants": [
|
7842 |
-
"regular"
|
7843 |
-
],
|
7844 |
-
"subsets": [
|
7845 |
-
"khmer"
|
7846 |
-
],
|
7847 |
-
"version": "v9",
|
7848 |
-
"lastModified": "2015-04-03",
|
7849 |
-
"files": {
|
7850 |
-
"regular": "http://fonts.gstatic.com/s/metal/v9/zA3UOP13ooQcxjv04BZX5g.ttf"
|
7851 |
-
}
|
7852 |
-
},
|
7853 |
-
{
|
7854 |
-
"kind": "webfonts#webfont",
|
7855 |
-
"family": "Metal Mania",
|
7856 |
-
"category": "display",
|
7857 |
-
"variants": [
|
7858 |
-
"regular"
|
7859 |
-
],
|
7860 |
-
"subsets": [
|
7861 |
-
"latin-ext",
|
7862 |
-
"latin"
|
7863 |
-
],
|
7864 |
-
"version": "v6",
|
7865 |
-
"lastModified": "2016-02-23",
|
7866 |
-
"files": {
|
7867 |
-
"regular": "http://fonts.gstatic.com/s/metalmania/v6/isriV_rAUgj6bPWPN6l9QKCWcynf_cDxXwCLxiixG1c.ttf"
|
7868 |
-
}
|
7869 |
-
},
|
7870 |
-
{
|
7871 |
-
"kind": "webfonts#webfont",
|
7872 |
-
"family": "Metamorphous",
|
7873 |
-
"category": "display",
|
7874 |
-
"variants": [
|
7875 |
-
"regular"
|
7876 |
-
],
|
7877 |
-
"subsets": [
|
7878 |
-
"latin-ext",
|
7879 |
-
"latin"
|
7880 |
-
],
|
7881 |
-
"version": "v6",
|
7882 |
-
"lastModified": "2016-02-23",
|
7883 |
-
"files": {
|
7884 |
-
"regular": "http://fonts.gstatic.com/s/metamorphous/v6/wGqUKXRinIYggz-BTRU9ei3USBnSvpkopQaUR-2r7iU.ttf"
|
7885 |
-
}
|
7886 |
-
},
|
7887 |
-
{
|
7888 |
-
"kind": "webfonts#webfont",
|
7889 |
-
"family": "Metrophobic",
|
7890 |
-
"category": "sans-serif",
|
7891 |
-
"variants": [
|
7892 |
-
"regular"
|
7893 |
-
],
|
7894 |
-
"subsets": [
|
7895 |
-
"latin"
|
7896 |
-
],
|
7897 |
-
"version": "v6",
|
7898 |
-
"lastModified": "2016-02-23",
|
7899 |
-
"files": {
|
7900 |
-
"regular": "http://fonts.gstatic.com/s/metrophobic/v6/SaglWZWCrrv_D17u1i4v_aCWcynf_cDxXwCLxiixG1c.ttf"
|
7901 |
-
}
|
7902 |
-
},
|
7903 |
-
{
|
7904 |
-
"kind": "webfonts#webfont",
|
7905 |
-
"family": "Michroma",
|
7906 |
-
"category": "sans-serif",
|
7907 |
-
"variants": [
|
7908 |
-
"regular"
|
7909 |
-
],
|
7910 |
-
"subsets": [
|
7911 |
-
"latin"
|
7912 |
-
],
|
7913 |
-
"version": "v7",
|
7914 |
-
"lastModified": "2016-02-23",
|
7915 |
-
"files": {
|
7916 |
-
"regular": "http://fonts.gstatic.com/s/michroma/v7/0c2XrW81_QsiKV8T9thumA.ttf"
|
7917 |
-
}
|
7918 |
-
},
|
7919 |
-
{
|
7920 |
-
"kind": "webfonts#webfont",
|
7921 |
-
"family": "Milonga",
|
7922 |
-
"category": "display",
|
7923 |
-
"variants": [
|
7924 |
-
"regular"
|
7925 |
-
],
|
7926 |
-
"subsets": [
|
7927 |
-
"latin-ext",
|
7928 |
-
"latin"
|
7929 |
-
],
|
7930 |
-
"version": "v4",
|
7931 |
-
"lastModified": "2016-02-23",
|
7932 |
-
"files": {
|
7933 |
-
"regular": "http://fonts.gstatic.com/s/milonga/v4/dzNdIUSTGFmy2ahovDRcWg.ttf"
|
7934 |
-
}
|
7935 |
-
},
|
7936 |
-
{
|
7937 |
-
"kind": "webfonts#webfont",
|
7938 |
-
"family": "Miltonian",
|
7939 |
-
"category": "display",
|
7940 |
-
"variants": [
|
7941 |
-
"regular"
|
7942 |
-
],
|
7943 |
-
"subsets": [
|
7944 |
-
"latin"
|
7945 |
-
],
|
7946 |
-
"version": "v9",
|
7947 |
-
"lastModified": "2016-02-23",
|
7948 |
-
"files": {
|
7949 |
-
"regular": "http://fonts.gstatic.com/s/miltonian/v9/Z4HrYZyqm0BnNNzcCUfzoQ.ttf"
|
7950 |
-
}
|
7951 |
-
},
|
7952 |
-
{
|
7953 |
-
"kind": "webfonts#webfont",
|
7954 |
-
"family": "Miltonian Tattoo",
|
7955 |
-
"category": "display",
|
7956 |
-
"variants": [
|
7957 |
-
"regular"
|
7958 |
-
],
|
7959 |
-
"subsets": [
|
7960 |
-
"latin"
|
7961 |
-
],
|
7962 |
-
"version": "v10",
|
7963 |
-
"lastModified": "2016-02-23",
|
7964 |
-
"files": {
|
7965 |
-
"regular": "http://fonts.gstatic.com/s/miltoniantattoo/v10/1oU_8OGYwW46eh02YHydn2uk0YtI6thZkz1Hmh-odwg.ttf"
|
7966 |
-
}
|
7967 |
-
},
|
7968 |
-
{
|
7969 |
-
"kind": "webfonts#webfont",
|
7970 |
-
"family": "Miniver",
|
7971 |
-
"category": "display",
|
7972 |
-
"variants": [
|
7973 |
-
"regular"
|
7974 |
-
],
|
7975 |
-
"subsets": [
|
7976 |
-
"latin"
|
7977 |
-
],
|
7978 |
-
"version": "v5",
|
7979 |
-
"lastModified": "2016-02-23",
|
7980 |
-
"files": {
|
7981 |
-
"regular": "http://fonts.gstatic.com/s/miniver/v5/4yTQohOH_cWKRS5laRFhYg.ttf"
|
7982 |
-
}
|
7983 |
-
},
|
7984 |
-
{
|
7985 |
-
"kind": "webfonts#webfont",
|
7986 |
-
"family": "Miss Fajardose",
|
7987 |
-
"category": "handwriting",
|
7988 |
-
"variants": [
|
7989 |
-
"regular"
|
7990 |
-
],
|
7991 |
-
"subsets": [
|
7992 |
-
"latin-ext",
|
7993 |
-
"latin"
|
7994 |
-
],
|
7995 |
-
"version": "v6",
|
7996 |
-
"lastModified": "2016-02-23",
|
7997 |
-
"files": {
|
7998 |
-
"regular": "http://fonts.gstatic.com/s/missfajardose/v6/WcXjlQPKn6nBfr8LY3ktNu6rPKfVZo7L2bERcf0BDns.ttf"
|
7999 |
-
}
|
8000 |
-
},
|
8001 |
-
{
|
8002 |
-
"kind": "webfonts#webfont",
|
8003 |
-
"family": "Modak",
|
8004 |
-
"category": "display",
|
8005 |
-
"variants": [
|
8006 |
-
"regular"
|
8007 |
-
],
|
8008 |
-
"subsets": [
|
8009 |
-
"devanagari",
|
8010 |
-
"latin-ext",
|
8011 |
-
"latin"
|
8012 |
-
],
|
8013 |
-
"version": "v1",
|
8014 |
-
"lastModified": "2015-04-03",
|
8015 |
-
"files": {
|
8016 |
-
"regular": "http://fonts.gstatic.com/s/modak/v1/lMsN0QIKid-pCPvL0hH4nw.ttf"
|
8017 |
-
}
|
8018 |
-
},
|
8019 |
-
{
|
8020 |
-
"kind": "webfonts#webfont",
|
8021 |
-
"family": "Modern Antiqua",
|
8022 |
-
"category": "display",
|
8023 |
-
"variants": [
|
8024 |
-
"regular"
|
8025 |
-
],
|
8026 |
-
"subsets": [
|
8027 |
-
"latin-ext",
|
8028 |
-
"latin"
|
8029 |
-
],
|
8030 |
-
"version": "v6",
|
8031 |
-
"lastModified": "2016-02-23",
|
8032 |
-
"files": {
|
8033 |
-
"regular": "http://fonts.gstatic.com/s/modernantiqua/v6/8qX_tr6Xzy4t9fvZDXPkh6rFJ4O13IHVxZbM6yoslpo.ttf"
|
8034 |
-
}
|
8035 |
-
},
|
8036 |
-
{
|
8037 |
-
"kind": "webfonts#webfont",
|
8038 |
-
"family": "Molengo",
|
8039 |
-
"category": "sans-serif",
|
8040 |
-
"variants": [
|
8041 |
-
"regular"
|
8042 |
-
],
|
8043 |
-
"subsets": [
|
8044 |
-
"latin-ext",
|
8045 |
-
"latin"
|
8046 |
-
],
|
8047 |
-
"version": "v7",
|
8048 |
-
"lastModified": "2016-02-23",
|
8049 |
-
"files": {
|
8050 |
-
"regular": "http://fonts.gstatic.com/s/molengo/v7/jcjgeGuzv83I55AzOTpXNQ.ttf"
|
8051 |
-
}
|
8052 |
-
},
|
8053 |
-
{
|
8054 |
-
"kind": "webfonts#webfont",
|
8055 |
-
"family": "Molle",
|
8056 |
-
"category": "handwriting",
|
8057 |
-
"variants": [
|
8058 |
-
"italic"
|
8059 |
-
],
|
8060 |
-
"subsets": [
|
8061 |
-
"latin-ext",
|
8062 |
-
"latin"
|
8063 |
-
],
|
8064 |
-
"version": "v4",
|
8065 |
-
"lastModified": "2016-02-23",
|
8066 |
-
"files": {
|
8067 |
-
"italic": "http://fonts.gstatic.com/s/molle/v4/9XTdCsjPXifLqo5et-YoGA.ttf"
|
8068 |
-
}
|
8069 |
-
},
|
8070 |
-
{
|
8071 |
-
"kind": "webfonts#webfont",
|
8072 |
-
"family": "Monda",
|
8073 |
-
"category": "sans-serif",
|
8074 |
-
"variants": [
|
8075 |
-
"regular",
|
8076 |
-
"700"
|
8077 |
-
],
|
8078 |
-
"subsets": [
|
8079 |
-
"latin-ext",
|
8080 |
-
"latin"
|
8081 |
-
],
|
8082 |
-
"version": "v4",
|
8083 |
-
"lastModified": "2016-02-23",
|
8084 |
-
"files": {
|
8085 |
-
"regular": "http://fonts.gstatic.com/s/monda/v4/qFMHZ9zvR6B_gnoIgosPrw.ttf",
|
8086 |
-
"700": "http://fonts.gstatic.com/s/monda/v4/EVOzZUyc_j1w2GuTgTAW1g.ttf"
|
8087 |
-
}
|
8088 |
-
},
|
8089 |
-
{
|
8090 |
-
"kind": "webfonts#webfont",
|
8091 |
-
"family": "Monofett",
|
8092 |
-
"category": "display",
|
8093 |
-
"variants": [
|
8094 |
-
"regular"
|
8095 |
-
],
|
8096 |
-
"subsets": [
|
8097 |
-
"latin"
|
8098 |
-
],
|
8099 |
-
"version": "v6",
|
8100 |
-
"lastModified": "2016-02-23",
|
8101 |
-
"files": {
|
8102 |
-
"regular": "http://fonts.gstatic.com/s/monofett/v6/C6K5L799Rgxzg2brgOaqAw.ttf"
|
8103 |
-
}
|
8104 |
-
},
|
8105 |
-
{
|
8106 |
-
"kind": "webfonts#webfont",
|
8107 |
-
"family": "Monoton",
|
8108 |
-
"category": "display",
|
8109 |
-
"variants": [
|
8110 |
-
"regular"
|
8111 |
-
],
|
8112 |
-
"subsets": [
|
8113 |
-
"latin"
|
8114 |
-
],
|
8115 |
-
"version": "v6",
|
8116 |
-
"lastModified": "2016-02-23",
|
8117 |
-
"files": {
|
8118 |
-
"regular": "http://fonts.gstatic.com/s/monoton/v6/aCz8ja_bE4dg-7agSvExdw.ttf"
|
8119 |
-
}
|
8120 |
-
},
|
8121 |
-
{
|
8122 |
-
"kind": "webfonts#webfont",
|
8123 |
-
"family": "Monsieur La Doulaise",
|
8124 |
-
"category": "handwriting",
|
8125 |
-
"variants": [
|
8126 |
-
"regular"
|
8127 |
-
],
|
8128 |
-
"subsets": [
|
8129 |
-
"latin-ext",
|
8130 |
-
"latin"
|
8131 |
-
],
|
8132 |
-
"version": "v5",
|
8133 |
-
"lastModified": "2016-02-23",
|
8134 |
-
"files": {
|
8135 |
-
"regular": "http://fonts.gstatic.com/s/monsieurladoulaise/v5/IMAdMj6Eq9jZ46CPctFtMKP61oAqTJXlx5ZVOBmcPdM.ttf"
|
8136 |
-
}
|
8137 |
-
},
|
8138 |
-
{
|
8139 |
-
"kind": "webfonts#webfont",
|
8140 |
-
"family": "Montaga",
|
8141 |
-
"category": "serif",
|
8142 |
-
"variants": [
|
8143 |
-
"regular"
|
8144 |
-
],
|
8145 |
-
"subsets": [
|
8146 |
-
"latin"
|
8147 |
-
],
|
8148 |
-
"version": "v4",
|
8149 |
-
"lastModified": "2016-02-23",
|
8150 |
-
"files": {
|
8151 |
-
"regular": "http://fonts.gstatic.com/s/montaga/v4/PwTwUboiD-M4-mFjZfJs2A.ttf"
|
8152 |
-
}
|
8153 |
-
},
|
8154 |
-
{
|
8155 |
-
"kind": "webfonts#webfont",
|
8156 |
-
"family": "Montez",
|
8157 |
-
"category": "handwriting",
|
8158 |
-
"variants": [
|
8159 |
-
"regular"
|
8160 |
-
],
|
8161 |
-
"subsets": [
|
8162 |
-
"latin"
|
8163 |
-
],
|
8164 |
-
"version": "v6",
|
8165 |
-
"lastModified": "2016-02-23",
|
8166 |
-
"files": {
|
8167 |
-
"regular": "http://fonts.gstatic.com/s/montez/v6/kx58rLOWQQLGFM4pDHv5Ng.ttf"
|
8168 |
-
}
|
8169 |
-
},
|
8170 |
-
{
|
8171 |
-
"kind": "webfonts#webfont",
|
8172 |
-
"family": "Montserrat",
|
8173 |
-
"category": "sans-serif",
|
8174 |
-
"variants": [
|
8175 |
-
"regular",
|
8176 |
-
"700"
|
8177 |
-
],
|
8178 |
-
"subsets": [
|
8179 |
-
"latin"
|
8180 |
-
],
|
8181 |
-
"version": "v6",
|
8182 |
-
"lastModified": "2016-02-23",
|
8183 |
-
"files": {
|
8184 |
-
"regular": "http://fonts.gstatic.com/s/montserrat/v6/Kqy6-utIpx_30Xzecmeo8_esZW2xOQ-xsNqO47m55DA.ttf",
|
8185 |
-
"700": "http://fonts.gstatic.com/s/montserrat/v6/IQHow_FEYlDC4Gzy_m8fcgJKKGfqHaYFsRG-T3ceEVo.ttf"
|
8186 |
-
}
|
8187 |
-
},
|
8188 |
-
{
|
8189 |
-
"kind": "webfonts#webfont",
|
8190 |
-
"family": "Montserrat Alternates",
|
8191 |
-
"category": "sans-serif",
|
8192 |
-
"variants": [
|
8193 |
-
"regular",
|
8194 |
-
"700"
|
8195 |
-
],
|
8196 |
-
"subsets": [
|
8197 |
-
"latin"
|
8198 |
-
],
|
8199 |
-
"version": "v4",
|
8200 |
-
"lastModified": "2016-02-23",
|
8201 |
-
"files": {
|
8202 |
-
"regular": "http://fonts.gstatic.com/s/montserratalternates/v4/z2n1Sjxk9souK3HCtdHuklPuEVRGaG9GCQnmM16YWq0.ttf",
|
8203 |
-
"700": "http://fonts.gstatic.com/s/montserratalternates/v4/YENqOGAVzwIHjYNjmKuAZpeqBKvsAhm-s2I4RVSXFfc.ttf"
|
8204 |
-
}
|
8205 |
-
},
|
8206 |
-
{
|
8207 |
-
"kind": "webfonts#webfont",
|
8208 |
-
"family": "Montserrat Subrayada",
|
8209 |
-
"category": "sans-serif",
|
8210 |
-
"variants": [
|
8211 |
-
"regular",
|
8212 |
-
"700"
|
8213 |
-
],
|
8214 |
-
"subsets": [
|
8215 |
-
"latin"
|
8216 |
-
],
|
8217 |
-
"version": "v4",
|
8218 |
-
"lastModified": "2016-02-23",
|
8219 |
-
"files": {
|
8220 |
-
"regular": "http://fonts.gstatic.com/s/montserratsubrayada/v4/nzoCWCz0e9c7Mr2Gl8bbgrJymm6ilkk9f0nDA_sC_qk.ttf",
|
8221 |
-
"700": "http://fonts.gstatic.com/s/montserratsubrayada/v4/wf-IKpsHcfm0C9uaz9IeGJvEcF1LWArDbGWgKZSH9go.ttf"
|
8222 |
-
}
|
8223 |
-
},
|
8224 |
-
{
|
8225 |
-
"kind": "webfonts#webfont",
|
8226 |
-
"family": "Moul",
|
8227 |
-
"category": "display",
|
8228 |
-
"variants": [
|
8229 |
-
"regular"
|
8230 |
-
],
|
8231 |
-
"subsets": [
|
8232 |
-
"khmer"
|
8233 |
-
],
|
8234 |
-
"version": "v8",
|
8235 |
-
"lastModified": "2015-04-03",
|
8236 |
-
"files": {
|
8237 |
-
"regular": "http://fonts.gstatic.com/s/moul/v8/Kb0ALQnfyXawP1a_P_gpTQ.ttf"
|
8238 |
-
}
|
8239 |
-
},
|
8240 |
-
{
|
8241 |
-
"kind": "webfonts#webfont",
|
8242 |
-
"family": "Moulpali",
|
8243 |
-
"category": "display",
|
8244 |
-
"variants": [
|
8245 |
-
"regular"
|
8246 |
-
],
|
8247 |
-
"subsets": [
|
8248 |
-
"khmer"
|
8249 |
-
],
|
8250 |
-
"version": "v9",
|
8251 |
-
"lastModified": "2015-04-03",
|
8252 |
-
"files": {
|
8253 |
-
"regular": "http://fonts.gstatic.com/s/moulpali/v9/diD74BprGhmVkJoerKmrKA.ttf"
|
8254 |
-
}
|
8255 |
-
},
|
8256 |
-
{
|
8257 |
-
"kind": "webfonts#webfont",
|
8258 |
-
"family": "Mountains of Christmas",
|
8259 |
-
"category": "display",
|
8260 |
-
"variants": [
|
8261 |
-
"regular",
|
8262 |
-
"700"
|
8263 |
-
],
|
8264 |
-
"subsets": [
|
8265 |
-
"latin"
|
8266 |
-
],
|
8267 |
-
"version": "v8",
|
8268 |
-
"lastModified": "2016-02-23",
|
8269 |
-
"files": {
|
8270 |
-
"regular": "http://fonts.gstatic.com/s/mountainsofchristmas/v8/dVGBFPwd6G44IWDbQtPew2Auds3jz1Fxb61CgfaGDr4.ttf",
|
8271 |
-
"700": "http://fonts.gstatic.com/s/mountainsofchristmas/v8/PymufKtHszoLrY0uiAYKNM9cPTbSBTrQyTa5TWAe3vE.ttf"
|
8272 |
-
}
|
8273 |
-
},
|
8274 |
-
{
|
8275 |
-
"kind": "webfonts#webfont",
|
8276 |
-
"family": "Mouse Memoirs",
|
8277 |
-
"category": "sans-serif",
|
8278 |
-
"variants": [
|
8279 |
-
"regular"
|
8280 |
-
],
|
8281 |
-
"subsets": [
|
8282 |
-
"latin-ext",
|
8283 |
-
"latin"
|
8284 |
-
],
|
8285 |
-
"version": "v4",
|
8286 |
-
"lastModified": "2016-02-23",
|
8287 |
-
"files": {
|
8288 |
-
"regular": "http://fonts.gstatic.com/s/mousememoirs/v4/NBFaaJFux_j0AQbAsW3QeH8f0n03UdmQgF_CLvNR2vg.ttf"
|
8289 |
-
}
|
8290 |
-
},
|
8291 |
-
{
|
8292 |
-
"kind": "webfonts#webfont",
|
8293 |
-
"family": "Mr Bedfort",
|
8294 |
-
"category": "handwriting",
|
8295 |
-
"variants": [
|
8296 |
-
"regular"
|
8297 |
-
],
|
8298 |
-
"subsets": [
|
8299 |
-
"latin-ext",
|
8300 |
-
"latin"
|
8301 |
-
],
|
8302 |
-
"version": "v5",
|
8303 |
-
"lastModified": "2016-02-23",
|
8304 |
-
"files": {
|
8305 |
-
"regular": "http://fonts.gstatic.com/s/mrbedfort/v5/81bGgHTRikLs_puEGshl7_esZW2xOQ-xsNqO47m55DA.ttf"
|
8306 |
-
}
|
8307 |
-
},
|
8308 |
-
{
|
8309 |
-
"kind": "webfonts#webfont",
|
8310 |
-
"family": "Mr Dafoe",
|
8311 |
-
"category": "handwriting",
|
8312 |
-
"variants": [
|
8313 |
-
"regular"
|
8314 |
-
],
|
8315 |
-
"subsets": [
|
8316 |
-
"latin-ext",
|
8317 |
-
"latin"
|
8318 |
-
],
|
8319 |
-
"version": "v5",
|
8320 |
-
"lastModified": "2016-02-23",
|
8321 |
-
"files": {
|
8322 |
-
"regular": "http://fonts.gstatic.com/s/mrdafoe/v5/s32Q1S6ZkT7EaX53mUirvQ.ttf"
|
8323 |
-
}
|
8324 |
-
},
|
8325 |
-
{
|
8326 |
-
"kind": "webfonts#webfont",
|
8327 |
-
"family": "Mr De Haviland",
|
8328 |
-
"category": "handwriting",
|
8329 |
-
"variants": [
|
8330 |
-
"regular"
|
8331 |
-
],
|
8332 |
-
"subsets": [
|
8333 |
-
"latin-ext",
|
8334 |
-
"latin"
|
8335 |
-
],
|
8336 |
-
"version": "v5",
|
8337 |
-
"lastModified": "2016-02-23",
|
8338 |
-
"files": {
|
8339 |
-
"regular": "http://fonts.gstatic.com/s/mrdehaviland/v5/fD8y4L6PJ4vqDk7z8Y8e27v4lrhng1lzu7-weKO6cw8.ttf"
|
8340 |
-
}
|
8341 |
-
},
|
8342 |
-
{
|
8343 |
-
"kind": "webfonts#webfont",
|
8344 |
-
"family": "Mrs Saint Delafield",
|
8345 |
-
"category": "handwriting",
|
8346 |
-
"variants": [
|
8347 |
-
"regular"
|
8348 |
-
],
|
8349 |
-
"subsets": [
|
8350 |
-
"latin-ext",
|
8351 |
-
"latin"
|
8352 |
-
],
|
8353 |
-
"version": "v4",
|
8354 |
-
"lastModified": "2016-02-23",
|
8355 |
-
"files": {
|
8356 |
-
"regular": "http://fonts.gstatic.com/s/mrssaintdelafield/v4/vuWagfFT7bj9lFtZOFBwmjHMBelqWf3tJeGyts2SmKU.ttf"
|
8357 |
-
}
|
8358 |
-
},
|
8359 |
-
{
|
8360 |
-
"kind": "webfonts#webfont",
|
8361 |
-
"family": "Mrs Sheppards",
|
8362 |
-
"category": "handwriting",
|
8363 |
-
"variants": [
|
8364 |
-
"regular"
|
8365 |
-
],
|
8366 |
-
"subsets": [
|
8367 |
-
"latin-ext",
|
8368 |
-
"latin"
|
8369 |
-
],
|
8370 |
-
"version": "v5",
|
8371 |
-
"lastModified": "2016-02-23",
|
8372 |
-
"files": {
|
8373 |
-
"regular": "http://fonts.gstatic.com/s/mrssheppards/v5/2WFsWMV3VUeCz6UVH7UjCn8f0n03UdmQgF_CLvNR2vg.ttf"
|
8374 |
-
}
|
8375 |
-
},
|
8376 |
-
{
|
8377 |
-
"kind": "webfonts#webfont",
|
8378 |
-
"family": "Muli",
|
8379 |
-
"category": "sans-serif",
|
8380 |
-
"variants": [
|
8381 |
-
"300",
|
8382 |
-
"300italic",
|
8383 |
-
"regular",
|
8384 |
-
"italic"
|
8385 |
-
],
|
8386 |
-
"subsets": [
|
8387 |
-
"latin"
|
8388 |
-
],
|
8389 |
-
"version": "v7",
|
8390 |
-
"lastModified": "2016-02-23",
|
8391 |
-
"files": {
|
8392 |
-
"300": "http://fonts.gstatic.com/s/muli/v7/VJw4F3ZHRAZ7Hmg3nQu5YQ.ttf",
|
8393 |
-
"300italic": "http://fonts.gstatic.com/s/muli/v7/s-NKMCru8HiyjEt0ZDoBoA.ttf",
|
8394 |
-
"regular": "http://fonts.gstatic.com/s/muli/v7/KJiP6KznxbALQgfJcDdPAw.ttf",
|
8395 |
-
"italic": "http://fonts.gstatic.com/s/muli/v7/Cg0K_IWANs9xkNoxV7H1_w.ttf"
|
8396 |
-
}
|
8397 |
-
},
|
8398 |
-
{
|
8399 |
-
"kind": "webfonts#webfont",
|
8400 |
-
"family": "Mystery Quest",
|
8401 |
-
"category": "display",
|
8402 |
-
"variants": [
|
8403 |
-
"regular"
|
8404 |
-
],
|
8405 |
-
"subsets": [
|
8406 |
-
"latin-ext",
|
8407 |
-
"latin"
|
8408 |
-
],
|
8409 |
-
"version": "v4",
|
8410 |
-
"lastModified": "2016-02-23",
|
8411 |
-
"files": {
|
8412 |
-
"regular": "http://fonts.gstatic.com/s/mysteryquest/v4/467jJvg0c7HgucvBB9PLDyeUSrabuTpOsMEiRLtKwk0.ttf"
|
8413 |
-
}
|
8414 |
-
},
|
8415 |
-
{
|
8416 |
-
"kind": "webfonts#webfont",
|
8417 |
-
"family": "NTR",
|
8418 |
-
"category": "sans-serif",
|
8419 |
-
"variants": [
|
8420 |
-
"regular"
|
8421 |
-
],
|
8422 |
-
"subsets": [
|
8423 |
-
"telugu",
|
8424 |
-
"latin"
|
8425 |
-
],
|
8426 |
-
"version": "v4",
|
8427 |
-
"lastModified": "2016-02-23",
|
8428 |
-
"files": {
|
8429 |
-
"regular": "http://fonts.gstatic.com/s/ntr/v4/e7H4ZLtGfVOYyOupo6T12g.ttf"
|
8430 |
-
}
|
8431 |
-
},
|
8432 |
-
{
|
8433 |
-
"kind": "webfonts#webfont",
|
8434 |
-
"family": "Neucha",
|
8435 |
-
"category": "handwriting",
|
8436 |
-
"variants": [
|
8437 |
-
"regular"
|
8438 |
-
],
|
8439 |
-
"subsets": [
|
8440 |
-
"cyrillic",
|
8441 |
-
"latin"
|
8442 |
-
],
|
8443 |
-
"version": "v8",
|
8444 |
-
"lastModified": "2016-02-23",
|
8445 |
-
"files": {
|
8446 |
-
"regular": "http://fonts.gstatic.com/s/neucha/v8/bijdhB-TzQdtpl0ykhGh4Q.ttf"
|
8447 |
-
}
|
8448 |
-
},
|
8449 |
-
{
|
8450 |
-
"kind": "webfonts#webfont",
|
8451 |
-
"family": "Neuton",
|
8452 |
-
"category": "serif",
|
8453 |
-
"variants": [
|
8454 |
-
"200",
|
8455 |
-
"300",
|
8456 |
-
"regular",
|
8457 |
-
"italic",
|
8458 |
-
"700",
|
8459 |
-
"800"
|
8460 |
-
],
|
8461 |
-
"subsets": [
|
8462 |
-
"latin-ext",
|
8463 |
-
"latin"
|
8464 |
-
],
|
8465 |
-
"version": "v8",
|
8466 |
-
"lastModified": "2016-02-23",
|
8467 |
-
"files": {
|
8468 |
-
"200": "http://fonts.gstatic.com/s/neuton/v8/DA3Mkew3XqSkPpi1f4tJow.ttf",
|
8469 |
-
"300": "http://fonts.gstatic.com/s/neuton/v8/xrc_aZ2hx-gdeV0mlY8Vww.ttf",
|
8470 |
-
"regular": "http://fonts.gstatic.com/s/neuton/v8/9R-MGIOQUdjAVeB6nE6PcQ.ttf",
|
8471 |
-
"italic": "http://fonts.gstatic.com/s/neuton/v8/uVMT3JOB5BNFi3lgPp6kEg.ttf",
|
8472 |
-
"700": "http://fonts.gstatic.com/s/neuton/v8/gnWpkWY7DirkKiovncYrfg.ttf",
|
8473 |
-
"800": "http://fonts.gstatic.com/s/neuton/v8/XPzBQV4lY6enLxQG9cF1jw.ttf"
|
8474 |
-
}
|
8475 |
-
},
|
8476 |
-
{
|
8477 |
-
"kind": "webfonts#webfont",
|
8478 |
-
"family": "New Rocker",
|
8479 |
-
"category": "display",
|
8480 |
-
"variants": [
|
8481 |
-
"regular"
|
8482 |
-
],
|
8483 |
-
"subsets": [
|
8484 |
-
"latin-ext",
|
8485 |
-
"latin"
|
8486 |
-
],
|
8487 |
-
"version": "v5",
|
8488 |
-
"lastModified": "2016-02-23",
|
8489 |
-
"files": {
|
8490 |
-
"regular": "http://fonts.gstatic.com/s/newrocker/v5/EFUWzHJedEkpW399zYOHofesZW2xOQ-xsNqO47m55DA.ttf"
|
8491 |
-
}
|
8492 |
-
},
|
8493 |
-
{
|
8494 |
-
"kind": "webfonts#webfont",
|
8495 |
-
"family": "News Cycle",
|
8496 |
-
"category": "sans-serif",
|
8497 |
-
"variants": [
|
8498 |
-
"regular",
|
8499 |
-
"700"
|
8500 |
-
],
|
8501 |
-
"subsets": [
|
8502 |
-
"latin-ext",
|
8503 |
-
"latin"
|
8504 |
-
],
|
8505 |
-
"version": "v13",
|
8506 |
-
"lastModified": "2015-04-16",
|
8507 |
-
"files": {
|
8508 |
-
"regular": "http://fonts.gstatic.com/s/newscycle/v13/xyMAr8VfiUzIOvS1abHJO_esZW2xOQ-xsNqO47m55DA.ttf",
|
8509 |
-
"700": "http://fonts.gstatic.com/s/newscycle/v13/G28Ny31cr5orMqEQy6ljtwJKKGfqHaYFsRG-T3ceEVo.ttf"
|
8510 |
-
}
|
8511 |
-
},
|
8512 |
-
{
|
8513 |
-
"kind": "webfonts#webfont",
|
8514 |
-
"family": "Niconne",
|
8515 |
-
"category": "handwriting",
|
8516 |
-
"variants": [
|
8517 |
-
"regular"
|
8518 |
-
],
|
8519 |
-
"subsets": [
|
8520 |
-
"latin-ext",
|
8521 |
-
"latin"
|
8522 |
-
],
|
8523 |
-
"version": "v6",
|
8524 |
-
"lastModified": "2016-02-23",
|
8525 |
-
"files": {
|
8526 |
-
"regular": "http://fonts.gstatic.com/s/niconne/v6/ZA-mFw2QNXodx5y7kfELBg.ttf"
|
8527 |
-
}
|
8528 |
-
},
|
8529 |
-
{
|
8530 |
-
"kind": "webfonts#webfont",
|
8531 |
-
"family": "Nixie One",
|
8532 |
-
"category": "display",
|
8533 |
-
"variants": [
|
8534 |
-
"regular"
|
8535 |
-
],
|
8536 |
-
"subsets": [
|
8537 |
-
"latin"
|
8538 |
-
],
|
8539 |
-
"version": "v7",
|
8540 |
-
"lastModified": "2016-02-23",
|
8541 |
-
"files": {
|
8542 |
-
"regular": "http://fonts.gstatic.com/s/nixieone/v7/h6kQfmzm0Shdnp3eswRaqQ.ttf"
|
8543 |
-
}
|
8544 |
-
},
|
8545 |
-
{
|
8546 |
-
"kind": "webfonts#webfont",
|
8547 |
-
"family": "Nobile",
|
8548 |
-
"category": "sans-serif",
|
8549 |
-
"variants": [
|
8550 |
-
"regular",
|
8551 |
-
"italic",
|
8552 |
-
"700",
|
8553 |
-
"700italic"
|
8554 |
-
],
|
8555 |
-
"subsets": [
|
8556 |
-
"latin"
|
8557 |
-
],
|
8558 |
-
"version": "v7",
|
8559 |
-
"lastModified": "2016-02-23",
|
8560 |
-
"files": {
|
8561 |
-
"regular": "http://fonts.gstatic.com/s/nobile/v7/lC_lPi1ddtN38iXTCRh6ow.ttf",
|
8562 |
-
"italic": "http://fonts.gstatic.com/s/nobile/v7/vGmrpKzWQQSrb-PR6FWBIA.ttf",
|
8563 |
-
"700": "http://fonts.gstatic.com/s/nobile/v7/9p6M-Yrg_r_QPmSD1skrOg.ttf",
|
8564 |
-
"700italic": "http://fonts.gstatic.com/s/nobile/v7/oQ1eYPaXV638N03KvsNvyKCWcynf_cDxXwCLxiixG1c.ttf"
|
8565 |
-
}
|
8566 |
-
},
|
8567 |
-
{
|
8568 |
-
"kind": "webfonts#webfont",
|
8569 |
-
"family": "Nokora",
|
8570 |
-
"category": "serif",
|
8571 |
-
"variants": [
|
8572 |
-
"regular",
|
8573 |
-
"700"
|
8574 |
-
],
|
8575 |
-
"subsets": [
|
8576 |
-
"khmer"
|
8577 |
-
],
|
8578 |
-
"version": "v9",
|
8579 |
-
"lastModified": "2015-04-06",
|
8580 |
-
"files": {
|
8581 |
-
"regular": "http://fonts.gstatic.com/s/nokora/v9/dRyz1JfnyKPNaRcBNX9F9A.ttf",
|
8582 |
-
"700": "http://fonts.gstatic.com/s/nokora/v9/QMqqa4QEOhQpiig3cAPmbQ.ttf"
|
8583 |
-
}
|
8584 |
-
},
|
8585 |
-
{
|
8586 |
-
"kind": "webfonts#webfont",
|
8587 |
-
"family": "Norican",
|
8588 |
-
"category": "handwriting",
|
8589 |
-
"variants": [
|
8590 |
-
"regular"
|
8591 |
-
],
|
8592 |
-
"subsets": [
|
8593 |
-
"latin-ext",
|
8594 |
-
"latin"
|
8595 |
-
],
|
8596 |
-
"version": "v4",
|
8597 |
-
"lastModified": "2016-02-23",
|
8598 |
-
"files": {
|
8599 |
-
"regular": "http://fonts.gstatic.com/s/norican/v4/SHnSqhYAWG5sZTWcPzEHig.ttf"
|
8600 |
-
}
|
8601 |
-
},
|
8602 |
-
{
|
8603 |
-
"kind": "webfonts#webfont",
|
8604 |
-
"family": "Nosifer",
|
8605 |
-
"category": "display",
|
8606 |
-
"variants": [
|
8607 |
-
"regular"
|
8608 |
-
],
|
8609 |
-
"subsets": [
|
8610 |
-
"latin-ext",
|
8611 |
-
"latin"
|
8612 |
-
],
|
8613 |
-
"version": "v5",
|
8614 |
-
"lastModified": "2016-02-23",
|
8615 |
-
"files": {
|
8616 |
-
"regular": "http://fonts.gstatic.com/s/nosifer/v5/7eJGoIuHRrtcG00j6CptSA.ttf"
|
8617 |
-
}
|
8618 |
-
},
|
8619 |
-
{
|
8620 |
-
"kind": "webfonts#webfont",
|
8621 |
-
"family": "Nothing You Could Do",
|
8622 |
-
"category": "handwriting",
|
8623 |
-
"variants": [
|
8624 |
-
"regular"
|
8625 |
-
],
|
8626 |
-
"subsets": [
|
8627 |
-
"latin"
|
8628 |
-
],
|
8629 |
-
"version": "v6",
|
8630 |
-
"lastModified": "2016-02-23",
|
8631 |
-
"files": {
|
8632 |
-
"regular": "http://fonts.gstatic.com/s/nothingyoucoulddo/v6/jpk1K3jbJoyoK0XKaSyQAf-TpkXjXYGWiJZAEtBRjPU.ttf"
|
8633 |
-
}
|
8634 |
-
},
|
8635 |
-
{
|
8636 |
-
"kind": "webfonts#webfont",
|
8637 |
-
"family": "Noticia Text",
|
8638 |
-
"category": "serif",
|
8639 |
-
"variants": [
|
8640 |
-
"regular",
|
8641 |
-
"italic",
|
8642 |
-
"700",
|
8643 |
-
"700italic"
|
8644 |
-
],
|
8645 |
-
"subsets": [
|
8646 |
-
"latin-ext",
|
8647 |
-
"vietnamese",
|
8648 |
-
"latin"
|
8649 |
-
],
|
8650 |
-
"version": "v6",
|
8651 |
-
"lastModified": "2016-02-23",
|
8652 |
-
"files": {
|
8653 |
-
"regular": "http://fonts.gstatic.com/s/noticiatext/v6/wdyV6x3eKpdeUPQ7BJ5uUC3USBnSvpkopQaUR-2r7iU.ttf",
|
8654 |
-
"italic": "http://fonts.gstatic.com/s/noticiatext/v6/dAuxVpkYE_Q_IwIm6elsKPMZXuCXbOrAvx5R0IT5Oyo.ttf",
|
8655 |
-
"700": "http://fonts.gstatic.com/s/noticiatext/v6/pEko-RqEtp45bE2P80AAKUD2ttfZwueP-QU272T9-k4.ttf",
|
8656 |
-
"700italic": "http://fonts.gstatic.com/s/noticiatext/v6/-rQ7V8ARjf28_b7kRa0JuvAs9-1nE9qOqhChW0m4nDE.ttf"
|
8657 |
-
}
|
8658 |
-
},
|
8659 |
-
{
|
8660 |
-
"kind": "webfonts#webfont",
|
8661 |
-
"family": "Noto Sans",
|
8662 |
-
"category": "sans-serif",
|
8663 |
-
"variants": [
|
8664 |
-
"regular",
|
8665 |
-
"italic",
|
8666 |
-
"700",
|
8667 |
-
"700italic"
|
8668 |
-
],
|
8669 |
-
"subsets": [
|
8670 |
-
"devanagari",
|
8671 |
-
"latin-ext",
|
8672 |
-
"greek-ext",
|
8673 |
-
"vietnamese",
|
8674 |
-
"cyrillic-ext",
|
8675 |
-
"cyrillic",
|
8676 |
-
"greek",
|
8677 |
-
"latin"
|
8678 |
-
],
|
8679 |
-
"version": "v6",
|
8680 |
-
"lastModified": "2016-02-23",
|
8681 |
-
"files": {
|
8682 |
-
"regular": "http://fonts.gstatic.com/s/notosans/v6/0Ue9FiUJwVhi4NGfHJS5uA.ttf",
|
8683 |
-
"italic": "http://fonts.gstatic.com/s/notosans/v6/dLcNKMgJ1H5RVoZFraDz0qCWcynf_cDxXwCLxiixG1c.ttf",
|
8684 |
-
"700": "http://fonts.gstatic.com/s/notosans/v6/PIbvSEyHEdL91QLOQRnZ1y3USBnSvpkopQaUR-2r7iU.ttf",
|
8685 |
-
"700italic": "http://fonts.gstatic.com/s/notosans/v6/9Z3uUWMRR7crzm1TjRicDne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
8686 |
-
}
|
8687 |
-
},
|
8688 |
-
{
|
8689 |
-
"kind": "webfonts#webfont",
|
8690 |
-
"family": "Noto Serif",
|
8691 |
-
"category": "serif",
|
8692 |
-
"variants": [
|
8693 |
-
"regular",
|
8694 |
-
"italic",
|
8695 |
-
"700",
|
8696 |
-
"700italic"
|
8697 |
-
],
|
8698 |
-
"subsets": [
|
8699 |
-
"latin-ext",
|
8700 |
-
"greek-ext",
|
8701 |
-
"vietnamese",
|
8702 |
-
"cyrillic-ext",
|
8703 |
-
"cyrillic",
|
8704 |
-
"greek",
|
8705 |
-
"latin"
|
8706 |
-
],
|
8707 |
-
"version": "v4",
|
8708 |
-
"lastModified": "2016-02-23",
|
8709 |
-
"files": {
|
8710 |
-
"regular": "http://fonts.gstatic.com/s/notoserif/v4/zW6mc7bC1CWw8dH0yxY8JfesZW2xOQ-xsNqO47m55DA.ttf",
|
8711 |
-
"italic": "http://fonts.gstatic.com/s/notoserif/v4/HQXBIwLHsOJCNEQeX9kNzy3USBnSvpkopQaUR-2r7iU.ttf",
|
8712 |
-
"700": "http://fonts.gstatic.com/s/notoserif/v4/lJAvZoKA5NttpPc9yc6lPQJKKGfqHaYFsRG-T3ceEVo.ttf",
|
8713 |
-
"700italic": "http://fonts.gstatic.com/s/notoserif/v4/Wreg0Be4tcFGM2t6VWytvED2ttfZwueP-QU272T9-k4.ttf"
|
8714 |
-
}
|
8715 |
-
},
|
8716 |
-
{
|
8717 |
-
"kind": "webfonts#webfont",
|
8718 |
-
"family": "Nova Cut",
|
8719 |
-
"category": "display",
|
8720 |
-
"variants": [
|
8721 |
-
"regular"
|
8722 |
-
],
|
8723 |
-
"subsets": [
|
8724 |
-
"latin"
|
8725 |
-
],
|
8726 |
-
"version": "v8",
|
8727 |
-
"lastModified": "2016-02-23",
|
8728 |
-
"files": {
|
8729 |
-
"regular": "http://fonts.gstatic.com/s/novacut/v8/6q12jWcBvj0KO2cMRP97tA.ttf"
|
8730 |
-
}
|
8731 |
-
},
|
8732 |
-
{
|
8733 |
-
"kind": "webfonts#webfont",
|
8734 |
-
"family": "Nova Flat",
|
8735 |
-
"category": "display",
|
8736 |
-
"variants": [
|
8737 |
-
"regular"
|
8738 |
-
],
|
8739 |
-
"subsets": [
|
8740 |
-
"latin"
|
8741 |
-
],
|
8742 |
-
"version": "v8",
|
8743 |
-
"lastModified": "2016-02-23",
|
8744 |
-
"files": {
|
8745 |
-
"regular": "http://fonts.gstatic.com/s/novaflat/v8/pK7a0CoGzI684qe_XSHBqQ.ttf"
|
8746 |
-
}
|
8747 |
-
},
|
8748 |
-
{
|
8749 |
-
"kind": "webfonts#webfont",
|
8750 |
-
"family": "Nova Mono",
|
8751 |
-
"category": "monospace",
|
8752 |
-
"variants": [
|
8753 |
-
"regular"
|
8754 |
-
],
|
8755 |
-
"subsets": [
|
8756 |
-
"greek",
|
8757 |
-
"latin"
|
8758 |
-
],
|
8759 |
-
"version": "v7",
|
8760 |
-
"lastModified": "2016-02-23",
|
8761 |
-
"files": {
|
8762 |
-
"regular": "http://fonts.gstatic.com/s/novamono/v7/6-SChr5ZIaaasJFBkgrLNw.ttf"
|
8763 |
-
}
|
8764 |
-
},
|
8765 |
-
{
|
8766 |
-
"kind": "webfonts#webfont",
|
8767 |
-
"family": "Nova Oval",
|
8768 |
-
"category": "display",
|
8769 |
-
"variants": [
|
8770 |
-
"regular"
|
8771 |
-
],
|
8772 |
-
"subsets": [
|
8773 |
-
"latin"
|
8774 |
-
],
|
8775 |
-
"version": "v8",
|
8776 |
-
"lastModified": "2016-02-23",
|
8777 |
-
"files": {
|
8778 |
-
"regular": "http://fonts.gstatic.com/s/novaoval/v8/VuukVpKP8BwUf8o9W5LYQQ.ttf"
|
8779 |
-
}
|
8780 |
-
},
|
8781 |
-
{
|
8782 |
-
"kind": "webfonts#webfont",
|
8783 |
-
"family": "Nova Round",
|
8784 |
-
"category": "display",
|
8785 |
-
"variants": [
|
8786 |
-
"regular"
|
8787 |
-
],
|
8788 |
-
"subsets": [
|
8789 |
-
"latin"
|
8790 |
-
],
|
8791 |
-
"version": "v8",
|
8792 |
-
"lastModified": "2016-02-23",
|
8793 |
-
"files": {
|
8794 |
-
"regular": "http://fonts.gstatic.com/s/novaround/v8/7-cK3Ari_8XYYFgVMxVhDvesZW2xOQ-xsNqO47m55DA.ttf"
|
8795 |
-
}
|
8796 |
-
},
|
8797 |
-
{
|
8798 |
-
"kind": "webfonts#webfont",
|
8799 |
-
"family": "Nova Script",
|
8800 |
-
"category": "display",
|
8801 |
-
"variants": [
|
8802 |
-
"regular"
|
8803 |
-
],
|
8804 |
-
"subsets": [
|
8805 |
-
"latin"
|
8806 |
-
],
|
8807 |
-
"version": "v8",
|
8808 |
-
"lastModified": "2016-02-23",
|
8809 |
-
"files": {
|
8810 |
-
"regular": "http://fonts.gstatic.com/s/novascript/v8/dEvxQDLgx1M1TKY-NmBWYaCWcynf_cDxXwCLxiixG1c.ttf"
|
8811 |
-
}
|
8812 |
-
},
|
8813 |
-
{
|
8814 |
-
"kind": "webfonts#webfont",
|
8815 |
-
"family": "Nova Slim",
|
8816 |
-
"category": "display",
|
8817 |
-
"variants": [
|
8818 |
-
"regular"
|
8819 |
-
],
|
8820 |
-
"subsets": [
|
8821 |
-
"latin"
|
8822 |
-
],
|
8823 |
-
"version": "v8",
|
8824 |
-
"lastModified": "2016-02-23",
|
8825 |
-
"files": {
|
8826 |
-
"regular": "http://fonts.gstatic.com/s/novaslim/v8/rPYXC81_VL2EW-4CzBX65g.ttf"
|
8827 |
-
}
|
8828 |
-
},
|
8829 |
-
{
|
8830 |
-
"kind": "webfonts#webfont",
|
8831 |
-
"family": "Nova Square",
|
8832 |
-
"category": "display",
|
8833 |
-
"variants": [
|
8834 |
-
"regular"
|
8835 |
-
],
|
8836 |
-
"subsets": [
|
8837 |
-
"latin"
|
8838 |
-
],
|
8839 |
-
"version": "v8",
|
8840 |
-
"lastModified": "2016-02-23",
|
8841 |
-
"files": {
|
8842 |
-
"regular": "http://fonts.gstatic.com/s/novasquare/v8/BcBzXoaDzYX78rquGXVuSqCWcynf_cDxXwCLxiixG1c.ttf"
|
8843 |
-
}
|
8844 |
-
},
|
8845 |
-
{
|
8846 |
-
"kind": "webfonts#webfont",
|
8847 |
-
"family": "Numans",
|
8848 |
-
"category": "sans-serif",
|
8849 |
-
"variants": [
|
8850 |
-
"regular"
|
8851 |
-
],
|
8852 |
-
"subsets": [
|
8853 |
-
"latin"
|
8854 |
-
],
|
8855 |
-
"version": "v6",
|
8856 |
-
"lastModified": "2016-02-23",
|
8857 |
-
"files": {
|
8858 |
-
"regular": "http://fonts.gstatic.com/s/numans/v6/g5snI2p6OEjjTNmTHyBdiQ.ttf"
|
8859 |
-
}
|
8860 |
-
},
|
8861 |
-
{
|
8862 |
-
"kind": "webfonts#webfont",
|
8863 |
-
"family": "Nunito",
|
8864 |
-
"category": "sans-serif",
|
8865 |
-
"variants": [
|
8866 |
-
"300",
|
8867 |
-
"regular",
|
8868 |
-
"700"
|
8869 |
-
],
|
8870 |
-
"subsets": [
|
8871 |
-
"latin"
|
8872 |
-
],
|
8873 |
-
"version": "v7",
|
8874 |
-
"lastModified": "2016-02-23",
|
8875 |
-
"files": {
|
8876 |
-
"300": "http://fonts.gstatic.com/s/nunito/v7/zXQvrWBJqUooM7Xv98MrQw.ttf",
|
8877 |
-
"regular": "http://fonts.gstatic.com/s/nunito/v7/ySZTeT3IuzJj0GK6uGpbBg.ttf",
|
8878 |
-
"700": "http://fonts.gstatic.com/s/nunito/v7/aEdlqgMuYbpe4U3TnqOQMA.ttf"
|
8879 |
-
}
|
8880 |
-
},
|
8881 |
-
{
|
8882 |
-
"kind": "webfonts#webfont",
|
8883 |
-
"family": "Odor Mean Chey",
|
8884 |
-
"category": "display",
|
8885 |
-
"variants": [
|
8886 |
-
"regular"
|
8887 |
-
],
|
8888 |
-
"subsets": [
|
8889 |
-
"khmer"
|
8890 |
-
],
|
8891 |
-
"version": "v8",
|
8892 |
-
"lastModified": "2015-04-03",
|
8893 |
-
"files": {
|
8894 |
-
"regular": "http://fonts.gstatic.com/s/odormeanchey/v8/GK3E7EjPoBkeZhYshGFo0eVKG8sq4NyGgdteJLvqLDs.ttf"
|
8895 |
-
}
|
8896 |
-
},
|
8897 |
-
{
|
8898 |
-
"kind": "webfonts#webfont",
|
8899 |
-
"family": "Offside",
|
8900 |
-
"category": "display",
|
8901 |
-
"variants": [
|
8902 |
-
"regular"
|
8903 |
-
],
|
8904 |
-
"subsets": [
|
8905 |
-
"latin"
|
8906 |
-
],
|
8907 |
-
"version": "v4",
|
8908 |
-
"lastModified": "2016-02-23",
|
8909 |
-
"files": {
|
8910 |
-
"regular": "http://fonts.gstatic.com/s/offside/v4/v0C913SB8wqQUvcu1faUqw.ttf"
|
8911 |
-
}
|
8912 |
-
},
|
8913 |
-
{
|
8914 |
-
"kind": "webfonts#webfont",
|
8915 |
-
"family": "Old Standard TT",
|
8916 |
-
"category": "serif",
|
8917 |
-
"variants": [
|
8918 |
-
"regular",
|
8919 |
-
"italic",
|
8920 |
-
"700"
|
8921 |
-
],
|
8922 |
-
"subsets": [
|
8923 |
-
"latin"
|
8924 |
-
],
|
8925 |
-
"version": "v7",
|
8926 |
-
"lastModified": "2016-02-23",
|
8927 |
-
"files": {
|
8928 |
-
"regular": "http://fonts.gstatic.com/s/oldstandardtt/v7/n6RTCDcIPWSE8UNBa4k-DLcB5jyhm1VsHs65c3QNDr0.ttf",
|
8929 |
-
"italic": "http://fonts.gstatic.com/s/oldstandardtt/v7/QQT_AUSp4AV4dpJfIN7U5PWrQzeMtsHf8QsWQ2cZg3c.ttf",
|
8930 |
-
"700": "http://fonts.gstatic.com/s/oldstandardtt/v7/5Ywdce7XEbTSbxs__4X1_HJqbZqK7TdZ58X80Q_Lw8Y.ttf"
|
8931 |
-
}
|
8932 |
-
},
|
8933 |
-
{
|
8934 |
-
"kind": "webfonts#webfont",
|
8935 |
-
"family": "Oldenburg",
|
8936 |
-
"category": "display",
|
8937 |
-
"variants": [
|
8938 |
-
"regular"
|
8939 |
-
],
|
8940 |
-
"subsets": [
|
8941 |
-
"latin-ext",
|
8942 |
-
"latin"
|
8943 |
-
],
|
8944 |
-
"version": "v4",
|
8945 |
-
"lastModified": "2016-02-23",
|
8946 |
-
"files": {
|
8947 |
-
"regular": "http://fonts.gstatic.com/s/oldenburg/v4/dqA_M_uoCVXZbCO-oKBTnQ.ttf"
|
8948 |
-
}
|
8949 |
-
},
|
8950 |
-
{
|
8951 |
-
"kind": "webfonts#webfont",
|
8952 |
-
"family": "Oleo Script",
|
8953 |
-
"category": "display",
|
8954 |
-
"variants": [
|
8955 |
-
"regular",
|
8956 |
-
"700"
|
8957 |
-
],
|
8958 |
-
"subsets": [
|
8959 |
-
"latin-ext",
|
8960 |
-
"latin"
|
8961 |
-
],
|
8962 |
-
"version": "v5",
|
8963 |
-
"lastModified": "2016-02-23",
|
8964 |
-
"files": {
|
8965 |
-
"regular": "http://fonts.gstatic.com/s/oleoscript/v5/21stZcmPyzbQVXtmGegyqKCWcynf_cDxXwCLxiixG1c.ttf",
|
8966 |
-
"700": "http://fonts.gstatic.com/s/oleoscript/v5/hudNQFKFl98JdNnlo363fne1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
8967 |
-
}
|
8968 |
-
},
|
8969 |
-
{
|
8970 |
-
"kind": "webfonts#webfont",
|
8971 |
-
"family": "Oleo Script Swash Caps",
|
8972 |
-
"category": "display",
|
8973 |
-
"variants": [
|
8974 |
-
"regular",
|
8975 |
-
"700"
|
8976 |
-
],
|
8977 |
-
"subsets": [
|
8978 |
-
"latin-ext",
|
8979 |
-
"latin"
|
8980 |
-
],
|
8981 |
-
"version": "v4",
|
8982 |
-
"lastModified": "2016-02-23",
|
8983 |
-
"files": {
|
8984 |
-
"regular": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/vdWhGqsBUAP-FF3NOYTe4iMF4kXAPemmyaDpMXQ31P0.ttf",
|
8985 |
-
"700": "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/HMO3ftxA9AU5floml9c755reFYaXZ4zuJXJ8fr8OO1g.ttf"
|
8986 |
-
}
|
8987 |
-
},
|
8988 |
-
{
|
8989 |
-
"kind": "webfonts#webfont",
|
8990 |
-
"family": "Open Sans",
|
8991 |
-
"category": "sans-serif",
|
8992 |
-
"variants": [
|
8993 |
-
"300",
|
8994 |
-
"300italic",
|
8995 |
-
"regular",
|
8996 |
-
"italic",
|
8997 |
-
"600",
|
8998 |
-
"600italic",
|
8999 |
-
"700",
|
9000 |
-
"700italic",
|
9001 |
-
"800",
|
9002 |
-
"800italic"
|
9003 |
-
],
|
9004 |
-
"subsets": [
|
9005 |
-
"latin-ext",
|
9006 |
-
"greek-ext",
|
9007 |
-
"vietnamese",
|
9008 |
-
"cyrillic-ext",
|
9009 |
-
"cyrillic",
|
9010 |
-
"greek",
|
9011 |
-
"latin"
|
9012 |
-
],
|
9013 |
-
"version": "v13",
|
9014 |
-
"lastModified": "2016-02-23",
|
9015 |
-
"files": {
|
9016 |
-
"300": "http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTS3USBnSvpkopQaUR-2r7iU.ttf",
|
9017 |
-
"300italic": "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxi9-WlPSxbfiI49GsXo3q0g.ttf",
|
9018 |
-
"regular": "http://fonts.gstatic.com/s/opensans/v13/IgZJs4-7SA1XX_edsoXWog.ttf",
|
9019 |
-
"italic": "http://fonts.gstatic.com/s/opensans/v13/O4NhV7_qs9r9seTo7fnsVKCWcynf_cDxXwCLxiixG1c.ttf",
|
9020 |
-
"600": "http://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSi3USBnSvpkopQaUR-2r7iU.ttf",
|
9021 |
-
"600italic": "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxpZ7xm-Bj30Bj2KNdXDzSZg.ttf",
|
9022 |
-
"700": "http://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzC3USBnSvpkopQaUR-2r7iU.ttf",
|
9023 |
-
"700italic": "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
9024 |
-
"800": "http://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hi3USBnSvpkopQaUR-2r7iU.ttf",
|
9025 |
-
"800italic": "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxg89PwPrYLaRFJ-HNCU9NbA.ttf"
|
9026 |
-
}
|
9027 |
-
},
|
9028 |
-
{
|
9029 |
-
"kind": "webfonts#webfont",
|
9030 |
-
"family": "Open Sans Condensed",
|
9031 |
-
"category": "sans-serif",
|
9032 |
-
"variants": [
|
9033 |
-
"300",
|
9034 |
-
"300italic",
|
9035 |
-
"700"
|
9036 |
-
],
|
9037 |
-
"subsets": [
|
9038 |
-
"latin-ext",
|
9039 |
-
"greek-ext",
|
9040 |
-
"vietnamese",
|
9041 |
-
"cyrillic-ext",
|
9042 |
-
"cyrillic",
|
9043 |
-
"greek",
|
9044 |
-
"latin"
|
9045 |
-
],
|
9046 |
-
"version": "v10",
|
9047 |
-
"lastModified": "2016-02-23",
|
9048 |
-
"files": {
|
9049 |
-
"300": "http://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xEMwSSh38KQVJx4ABtsZTnA.ttf",
|
9050 |
-
"300italic": "http://fonts.gstatic.com/s/opensanscondensed/v10/jIXlqT1WKafUSwj6s9AzV4_LkTZ_uhAwfmGJ084hlvM.ttf",
|
9051 |
-
"700": "http://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xBEM87DM3yorPOrvA-vB930.ttf"
|
9052 |
-
}
|
9053 |
-
},
|
9054 |
-
{
|
9055 |
-
"kind": "webfonts#webfont",
|
9056 |
-
"family": "Oranienbaum",
|
9057 |
-
"category": "serif",
|
9058 |
-
"variants": [
|
9059 |
-
"regular"
|
9060 |
-
],
|
9061 |
-
"subsets": [
|
9062 |
-
"latin-ext",
|
9063 |
-
"cyrillic-ext",
|
9064 |
-
"cyrillic",
|
9065 |
-
"latin"
|
9066 |
-
],
|
9067 |
-
"version": "v5",
|
9068 |
-
"lastModified": "2016-02-23",
|
9069 |
-
"files": {
|
9070 |
-
"regular": "http://fonts.gstatic.com/s/oranienbaum/v5/M98jYwCSn0PaFhXXgviCoaCWcynf_cDxXwCLxiixG1c.ttf"
|
9071 |
-
}
|
9072 |
-
},
|
9073 |
-
{
|
9074 |
-
"kind": "webfonts#webfont",
|
9075 |
-
"family": "Orbitron",
|
9076 |
-
"category": "sans-serif",
|
9077 |
-
"variants": [
|
9078 |
-
"regular",
|
9079 |
-
"500",
|
9080 |
-
"700",
|
9081 |
-
"900"
|
9082 |
-
],
|
9083 |
-
"subsets": [
|
9084 |
-
"latin"
|
9085 |
-
],
|
9086 |
-
"version": "v7",
|
9087 |
-
"lastModified": "2016-02-23",
|
9088 |
-
"files": {
|
9089 |
-
"regular": "http://fonts.gstatic.com/s/orbitron/v7/DY8swouAZjR3RaUPRf0HDQ.ttf",
|
9090 |
-
"500": "http://fonts.gstatic.com/s/orbitron/v7/p-y_ffzMdo5JN_7ia0vYEqCWcynf_cDxXwCLxiixG1c.ttf",
|
9091 |
-
"700": "http://fonts.gstatic.com/s/orbitron/v7/PS9_6SLkY1Y6OgPO3APr6qCWcynf_cDxXwCLxiixG1c.ttf",
|
9092 |
-
"900": "http://fonts.gstatic.com/s/orbitron/v7/2I3-8i9hT294TE_pyjy9SaCWcynf_cDxXwCLxiixG1c.ttf"
|
9093 |
-
}
|
9094 |
-
},
|
9095 |
-
{
|
9096 |
-
"kind": "webfonts#webfont",
|
9097 |
-
"family": "Oregano",
|
9098 |
-
"category": "display",
|
9099 |
-
"variants": [
|
9100 |
-
"regular",
|
9101 |
-
"italic"
|
9102 |
-
],
|
9103 |
-
"subsets": [
|
9104 |
-
"latin-ext",
|
9105 |
-
"latin"
|
9106 |
-
],
|
9107 |
-
"version": "v4",
|
9108 |
-
"lastModified": "2016-02-23",
|
9109 |
-
"files": {
|
9110 |
-
"regular": "http://fonts.gstatic.com/s/oregano/v4/UiLhqNixVv2EpjRoBG6axA.ttf",
|
9111 |
-
"italic": "http://fonts.gstatic.com/s/oregano/v4/_iwqGEht6XsAuEaCbYG64Q.ttf"
|
9112 |
-
}
|
9113 |
-
},
|
9114 |
-
{
|
9115 |
-
"kind": "webfonts#webfont",
|
9116 |
-
"family": "Orienta",
|
9117 |
-
"category": "sans-serif",
|
9118 |
-
"variants": [
|
9119 |
-
"regular"
|
9120 |
-
],
|
9121 |
-
"subsets": [
|
9122 |
-
"latin-ext",
|
9123 |
-
"latin"
|
9124 |
-
],
|
9125 |
-
"version": "v4",
|
9126 |
-
"lastModified": "2016-02-23",
|
9127 |
-
"files": {
|
9128 |
-
"regular": "http://fonts.gstatic.com/s/orienta/v4/_NKSk93mMs0xsqtfjCsB3Q.ttf"
|
9129 |
-
}
|
9130 |
-
},
|
9131 |
-
{
|
9132 |
-
"kind": "webfonts#webfont",
|
9133 |
-
"family": "Original Surfer",
|
9134 |
-
"category": "display",
|
9135 |
-
"variants": [
|
9136 |
-
"regular"
|
9137 |
-
],
|
9138 |
-
"subsets": [
|
9139 |
-
"latin"
|
9140 |
-
],
|
9141 |
-
"version": "v5",
|
9142 |
-
"lastModified": "2016-02-23",
|
9143 |
-
"files": {
|
9144 |
-
"regular": "http://fonts.gstatic.com/s/originalsurfer/v5/gdHw6HpSIN4D6Xt7pi1-qIkEz33TDwAZczo_6fY7eg0.ttf"
|
9145 |
-
}
|
9146 |
-
},
|
9147 |
-
{
|
9148 |
-
"kind": "webfonts#webfont",
|
9149 |
-
"family": "Oswald",
|
9150 |
-
"category": "sans-serif",
|
9151 |
-
"variants": [
|
9152 |
-
"300",
|
9153 |
-
"regular",
|
9154 |
-
"700"
|
9155 |
-
],
|
9156 |
-
"subsets": [
|
9157 |
-
"latin-ext",
|
9158 |
-
"latin"
|
9159 |
-
],
|
9160 |
-
"version": "v10",
|
9161 |
-
"lastModified": "2016-02-23",
|
9162 |
-
"files": {
|
9163 |
-
"300": "http://fonts.gstatic.com/s/oswald/v10/y3tZpCdiRD4oNRRYFcAR5Q.ttf",
|
9164 |
-
"regular": "http://fonts.gstatic.com/s/oswald/v10/uLEd2g2vJglLPfsBF91DCg.ttf",
|
9165 |
-
"700": "http://fonts.gstatic.com/s/oswald/v10/7wj8ldV_5Ti37rHa0m1DDw.ttf"
|
9166 |
-
}
|
9167 |
-
},
|
9168 |
-
{
|
9169 |
-
"kind": "webfonts#webfont",
|
9170 |
-
"family": "Over the Rainbow",
|
9171 |
-
"category": "handwriting",
|
9172 |
-
"variants": [
|
9173 |
-
"regular"
|
9174 |
-
],
|
9175 |
-
"subsets": [
|
9176 |
-
"latin"
|
9177 |
-
],
|
9178 |
-
"version": "v7",
|
9179 |
-
"lastModified": "2016-02-23",
|
9180 |
-
"files": {
|
9181 |
-
"regular": "http://fonts.gstatic.com/s/overtherainbow/v7/6gp-gkpI2kie2dHQQLM2jQBdxkZd83xOSx-PAQ2QmiI.ttf"
|
9182 |
-
}
|
9183 |
-
},
|
9184 |
-
{
|
9185 |
-
"kind": "webfonts#webfont",
|
9186 |
-
"family": "Overlock",
|
9187 |
-
"category": "display",
|
9188 |
-
"variants": [
|
9189 |
-
"regular",
|
9190 |
-
"italic",
|
9191 |
-
"700",
|
9192 |
-
"700italic",
|
9193 |
-
"900",
|
9194 |
-
"900italic"
|
9195 |
-
],
|
9196 |
-
"subsets": [
|
9197 |
-
"latin-ext",
|
9198 |
-
"latin"
|
9199 |
-
],
|
9200 |
-
"version": "v5",
|
9201 |
-
"lastModified": "2016-02-23",
|
9202 |
-
"files": {
|
9203 |
-
"regular": "http://fonts.gstatic.com/s/overlock/v5/Z8oYsGi88-E1cUB8YBFMAg.ttf",
|
9204 |
-
"italic": "http://fonts.gstatic.com/s/overlock/v5/rq6EacukHROOBrFrK_zF6_esZW2xOQ-xsNqO47m55DA.ttf",
|
9205 |
-
"700": "http://fonts.gstatic.com/s/overlock/v5/Fexr8SqXM8Bm_gEVUA7AKaCWcynf_cDxXwCLxiixG1c.ttf",
|
9206 |
-
"700italic": "http://fonts.gstatic.com/s/overlock/v5/wFWnYgeXKYBks6gEUwYnfAJKKGfqHaYFsRG-T3ceEVo.ttf",
|
9207 |
-
"900": "http://fonts.gstatic.com/s/overlock/v5/YPJCVTT8ZbG3899l_-KIGqCWcynf_cDxXwCLxiixG1c.ttf",
|
9208 |
-
"900italic": "http://fonts.gstatic.com/s/overlock/v5/iOZhxT2zlg7W5ij_lb-oDp0EAVxt0G0biEntp43Qt6E.ttf"
|
9209 |
-
}
|
9210 |
-
},
|
9211 |
-
{
|
9212 |
-
"kind": "webfonts#webfont",
|
9213 |
-
"family": "Overlock SC",
|
9214 |
-
"category": "display",
|
9215 |
-
"variants": [
|
9216 |
-
"regular"
|
9217 |
-
],
|
9218 |
-
"subsets": [
|
9219 |
-
"latin-ext",
|
9220 |
-
"latin"
|
9221 |
-
],
|
9222 |
-
"version": "v5",
|
9223 |
-
"lastModified": "2016-02-23",
|
9224 |
-
"files": {
|
9225 |
-
"regular": "http://fonts.gstatic.com/s/overlocksc/v5/8D7HYDsvS_g1GhBnlHzgzaCWcynf_cDxXwCLxiixG1c.ttf"
|
9226 |
-
}
|
9227 |
-
},
|
9228 |
-
{
|
9229 |
-
"kind": "webfonts#webfont",
|
9230 |
-
"family": "Ovo",
|
9231 |
-
"category": "serif",
|
9232 |
-
"variants": [
|
9233 |
-
"regular"
|
9234 |
-
],
|
9235 |
-
"subsets": [
|
9236 |
-
"latin"
|
9237 |
-
],
|
9238 |
-
"version": "v7",
|
9239 |
-
"lastModified": "2016-02-23",
|
9240 |
-
"files": {
|
9241 |
-
"regular": "http://fonts.gstatic.com/s/ovo/v7/mFg27dimu3s9t09qjCwB1g.ttf"
|
9242 |
-
}
|
9243 |
-
},
|
9244 |
-
{
|
9245 |
-
"kind": "webfonts#webfont",
|
9246 |
-
"family": "Oxygen",
|
9247 |
-
"category": "sans-serif",
|
9248 |
-
"variants": [
|
9249 |
-
"300",
|
9250 |
-
"regular",
|
9251 |
-
"700"
|
9252 |
-
],
|
9253 |
-
"subsets": [
|
9254 |
-
"latin-ext",
|
9255 |
-
"latin"
|
9256 |
-
],
|
9257 |
-
"version": "v5",
|
9258 |
-
"lastModified": "2016-02-23",
|
9259 |
-
"files": {
|
9260 |
-
"300": "http://fonts.gstatic.com/s/oxygen/v5/lZ31r0bR1Bzt_DfGZu1S8A.ttf",
|
9261 |
-
"regular": "http://fonts.gstatic.com/s/oxygen/v5/uhoyAE7XlQL22abzQieHjw.ttf",
|
9262 |
-
"700": "http://fonts.gstatic.com/s/oxygen/v5/yLqkmDwuNtt5pSqsJmhyrg.ttf"
|
9263 |
-
}
|
9264 |
-
},
|
9265 |
-
{
|
9266 |
-
"kind": "webfonts#webfont",
|
9267 |
-
"family": "Oxygen Mono",
|
9268 |
-
"category": "monospace",
|
9269 |
-
"variants": [
|
9270 |
-
"regular"
|
9271 |
-
],
|
9272 |
-
"subsets": [
|
9273 |
-
"latin-ext",
|
9274 |
-
"latin"
|
9275 |
-
],
|
9276 |
-
"version": "v4",
|
9277 |
-
"lastModified": "2016-02-23",
|
9278 |
-
"files": {
|
9279 |
-
"regular": "http://fonts.gstatic.com/s/oxygenmono/v4/DigTu7k4b7OmM8ubt1Qza6CWcynf_cDxXwCLxiixG1c.ttf"
|
9280 |
-
}
|
9281 |
-
},
|
9282 |
-
{
|
9283 |
-
"kind": "webfonts#webfont",
|
9284 |
-
"family": "PT Mono",
|
9285 |
-
"category": "monospace",
|
9286 |
-
"variants": [
|
9287 |
-
"regular"
|
9288 |
-
],
|
9289 |
-
"subsets": [
|
9290 |
-
"latin-ext",
|
9291 |
-
"cyrillic-ext",
|
9292 |
-
"cyrillic",
|
9293 |
-
"latin"
|
9294 |
-
],
|
9295 |
-
"version": "v4",
|
9296 |
-
"lastModified": "2016-02-23",
|
9297 |
-
"files": {
|
9298 |
-
"regular": "http://fonts.gstatic.com/s/ptmono/v4/QUbM8H9yJK5NhpQ0REO6Wg.ttf"
|
9299 |
-
}
|
9300 |
-
},
|
9301 |
-
{
|
9302 |
-
"kind": "webfonts#webfont",
|
9303 |
-
"family": "PT Sans",
|
9304 |
-
"category": "sans-serif",
|
9305 |
-
"variants": [
|
9306 |
-
"regular",
|
9307 |
-
"italic",
|
9308 |
-
"700",
|
9309 |
-
"700italic"
|
9310 |
-
],
|
9311 |
-
"subsets": [
|
9312 |
-
"latin-ext",
|
9313 |
-
"cyrillic-ext",
|
9314 |
-
"cyrillic",
|
9315 |
-
"latin"
|
9316 |
-
],
|
9317 |
-
"version": "v8",
|
9318 |
-
"lastModified": "2016-02-23",
|
9319 |
-
"files": {
|
9320 |
-
"regular": "http://fonts.gstatic.com/s/ptsans/v8/UFoEz2uiuMypUGZL1NKoeg.ttf",
|
9321 |
-
"italic": "http://fonts.gstatic.com/s/ptsans/v8/yls9EYWOd496wiu7qzfgNg.ttf",
|
9322 |
-
"700": "http://fonts.gstatic.com/s/ptsans/v8/F51BEgHuR0tYHxF0bD4vwvesZW2xOQ-xsNqO47m55DA.ttf",
|
9323 |
-
"700italic": "http://fonts.gstatic.com/s/ptsans/v8/lILlYDvubYemzYzN7GbLkC3USBnSvpkopQaUR-2r7iU.ttf"
|
9324 |
-
}
|
9325 |
-
},
|
9326 |
-
{
|
9327 |
-
"kind": "webfonts#webfont",
|
9328 |
-
"family": "PT Sans Caption",
|
9329 |
-
"category": "sans-serif",
|
9330 |
-
"variants": [
|
9331 |
-
"regular",
|
9332 |
-
"700"
|
9333 |
-
],
|
9334 |
-
"subsets": [
|
9335 |
-
"latin-ext",
|
9336 |
-
"cyrillic-ext",
|
9337 |
-
"cyrillic",
|
9338 |
-
"latin"
|
9339 |
-
],
|
9340 |
-
"version": "v9",
|
9341 |
-
"lastModified": "2016-02-23",
|
9342 |
-
"files": {
|
9343 |
-
"regular": "http://fonts.gstatic.com/s/ptsanscaption/v9/OXYTDOzBcXU8MTNBvBHeSW8by34Z3mUMtM-o4y-SHCY.ttf",
|
9344 |
-
"700": "http://fonts.gstatic.com/s/ptsanscaption/v9/Q-gJrFokeE7JydPpxASt25tc0eyfI4QDEsobEEpk_hA.ttf"
|
9345 |
-
}
|
9346 |
-
},
|
9347 |
-
{
|
9348 |
-
"kind": "webfonts#webfont",
|
9349 |
-
"family": "PT Sans Narrow",
|
9350 |
-
"category": "sans-serif",
|
9351 |
-
"variants": [
|
9352 |
-
"regular",
|
9353 |
-
"700"
|
9354 |
-
],
|
9355 |
-
"subsets": [
|
9356 |
-
"latin-ext",
|
9357 |
-
"cyrillic-ext",
|
9358 |
-
"cyrillic",
|
9359 |
-
"latin"
|
9360 |
-
],
|
9361 |
-
"version": "v7",
|
9362 |
-
"lastModified": "2016-02-23",
|
9363 |
-
"files": {
|
9364 |
-
"regular": "http://fonts.gstatic.com/s/ptsansnarrow/v7/UyYrYy3ltEffJV9QueSi4ZTvAuddT2xDMbdz0mdLyZY.ttf",
|
9365 |
-
"700": "http://fonts.gstatic.com/s/ptsansnarrow/v7/Q_pTky3Sc3ubRibGToTAYsLtdzs3iyjn_YuT226ZsLU.ttf"
|
9366 |
-
}
|
9367 |
-
},
|
9368 |
-
{
|
9369 |
-
"kind": "webfonts#webfont",
|
9370 |
-
"family": "PT Serif",
|
9371 |
-
"category": "serif",
|
9372 |
-
"variants": [
|
9373 |
-
"regular",
|
9374 |
-
"italic",
|
9375 |
-
"700",
|
9376 |
-
"700italic"
|
9377 |
-
],
|
9378 |
-
"subsets": [
|
9379 |
-
"latin-ext",
|
9380 |
-
"cyrillic-ext",
|
9381 |
-
"cyrillic",
|
9382 |
-
"latin"
|
9383 |
-
],
|
9384 |
-
"version": "v8",
|
9385 |
-
"lastModified": "2016-02-23",
|
9386 |
-
"files": {
|
9387 |
-
"regular": "http://fonts.gstatic.com/s/ptserif/v8/sAo427rn3-QL9sWCbMZXhA.ttf",
|
9388 |
-
"italic": "http://fonts.gstatic.com/s/ptserif/v8/9khWhKzhpkH0OkNnBKS3n_esZW2xOQ-xsNqO47m55DA.ttf",
|
9389 |
-
"700": "http://fonts.gstatic.com/s/ptserif/v8/kyZw18tqQ5if-_wpmxxOeKCWcynf_cDxXwCLxiixG1c.ttf",
|
9390 |
-
"700italic": "http://fonts.gstatic.com/s/ptserif/v8/Foydq9xJp--nfYIx2TBz9QJKKGfqHaYFsRG-T3ceEVo.ttf"
|
9391 |
-
}
|
9392 |
-
},
|
9393 |
-
{
|
9394 |
-
"kind": "webfonts#webfont",
|
9395 |
-
"family": "PT Serif Caption",
|
9396 |
-
"category": "serif",
|
9397 |
-
"variants": [
|
9398 |
-
"regular",
|
9399 |
-
"italic"
|
9400 |
-
],
|
9401 |
-
"subsets": [
|
9402 |
-
"latin-ext",
|
9403 |
-
"cyrillic-ext",
|
9404 |
-
"cyrillic",
|
9405 |
-
"latin"
|
9406 |
-
],
|
9407 |
-
"version": "v8",
|
9408 |
-
"lastModified": "2016-02-23",
|
9409 |
-
"files": {
|
9410 |
-
"regular": "http://fonts.gstatic.com/s/ptserifcaption/v8/7xkFOeTxxO1GMC1suOUYWVsRioCqs5fohhaYel24W3k.ttf",
|
9411 |
-
"italic": "http://fonts.gstatic.com/s/ptserifcaption/v8/0kfPsmrmTSgiec7u_Wa0DB1mqvzPHelJwRcF_s_EUM0.ttf"
|
9412 |
-
}
|
9413 |
-
},
|
9414 |
-
{
|
9415 |
-
"kind": "webfonts#webfont",
|
9416 |
-
"family": "Pacifico",
|
9417 |
-
"category": "handwriting",
|
9418 |
-
"variants": [
|
9419 |
-
"regular"
|
9420 |
-
],
|
9421 |
-
"subsets": [
|
9422 |
-
"latin"
|
9423 |
-
],
|
9424 |
-
"version": "v7",
|
9425 |
-
"lastModified": "2016-02-23",
|
9426 |
-
"files": {
|
9427 |
-
"regular": "http://fonts.gstatic.com/s/pacifico/v7/GIrpeRY1r5CzbfL8r182lw.ttf"
|
9428 |
-
}
|
9429 |
-
},
|
9430 |
-
{
|
9431 |
-
"kind": "webfonts#webfont",
|
9432 |
-
"family": "Palanquin",
|
9433 |
-
"category": "sans-serif",
|
9434 |
-
"variants": [
|
9435 |
-
"100",
|
9436 |
-
"200",
|
9437 |
-
"300",
|
9438 |
-
"regular",
|
9439 |
-
"500",
|
9440 |
-
"600",
|
9441 |
-
"700"
|
9442 |
-
],
|
9443 |
-
"subsets": [
|
9444 |
-
"devanagari",
|
9445 |
-
"latin-ext",
|
9446 |
-
"latin"
|
9447 |
-
],
|
9448 |
-
"version": "v1",
|
9449 |
-
"lastModified": "2016-02-23",
|
9450 |
-
"files": {
|
9451 |
-
"100": "http://fonts.gstatic.com/s/palanquin/v1/Hu0eGDVGK_g4saUFu6AK3KCWcynf_cDxXwCLxiixG1c.ttf",
|
9452 |
-
"200": "http://fonts.gstatic.com/s/palanquin/v1/pqXYXD7-VI5ezTjeqQOcyC3USBnSvpkopQaUR-2r7iU.ttf",
|
9453 |
-
"300": "http://fonts.gstatic.com/s/palanquin/v1/c0-J5OCAagpFCKkKraz-Ey3USBnSvpkopQaUR-2r7iU.ttf",
|
9454 |
-
"regular": "http://fonts.gstatic.com/s/palanquin/v1/xCwBUoAEV0kzCDwerAZ0Aw.ttf",
|
9455 |
-
"500": "http://fonts.gstatic.com/s/palanquin/v1/wLvvkEcZMKy95afLWh2EfC3USBnSvpkopQaUR-2r7iU.ttf",
|
9456 |
-
"600": "http://fonts.gstatic.com/s/palanquin/v1/405UIAv95_yZkCECrH6y-i3USBnSvpkopQaUR-2r7iU.ttf",
|
9457 |
-
"700": "http://fonts.gstatic.com/s/palanquin/v1/-UtkePo3NFvxEN3rGCtTvi3USBnSvpkopQaUR-2r7iU.ttf"
|
9458 |
-
}
|
9459 |
-
},
|
9460 |
-
{
|
9461 |
-
"kind": "webfonts#webfont",
|
9462 |
-
"family": "Palanquin Dark",
|
9463 |
-
"category": "sans-serif",
|
9464 |
-
"variants": [
|
9465 |
-
"regular",
|
9466 |
-
"500",
|
9467 |
-
"600",
|
9468 |
-
"700"
|
9469 |
-
],
|
9470 |
-
"subsets": [
|
9471 |
-
"devanagari",
|
9472 |
-
"latin-ext",
|
9473 |
-
"latin"
|
9474 |
-
],
|
9475 |
-
"version": "v1",
|
9476 |
-
"lastModified": "2016-02-23",
|
9477 |
-
"files": {
|
9478 |
-
"regular": "http://fonts.gstatic.com/s/palanquindark/v1/PamTqrrgbBh_M3702w39rOfChn3JSg5yz_Q_xmrKQN0.ttf",
|
9479 |
-
"500": "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-maMZTo-EwKMRQt3RWHocLi0.ttf",
|
9480 |
-
"600": "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-mVNxaunw8i4Gywrk2SigRnk.ttf",
|
9481 |
-
"700": "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-mWToair6W0TEE44XrlfKbiM.ttf"
|
9482 |
-
}
|
9483 |
-
},
|
9484 |
-
{
|
9485 |
-
"kind": "webfonts#webfont",
|
9486 |
-
"family": "Paprika",
|
9487 |
-
"category": "display",
|
9488 |
-
"variants": [
|
9489 |
-
"regular"
|
9490 |
-
],
|
9491 |
-
"subsets": [
|
9492 |
-
"latin"
|
9493 |
-
],
|
9494 |
-
"version": "v4",
|
9495 |
-
"lastModified": "2016-02-23",
|
9496 |
-
"files": {
|
9497 |
-
"regular": "http://fonts.gstatic.com/s/paprika/v4/b-VpyoRSieBdB5BPJVF8HQ.ttf"
|
9498 |
-
}
|
9499 |
-
},
|
9500 |
-
{
|
9501 |
-
"kind": "webfonts#webfont",
|
9502 |
-
"family": "Parisienne",
|
9503 |
-
"category": "handwriting",
|
9504 |
-
"variants": [
|
9505 |
-
"regular"
|
9506 |
-
],
|
9507 |
-
"subsets": [
|
9508 |
-
"latin-ext",
|
9509 |
-
"latin"
|
9510 |
-
],
|
9511 |
-
"version": "v4",
|
9512 |
-
"lastModified": "2016-02-23",
|
9513 |
-
"files": {
|
9514 |
-
"regular": "http://fonts.gstatic.com/s/parisienne/v4/TW74B5QISJNx9moxGlmJfvesZW2xOQ-xsNqO47m55DA.ttf"
|
9515 |
-
}
|
9516 |
-
},
|
9517 |
-
{
|
9518 |
-
"kind": "webfonts#webfont",
|
9519 |
-
"family": "Passero One",
|
9520 |
-
"category": "display",
|
9521 |
-
"variants": [
|
9522 |
-
"regular"
|
9523 |
-
],
|
9524 |
-
"subsets": [
|
9525 |
-
"latin-ext",
|
9526 |
-
"latin"
|
9527 |
-
],
|
9528 |
-
"version": "v8",
|
9529 |
-
"lastModified": "2016-02-23",
|
9530 |
-
"files": {
|
9531 |
-
"regular": "http://fonts.gstatic.com/s/passeroone/v8/Yc-7nH5deCCv9Ed0MMnAQqCWcynf_cDxXwCLxiixG1c.ttf"
|
9532 |
-
}
|
9533 |
-
},
|
9534 |
-
{
|
9535 |
-
"kind": "webfonts#webfont",
|
9536 |
-
"family": "Passion One",
|
9537 |
-
"category": "display",
|
9538 |
-
"variants": [
|
9539 |
-
"regular",
|
9540 |
-
"700",
|
9541 |
-
"900"
|
9542 |
-
],
|
9543 |
-
"subsets": [
|
9544 |
-
"latin-ext",
|
9545 |
-
"latin"
|
9546 |
-
],
|
9547 |
-
"version": "v6",
|
9548 |
-
"lastModified": "2016-02-23",
|
9549 |
-
"files": {
|
9550 |
-
"regular": "http://fonts.gstatic.com/s/passionone/v6/1UIK1tg3bKJ4J3o35M4heqCWcynf_cDxXwCLxiixG1c.ttf",
|
9551 |
-
"700": "http://fonts.gstatic.com/s/passionone/v6/feOcYDy2R-f3Ysy72PYJ2ne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
9552 |
-
"900": "http://fonts.gstatic.com/s/passionone/v6/feOcYDy2R-f3Ysy72PYJ2ienaqEuufTBk9XMKnKmgDA.ttf"
|
9553 |
-
}
|
9554 |
-
},
|
9555 |
-
{
|
9556 |
-
"kind": "webfonts#webfont",
|
9557 |
-
"family": "Pathway Gothic One",
|
9558 |
-
"category": "sans-serif",
|
9559 |
-
"variants": [
|
9560 |
-
"regular"
|
9561 |
-
],
|
9562 |
-
"subsets": [
|
9563 |
-
"latin-ext",
|
9564 |
-
"latin"
|
9565 |
-
],
|
9566 |
-
"version": "v4",
|
9567 |
-
"lastModified": "2016-02-23",
|
9568 |
-
"files": {
|
9569 |
-
"regular": "http://fonts.gstatic.com/s/pathwaygothicone/v4/Lqv9ztoTUV8Q0FmQZzPqaA6A6xIYD7vYcYDop1i-K-c.ttf"
|
9570 |
-
}
|
9571 |
-
},
|
9572 |
-
{
|
9573 |
-
"kind": "webfonts#webfont",
|
9574 |
-
"family": "Patrick Hand",
|
9575 |
-
"category": "handwriting",
|
9576 |
-
"variants": [
|
9577 |
-
"regular"
|
9578 |
-
],
|
9579 |
-
"subsets": [
|
9580 |
-
"latin-ext",
|
9581 |
-
"vietnamese",
|
9582 |
-
"latin"
|
9583 |
-
],
|
9584 |
-
"version": "v10",
|
9585 |
-
"lastModified": "2016-02-23",
|
9586 |
-
"files": {
|
9587 |
-
"regular": "http://fonts.gstatic.com/s/patrickhand/v10/9BG3JJgt_HlF3NpEUehL0C3USBnSvpkopQaUR-2r7iU.ttf"
|
9588 |
-
}
|
9589 |
-
},
|
9590 |
-
{
|
9591 |
-
"kind": "webfonts#webfont",
|
9592 |
-
"family": "Patrick Hand SC",
|
9593 |
-
"category": "handwriting",
|
9594 |
-
"variants": [
|
9595 |
-
"regular"
|
9596 |
-
],
|
9597 |
-
"subsets": [
|
9598 |
-
"latin-ext",
|
9599 |
-
"vietnamese",
|
9600 |
-
"latin"
|
9601 |
-
],
|
9602 |
-
"version": "v4",
|
9603 |
-
"lastModified": "2016-02-23",
|
9604 |
-
"files": {
|
9605 |
-
"regular": "http://fonts.gstatic.com/s/patrickhandsc/v4/OYFWCgfCR-7uHIovjUZXsbAgSRh1LpJXlLfl8IbsmHg.ttf"
|
9606 |
-
}
|
9607 |
-
},
|
9608 |
-
{
|
9609 |
-
"kind": "webfonts#webfont",
|
9610 |
-
"family": "Patua One",
|
9611 |
-
"category": "display",
|
9612 |
-
"variants": [
|
9613 |
-
"regular"
|
9614 |
-
],
|
9615 |
-
"subsets": [
|
9616 |
-
"latin"
|
9617 |
-
],
|
9618 |
-
"version": "v6",
|
9619 |
-
"lastModified": "2016-02-23",
|
9620 |
-
"files": {
|
9621 |
-
"regular": "http://fonts.gstatic.com/s/patuaone/v6/njZwotTYjswR4qdhsW-kJw.ttf"
|
9622 |
-
}
|
9623 |
-
},
|
9624 |
-
{
|
9625 |
-
"kind": "webfonts#webfont",
|
9626 |
-
"family": "Paytone One",
|
9627 |
-
"category": "sans-serif",
|
9628 |
-
"variants": [
|
9629 |
-
"regular"
|
9630 |
-
],
|
9631 |
-
"subsets": [
|
9632 |
-
"latin"
|
9633 |
-
],
|
9634 |
-
"version": "v8",
|
9635 |
-
"lastModified": "2016-02-23",
|
9636 |
-
"files": {
|
9637 |
-
"regular": "http://fonts.gstatic.com/s/paytoneone/v8/3WCxC7JAJjQHQVoIE0ZwvqCWcynf_cDxXwCLxiixG1c.ttf"
|
9638 |
-
}
|
9639 |
-
},
|
9640 |
-
{
|
9641 |
-
"kind": "webfonts#webfont",
|
9642 |
-
"family": "Peddana",
|
9643 |
-
"category": "serif",
|
9644 |
-
"variants": [
|
9645 |
-
"regular"
|
9646 |
-
],
|
9647 |
-
"subsets": [
|
9648 |
-
"telugu",
|
9649 |
-
"latin"
|
9650 |
-
],
|
9651 |
-
"version": "v4",
|
9652 |
-
"lastModified": "2016-02-23",
|
9653 |
-
"files": {
|
9654 |
-
"regular": "http://fonts.gstatic.com/s/peddana/v4/zaSZuj_GhmC8AOTugOROnA.ttf"
|
9655 |
-
}
|
9656 |
-
},
|
9657 |
-
{
|
9658 |
-
"kind": "webfonts#webfont",
|
9659 |
-
"family": "Peralta",
|
9660 |
-
"category": "display",
|
9661 |
-
"variants": [
|
9662 |
-
"regular"
|
9663 |
-
],
|
9664 |
-
"subsets": [
|
9665 |
-
"latin-ext",
|
9666 |
-
"latin"
|
9667 |
-
],
|
9668 |
-
"version": "v4",
|
9669 |
-
"lastModified": "2016-02-23",
|
9670 |
-
"files": {
|
9671 |
-
"regular": "http://fonts.gstatic.com/s/peralta/v4/cTJX5KEuc0GKRU9NXSm-8Q.ttf"
|
9672 |
-
}
|
9673 |
-
},
|
9674 |
-
{
|
9675 |
-
"kind": "webfonts#webfont",
|
9676 |
-
"family": "Permanent Marker",
|
9677 |
-
"category": "handwriting",
|
9678 |
-
"variants": [
|
9679 |
-
"regular"
|
9680 |
-
],
|
9681 |
-
"subsets": [
|
9682 |
-
"latin"
|
9683 |
-
],
|
9684 |
-
"version": "v5",
|
9685 |
-
"lastModified": "2016-02-23",
|
9686 |
-
"files": {
|
9687 |
-
"regular": "http://fonts.gstatic.com/s/permanentmarker/v5/9vYsg5VgPHKK8SXYbf3sMol14xj5tdg9OHF8w4E7StQ.ttf"
|
9688 |
-
}
|
9689 |
-
},
|
9690 |
-
{
|
9691 |
-
"kind": "webfonts#webfont",
|
9692 |
-
"family": "Petit Formal Script",
|
9693 |
-
"category": "handwriting",
|
9694 |
-
"variants": [
|
9695 |
-
"regular"
|
9696 |
-
],
|
9697 |
-
"subsets": [
|
9698 |
-
"latin-ext",
|
9699 |
-
"latin"
|
9700 |
-
],
|
9701 |
-
"version": "v4",
|
9702 |
-
"lastModified": "2016-02-23",
|
9703 |
-
"files": {
|
9704 |
-
"regular": "http://fonts.gstatic.com/s/petitformalscript/v4/OEZwr2-ovBsq2n3ACCKoEvVPl2Gjtxj0D6F7QLy1VQc.ttf"
|
9705 |
-
}
|
9706 |
-
},
|
9707 |
-
{
|
9708 |
-
"kind": "webfonts#webfont",
|
9709 |
-
"family": "Petrona",
|
9710 |
-
"category": "serif",
|
9711 |
-
"variants": [
|
9712 |
-
"regular"
|
9713 |
-
],
|
9714 |
-
"subsets": [
|
9715 |
-
"latin"
|
9716 |
-
],
|
9717 |
-
"version": "v5",
|
9718 |
-
"lastModified": "2016-02-23",
|
9719 |
-
"files": {
|
9720 |
-
"regular": "http://fonts.gstatic.com/s/petrona/v5/nnQwxlP6dhrGovYEFtemTg.ttf"
|
9721 |
-
}
|
9722 |
-
},
|
9723 |
-
{
|
9724 |
-
"kind": "webfonts#webfont",
|
9725 |
-
"family": "Philosopher",
|
9726 |
-
"category": "sans-serif",
|
9727 |
-
"variants": [
|
9728 |
-
"regular",
|
9729 |
-
"italic",
|
9730 |
-
"700",
|
9731 |
-
"700italic"
|
9732 |
-
],
|
9733 |
-
"subsets": [
|
9734 |
-
"cyrillic",
|
9735 |
-
"latin"
|
9736 |
-
],
|
9737 |
-
"version": "v7",
|
9738 |
-
"lastModified": "2016-02-23",
|
9739 |
-
"files": {
|
9740 |
-
"regular": "http://fonts.gstatic.com/s/philosopher/v7/oZLTrB9jmJsyV0u_T0TKEaCWcynf_cDxXwCLxiixG1c.ttf",
|
9741 |
-
"italic": "http://fonts.gstatic.com/s/philosopher/v7/_9Hnc_gz9k7Qq6uKaeHKmUeOrDcLawS7-ssYqLr2Xp4.ttf",
|
9742 |
-
"700": "http://fonts.gstatic.com/s/philosopher/v7/napvkewXG9Gqby5vwGHICHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
9743 |
-
"700italic": "http://fonts.gstatic.com/s/philosopher/v7/PuKlryTcvTj7-qZWfLCFIM_zJjSACmk0BRPxQqhnNLU.ttf"
|
9744 |
-
}
|
9745 |
-
},
|
9746 |
-
{
|
9747 |
-
"kind": "webfonts#webfont",
|
9748 |
-
"family": "Piedra",
|
9749 |
-
"category": "display",
|
9750 |
-
"variants": [
|
9751 |
-
"regular"
|
9752 |
-
],
|
9753 |
-
"subsets": [
|
9754 |
-
"latin-ext",
|
9755 |
-
"latin"
|
9756 |
-
],
|
9757 |
-
"version": "v5",
|
9758 |
-
"lastModified": "2016-02-23",
|
9759 |
-
"files": {
|
9760 |
-
"regular": "http://fonts.gstatic.com/s/piedra/v5/owf-AvEEyAj9LJ2tVZ_3Mw.ttf"
|
9761 |
-
}
|
9762 |
-
},
|
9763 |
-
{
|
9764 |
-
"kind": "webfonts#webfont",
|
9765 |
-
"family": "Pinyon Script",
|
9766 |
-
"category": "handwriting",
|
9767 |
-
"variants": [
|
9768 |
-
"regular"
|
9769 |
-
],
|
9770 |
-
"subsets": [
|
9771 |
-
"latin"
|
9772 |
-
],
|
9773 |
-
"version": "v6",
|
9774 |
-
"lastModified": "2016-02-23",
|
9775 |
-
"files": {
|
9776 |
-
"regular": "http://fonts.gstatic.com/s/pinyonscript/v6/TzghnhfCn7TuE73f-CBQ0CeUSrabuTpOsMEiRLtKwk0.ttf"
|
9777 |
-
}
|
9778 |
-
},
|
9779 |
-
{
|
9780 |
-
"kind": "webfonts#webfont",
|
9781 |
-
"family": "Pirata One",
|
9782 |
-
"category": "display",
|
9783 |
-
"variants": [
|
9784 |
-
"regular"
|
9785 |
-
],
|
9786 |
-
"subsets": [
|
9787 |
-
"latin-ext",
|
9788 |
-
"latin"
|
9789 |
-
],
|
9790 |
-
"version": "v4",
|
9791 |
-
"lastModified": "2016-02-23",
|
9792 |
-
"files": {
|
9793 |
-
"regular": "http://fonts.gstatic.com/s/pirataone/v4/WnbD86B4vB2ckYcL7oxuhvesZW2xOQ-xsNqO47m55DA.ttf"
|
9794 |
-
}
|
9795 |
-
},
|
9796 |
-
{
|
9797 |
-
"kind": "webfonts#webfont",
|
9798 |
-
"family": "Plaster",
|
9799 |
-
"category": "display",
|
9800 |
-
"variants": [
|
9801 |
-
"regular"
|
9802 |
-
],
|
9803 |
-
"subsets": [
|
9804 |
-
"latin-ext",
|
9805 |
-
"latin"
|
9806 |
-
],
|
9807 |
-
"version": "v7",
|
9808 |
-
"lastModified": "2016-02-23",
|
9809 |
-
"files": {
|
9810 |
-
"regular": "http://fonts.gstatic.com/s/plaster/v7/O4QG9Z5116CXyfJdR9zxLw.ttf"
|
9811 |
-
}
|
9812 |
-
},
|
9813 |
-
{
|
9814 |
-
"kind": "webfonts#webfont",
|
9815 |
-
"family": "Play",
|
9816 |
-
"category": "sans-serif",
|
9817 |
-
"variants": [
|
9818 |
-
"regular",
|
9819 |
-
"700"
|
9820 |
-
],
|
9821 |
-
"subsets": [
|
9822 |
-
"latin-ext",
|
9823 |
-
"cyrillic-ext",
|
9824 |
-
"cyrillic",
|
9825 |
-
"greek",
|
9826 |
-
"latin"
|
9827 |
-
],
|
9828 |
-
"version": "v7",
|
9829 |
-
"lastModified": "2016-02-23",
|
9830 |
-
"files": {
|
9831 |
-
"regular": "http://fonts.gstatic.com/s/play/v7/GWvfObW8LhtsOX333MCpBg.ttf",
|
9832 |
-
"700": "http://fonts.gstatic.com/s/play/v7/crPhg6I0alLI-MpB3vW-zw.ttf"
|
9833 |
-
}
|
9834 |
-
},
|
9835 |
-
{
|
9836 |
-
"kind": "webfonts#webfont",
|
9837 |
-
"family": "Playball",
|
9838 |
-
"category": "display",
|
9839 |
-
"variants": [
|
9840 |
-
"regular"
|
9841 |
-
],
|
9842 |
-
"subsets": [
|
9843 |
-
"latin-ext",
|
9844 |
-
"latin"
|
9845 |
-
],
|
9846 |
-
"version": "v6",
|
9847 |
-
"lastModified": "2016-02-23",
|
9848 |
-
"files": {
|
9849 |
-
"regular": "http://fonts.gstatic.com/s/playball/v6/3hOFiQm_EUzycTpcN9uz4w.ttf"
|
9850 |
-
}
|
9851 |
-
},
|
9852 |
-
{
|
9853 |
-
"kind": "webfonts#webfont",
|
9854 |
-
"family": "Playfair Display",
|
9855 |
-
"category": "serif",
|
9856 |
-
"variants": [
|
9857 |
-
"regular",
|
9858 |
-
"italic",
|
9859 |
-
"700",
|
9860 |
-
"700italic",
|
9861 |
-
"900",
|
9862 |
-
"900italic"
|
9863 |
-
],
|
9864 |
-
"subsets": [
|
9865 |
-
"latin-ext",
|
9866 |
-
"cyrillic",
|
9867 |
-
"latin"
|
9868 |
-
],
|
9869 |
-
"version": "v10",
|
9870 |
-
"lastModified": "2016-02-23",
|
9871 |
-
"files": {
|
9872 |
-
"regular": "http://fonts.gstatic.com/s/playfairdisplay/v10/2NBgzUtEeyB-Xtpr9bm1CV6uyC_qD11hrFQ6EGgTJWI.ttf",
|
9873 |
-
"italic": "http://fonts.gstatic.com/s/playfairdisplay/v10/9MkijrV-dEJ0-_NWV7E6NzMsbnvDNEBX25F5HWk9AhI.ttf",
|
9874 |
-
"700": "http://fonts.gstatic.com/s/playfairdisplay/v10/UC3ZEjagJi85gF9qFaBgICsv6SrURqJprbhH_C1Mw8w.ttf",
|
9875 |
-
"700italic": "http://fonts.gstatic.com/s/playfairdisplay/v10/n7G4PqJvFP2Kubl0VBLDECsYW3XoOVcYyYdp9NzzS9E.ttf",
|
9876 |
-
"900": "http://fonts.gstatic.com/s/playfairdisplay/v10/UC3ZEjagJi85gF9qFaBgIKqwMe2wjvZrAR44M0BJZ48.ttf",
|
9877 |
-
"900italic": "http://fonts.gstatic.com/s/playfairdisplay/v10/n7G4PqJvFP2Kubl0VBLDEC0JfJ4xmm7j1kL6D7mPxrA.ttf"
|
9878 |
-
}
|
9879 |
-
},
|
9880 |
-
{
|
9881 |
-
"kind": "webfonts#webfont",
|
9882 |
-
"family": "Playfair Display SC",
|
9883 |
-
"category": "serif",
|
9884 |
-
"variants": [
|
9885 |
-
"regular",
|
9886 |
-
"italic",
|
9887 |
-
"700",
|
9888 |
-
"700italic",
|
9889 |
-
"900",
|
9890 |
-
"900italic"
|
9891 |
-
],
|
9892 |
-
"subsets": [
|
9893 |
-
"latin-ext",
|
9894 |
-
"cyrillic",
|
9895 |
-
"latin"
|
9896 |
-
],
|
9897 |
-
"version": "v5",
|
9898 |
-
"lastModified": "2016-02-23",
|
9899 |
-
"files": {
|
9900 |
-
"regular": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/G0-tvBxd4eQRdwFKB8dRkcpjYTDWIvcAwAccqeW9uNM.ttf",
|
9901 |
-
"italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/myuYiFR-4NTrUT4w6TKls2klJsJYggW8rlNoTOTuau0.ttf",
|
9902 |
-
"700": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/5ggqGkvWJU_TtW2W8cEubA-Amcyomnuy4WsCiPxGHjw.ttf",
|
9903 |
-
"700italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/6X0OQrQhEEnPo56RalREX4krgPi80XvBcbTwmz-rgmU.ttf",
|
9904 |
-
"900": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/5ggqGkvWJU_TtW2W8cEubKXL3C32k275YmX_AcBPZ7w.ttf",
|
9905 |
-
"900italic": "http://fonts.gstatic.com/s/playfairdisplaysc/v5/6X0OQrQhEEnPo56RalREX8Zag2q3ssKz8uH1RU4a9gs.ttf"
|
9906 |
-
}
|
9907 |
-
},
|
9908 |
-
{
|
9909 |
-
"kind": "webfonts#webfont",
|
9910 |
-
"family": "Podkova",
|
9911 |
-
"category": "serif",
|
9912 |
-
"variants": [
|
9913 |
-
"regular",
|
9914 |
-
"700"
|
9915 |
-
],
|
9916 |
-
"subsets": [
|
9917 |
-
"latin"
|
9918 |
-
],
|
9919 |
-
"version": "v8",
|
9920 |
-
"lastModified": "2016-02-23",
|
9921 |
-
"files": {
|
9922 |
-
"regular": "http://fonts.gstatic.com/s/podkova/v8/eylljyGVfB8ZUQjYY3WZRQ.ttf",
|
9923 |
-
"700": "http://fonts.gstatic.com/s/podkova/v8/SqW4aa8m_KVrOgYSydQ33vesZW2xOQ-xsNqO47m55DA.ttf"
|
9924 |
-
}
|
9925 |
-
},
|
9926 |
-
{
|
9927 |
-
"kind": "webfonts#webfont",
|
9928 |
-
"family": "Poiret One",
|
9929 |
-
"category": "display",
|
9930 |
-
"variants": [
|
9931 |
-
"regular"
|
9932 |
-
],
|
9933 |
-
"subsets": [
|
9934 |
-
"latin-ext",
|
9935 |
-
"cyrillic",
|
9936 |
-
"latin"
|
9937 |
-
],
|
9938 |
-
"version": "v4",
|
9939 |
-
"lastModified": "2016-02-23",
|
9940 |
-
"files": {
|
9941 |
-
"regular": "http://fonts.gstatic.com/s/poiretone/v4/dWcYed048E5gHGDIt8i1CPesZW2xOQ-xsNqO47m55DA.ttf"
|
9942 |
-
}
|
9943 |
-
},
|
9944 |
-
{
|
9945 |
-
"kind": "webfonts#webfont",
|
9946 |
-
"family": "Poller One",
|
9947 |
-
"category": "display",
|
9948 |
-
"variants": [
|
9949 |
-
"regular"
|
9950 |
-
],
|
9951 |
-
"subsets": [
|
9952 |
-
"latin"
|
9953 |
-
],
|
9954 |
-
"version": "v6",
|
9955 |
-
"lastModified": "2016-02-23",
|
9956 |
-
"files": {
|
9957 |
-
"regular": "http://fonts.gstatic.com/s/pollerone/v6/dkctmDlTPcZ6boC8662RA_esZW2xOQ-xsNqO47m55DA.ttf"
|
9958 |
-
}
|
9959 |
-
},
|
9960 |
-
{
|
9961 |
-
"kind": "webfonts#webfont",
|
9962 |
-
"family": "Poly",
|
9963 |
-
"category": "serif",
|
9964 |
-
"variants": [
|
9965 |
-
"regular",
|
9966 |
-
"italic"
|
9967 |
-
],
|
9968 |
-
"subsets": [
|
9969 |
-
"latin"
|
9970 |
-
],
|
9971 |
-
"version": "v7",
|
9972 |
-
"lastModified": "2016-02-23",
|
9973 |
-
"files": {
|
9974 |
-
"regular": "http://fonts.gstatic.com/s/poly/v7/bcMAuiacS2qkd54BcwW6_Q.ttf",
|
9975 |
-
"italic": "http://fonts.gstatic.com/s/poly/v7/Zkx-eIlZSjKUrPGYhV5PeA.ttf"
|
9976 |
-
}
|
9977 |
-
},
|
9978 |
-
{
|
9979 |
-
"kind": "webfonts#webfont",
|
9980 |
-
"family": "Pompiere",
|
9981 |
-
"category": "display",
|
9982 |
-
"variants": [
|
9983 |
-
"regular"
|
9984 |
-
],
|
9985 |
-
"subsets": [
|
9986 |
-
"latin"
|
9987 |
-
],
|
9988 |
-
"version": "v6",
|
9989 |
-
"lastModified": "2016-02-23",
|
9990 |
-
"files": {
|
9991 |
-
"regular": "http://fonts.gstatic.com/s/pompiere/v6/o_va2p9CD5JfmFohAkGZIA.ttf"
|
9992 |
-
}
|
9993 |
-
},
|
9994 |
-
{
|
9995 |
-
"kind": "webfonts#webfont",
|
9996 |
-
"family": "Pontano Sans",
|
9997 |
-
"category": "sans-serif",
|
9998 |
-
"variants": [
|
9999 |
-
"regular"
|
10000 |
-
],
|
10001 |
-
"subsets": [
|
10002 |
-
"latin-ext",
|
10003 |
-
"latin"
|
10004 |
-
],
|
10005 |
-
"version": "v4",
|
10006 |
-
"lastModified": "2016-02-23",
|
10007 |
-
"files": {
|
10008 |
-
"regular": "http://fonts.gstatic.com/s/pontanosans/v4/gTHiwyxi6S7iiHpqAoiE3C3USBnSvpkopQaUR-2r7iU.ttf"
|
10009 |
-
}
|
10010 |
-
},
|
10011 |
-
{
|
10012 |
-
"kind": "webfonts#webfont",
|
10013 |
-
"family": "Poppins",
|
10014 |
-
"category": "sans-serif",
|
10015 |
-
"variants": [
|
10016 |
-
"300",
|
10017 |
-
"regular",
|
10018 |
-
"500",
|
10019 |
-
"600",
|
10020 |
-
"700"
|
10021 |
-
],
|
10022 |
-
"subsets": [
|
10023 |
-
"devanagari",
|
10024 |
-
"latin-ext",
|
10025 |
-
"latin"
|
10026 |
-
],
|
10027 |
-
"version": "v1",
|
10028 |
-
"lastModified": "2016-02-23",
|
10029 |
-
"files": {
|
10030 |
-
"300": "http://fonts.gstatic.com/s/poppins/v1/VIeViZ2fPtYBt3B2fQZplvesZW2xOQ-xsNqO47m55DA.ttf",
|
10031 |
-
"regular": "http://fonts.gstatic.com/s/poppins/v1/hlvAxH6aIdOjWlLzgm0jqg.ttf",
|
10032 |
-
"500": "http://fonts.gstatic.com/s/poppins/v1/4WGKlFyjcmCFVl8pRsgZ9vesZW2xOQ-xsNqO47m55DA.ttf",
|
10033 |
-
"600": "http://fonts.gstatic.com/s/poppins/v1/-zOABrCWORC3lyDh-ajNnPesZW2xOQ-xsNqO47m55DA.ttf",
|
10034 |
-
"700": "http://fonts.gstatic.com/s/poppins/v1/8JitanEsk5aDh7mDYs-fYfesZW2xOQ-xsNqO47m55DA.ttf"
|
10035 |
-
}
|
10036 |
-
},
|
10037 |
-
{
|
10038 |
-
"kind": "webfonts#webfont",
|
10039 |
-
"family": "Port Lligat Sans",
|
10040 |
-
"category": "sans-serif",
|
10041 |
-
"variants": [
|
10042 |
-
"regular"
|
10043 |
-
],
|
10044 |
-
"subsets": [
|
10045 |
-
"latin"
|
10046 |
-
],
|
10047 |
-
"version": "v5",
|
10048 |
-
"lastModified": "2016-02-23",
|
10049 |
-
"files": {
|
10050 |
-
"regular": "http://fonts.gstatic.com/s/portlligatsans/v5/CUEdhRk7oC7up0p6t0g4P6mASEpx5X0ZpsuJOuvfOGA.ttf"
|
10051 |
-
}
|
10052 |
-
},
|
10053 |
-
{
|
10054 |
-
"kind": "webfonts#webfont",
|
10055 |
-
"family": "Port Lligat Slab",
|
10056 |
-
"category": "serif",
|
10057 |
-
"variants": [
|
10058 |
-
"regular"
|
10059 |
-
],
|
10060 |
-
"subsets": [
|
10061 |
-
"latin"
|
10062 |
-
],
|
10063 |
-
"version": "v5",
|
10064 |
-
"lastModified": "2016-02-23",
|
10065 |
-
"files": {
|
10066 |
-
"regular": "http://fonts.gstatic.com/s/portlligatslab/v5/CUEdhRk7oC7up0p6t0g4PxLSPACXvawUYCBEnHsOe30.ttf"
|
10067 |
-
}
|
10068 |
-
},
|
10069 |
-
{
|
10070 |
-
"kind": "webfonts#webfont",
|
10071 |
-
"family": "Pragati Narrow",
|
10072 |
-
"category": "sans-serif",
|
10073 |
-
"variants": [
|
10074 |
-
"regular",
|
10075 |
-
"700"
|
10076 |
-
],
|
10077 |
-
"subsets": [
|
10078 |
-
"devanagari",
|
10079 |
-
"latin-ext",
|
10080 |
-
"latin"
|
10081 |
-
],
|
10082 |
-
"version": "v2",
|
10083 |
-
"lastModified": "2015-06-10",
|
10084 |
-
"files": {
|
10085 |
-
"regular": "http://fonts.gstatic.com/s/pragatinarrow/v2/HzG2TfC862qPNsZsV_djPpTvAuddT2xDMbdz0mdLyZY.ttf",
|
10086 |
-
"700": "http://fonts.gstatic.com/s/pragatinarrow/v2/DnSI1zRkc0CY-hI5SC3q3MLtdzs3iyjn_YuT226ZsLU.ttf"
|
10087 |
-
}
|
10088 |
-
},
|
10089 |
-
{
|
10090 |
-
"kind": "webfonts#webfont",
|
10091 |
-
"family": "Prata",
|
10092 |
-
"category": "serif",
|
10093 |
-
"variants": [
|
10094 |
-
"regular"
|
10095 |
-
],
|
10096 |
-
"subsets": [
|
10097 |
-
"latin"
|
10098 |
-
],
|
10099 |
-
"version": "v6",
|
10100 |
-
"lastModified": "2016-02-23",
|
10101 |
-
"files": {
|
10102 |
-
"regular": "http://fonts.gstatic.com/s/prata/v6/3gmx8r842loRRm9iQkCDGg.ttf"
|
10103 |
-
}
|
10104 |
-
},
|
10105 |
-
{
|
10106 |
-
"kind": "webfonts#webfont",
|
10107 |
-
"family": "Preahvihear",
|
10108 |
-
"category": "display",
|
10109 |
-
"variants": [
|
10110 |
-
"regular"
|
10111 |
-
],
|
10112 |
-
"subsets": [
|
10113 |
-
"khmer"
|
10114 |
-
],
|
10115 |
-
"version": "v8",
|
10116 |
-
"lastModified": "2015-04-03",
|
10117 |
-
"files": {
|
10118 |
-
"regular": "http://fonts.gstatic.com/s/preahvihear/v8/82tDI-xTc53CxxOzEG4hDaCWcynf_cDxXwCLxiixG1c.ttf"
|
10119 |
-
}
|
10120 |
-
},
|
10121 |
-
{
|
10122 |
-
"kind": "webfonts#webfont",
|
10123 |
-
"family": "Press Start 2P",
|
10124 |
-
"category": "display",
|
10125 |
-
"variants": [
|
10126 |
-
"regular"
|
10127 |
-
],
|
10128 |
-
"subsets": [
|
10129 |
-
"latin-ext",
|
10130 |
-
"cyrillic",
|
10131 |
-
"greek",
|
10132 |
-
"latin"
|
10133 |
-
],
|
10134 |
-
"version": "v4",
|
10135 |
-
"lastModified": "2016-02-23",
|
10136 |
-
"files": {
|
10137 |
-
"regular": "http://fonts.gstatic.com/s/pressstart2p/v4/8Lg6LX8-ntOHUQnvQ0E7o1jfl3W46Sz5gOkEVhcFWF4.ttf"
|
10138 |
-
}
|
10139 |
-
},
|
10140 |
-
{
|
10141 |
-
"kind": "webfonts#webfont",
|
10142 |
-
"family": "Princess Sofia",
|
10143 |
-
"category": "handwriting",
|
10144 |
-
"variants": [
|
10145 |
-
"regular"
|
10146 |
-
],
|
10147 |
-
"subsets": [
|
10148 |
-
"latin-ext",
|
10149 |
-
"latin"
|
10150 |
-
],
|
10151 |
-
"version": "v4",
|
10152 |
-
"lastModified": "2016-02-23",
|
10153 |
-
"files": {
|
10154 |
-
"regular": "http://fonts.gstatic.com/s/princesssofia/v4/8g5l8r9BM0t1QsXLTajDe-wjmA7ie-lFcByzHGRhCIg.ttf"
|
10155 |
-
}
|
10156 |
-
},
|
10157 |
-
{
|
10158 |
-
"kind": "webfonts#webfont",
|
10159 |
-
"family": "Prociono",
|
10160 |
-
"category": "serif",
|
10161 |
-
"variants": [
|
10162 |
-
"regular"
|
10163 |
-
],
|
10164 |
-
"subsets": [
|
10165 |
-
"latin"
|
10166 |
-
],
|
10167 |
-
"version": "v6",
|
10168 |
-
"lastModified": "2016-02-23",
|
10169 |
-
"files": {
|
10170 |
-
"regular": "http://fonts.gstatic.com/s/prociono/v6/43ZYDHWogdFeNBWTl6ksmw.ttf"
|
10171 |
-
}
|
10172 |
-
},
|
10173 |
-
{
|
10174 |
-
"kind": "webfonts#webfont",
|
10175 |
-
"family": "Prosto One",
|
10176 |
-
"category": "display",
|
10177 |
-
"variants": [
|
10178 |
-
"regular"
|
10179 |
-
],
|
10180 |
-
"subsets": [
|
10181 |
-
"latin-ext",
|
10182 |
-
"cyrillic",
|
10183 |
-
"latin"
|
10184 |
-
],
|
10185 |
-
"version": "v5",
|
10186 |
-
"lastModified": "2016-02-23",
|
10187 |
-
"files": {
|
10188 |
-
"regular": "http://fonts.gstatic.com/s/prostoone/v5/bsqnAElAqk9kX7eABTRFJPesZW2xOQ-xsNqO47m55DA.ttf"
|
10189 |
-
}
|
10190 |
-
},
|
10191 |
-
{
|
10192 |
-
"kind": "webfonts#webfont",
|
10193 |
-
"family": "Puritan",
|
10194 |
-
"category": "sans-serif",
|
10195 |
-
"variants": [
|
10196 |
-
"regular",
|
10197 |
-
"italic",
|
10198 |
-
"700",
|
10199 |
-
"700italic"
|
10200 |
-
],
|
10201 |
-
"subsets": [
|
10202 |
-
"latin"
|
10203 |
-
],
|
10204 |
-
"version": "v8",
|
10205 |
-
"lastModified": "2016-02-23",
|
10206 |
-
"files": {
|
10207 |
-
"regular": "http://fonts.gstatic.com/s/puritan/v8/wv_RtgVBSCn-or2MC0n4Kg.ttf",
|
10208 |
-
"italic": "http://fonts.gstatic.com/s/puritan/v8/BqZX8Tp200LeMv1KlzXgLQ.ttf",
|
10209 |
-
"700": "http://fonts.gstatic.com/s/puritan/v8/pJS2SdwI0SCiVnO0iQSFT_esZW2xOQ-xsNqO47m55DA.ttf",
|
10210 |
-
"700italic": "http://fonts.gstatic.com/s/puritan/v8/rFG3XkMJL75nUNZwCEIJqC3USBnSvpkopQaUR-2r7iU.ttf"
|
10211 |
-
}
|
10212 |
-
},
|
10213 |
-
{
|
10214 |
-
"kind": "webfonts#webfont",
|
10215 |
-
"family": "Purple Purse",
|
10216 |
-
"category": "display",
|
10217 |
-
"variants": [
|
10218 |
-
"regular"
|
10219 |
-
],
|
10220 |
-
"subsets": [
|
10221 |
-
"latin-ext",
|
10222 |
-
"latin"
|
10223 |
-
],
|
10224 |
-
"version": "v5",
|
10225 |
-
"lastModified": "2016-02-23",
|
10226 |
-
"files": {
|
10227 |
-
"regular": "http://fonts.gstatic.com/s/purplepurse/v5/Q5heFUrdmei9axbMITxxxS3USBnSvpkopQaUR-2r7iU.ttf"
|
10228 |
-
}
|
10229 |
-
},
|
10230 |
-
{
|
10231 |
-
"kind": "webfonts#webfont",
|
10232 |
-
"family": "Quando",
|
10233 |
-
"category": "serif",
|
10234 |
-
"variants": [
|
10235 |
-
"regular"
|
10236 |
-
],
|
10237 |
-
"subsets": [
|
10238 |
-
"latin-ext",
|
10239 |
-
"latin"
|
10240 |
-
],
|
10241 |
-
"version": "v4",
|
10242 |
-
"lastModified": "2016-02-23",
|
10243 |
-
"files": {
|
10244 |
-
"regular": "http://fonts.gstatic.com/s/quando/v4/03nDiEZuO2-h3xvtG6UmHg.ttf"
|
10245 |
-
}
|
10246 |
-
},
|
10247 |
-
{
|
10248 |
-
"kind": "webfonts#webfont",
|
10249 |
-
"family": "Quantico",
|
10250 |
-
"category": "sans-serif",
|
10251 |
-
"variants": [
|
10252 |
-
"regular",
|
10253 |
-
"italic",
|
10254 |
-
"700",
|
10255 |
-
"700italic"
|
10256 |
-
],
|
10257 |
-
"subsets": [
|
10258 |
-
"latin"
|
10259 |
-
],
|
10260 |
-
"version": "v5",
|
10261 |
-
"lastModified": "2016-02-23",
|
10262 |
-
"files": {
|
10263 |
-
"regular": "http://fonts.gstatic.com/s/quantico/v5/pwSnP8Xpaix2rIz99HrSlQ.ttf",
|
10264 |
-
"italic": "http://fonts.gstatic.com/s/quantico/v5/KQhDd2OsZi6HiITUeFQ2U_esZW2xOQ-xsNqO47m55DA.ttf",
|
10265 |
-
"700": "http://fonts.gstatic.com/s/quantico/v5/OVZZzjcZ3Hkq2ojVcUtDjaCWcynf_cDxXwCLxiixG1c.ttf",
|
10266 |
-
"700italic": "http://fonts.gstatic.com/s/quantico/v5/HeCYRcZbdRso3ZUu01ELbQJKKGfqHaYFsRG-T3ceEVo.ttf"
|
10267 |
-
}
|
10268 |
-
},
|
10269 |
-
{
|
10270 |
-
"kind": "webfonts#webfont",
|
10271 |
-
"family": "Quattrocento",
|
10272 |
-
"category": "serif",
|
10273 |
-
"variants": [
|
10274 |
-
"regular",
|
10275 |
-
"700"
|
10276 |
-
],
|
10277 |
-
"subsets": [
|
10278 |
-
"latin-ext",
|
10279 |
-
"latin"
|
10280 |
-
],
|
10281 |
-
"version": "v7",
|
10282 |
-
"lastModified": "2016-02-23",
|
10283 |
-
"files": {
|
10284 |
-
"regular": "http://fonts.gstatic.com/s/quattrocento/v7/WZDISdyil4HsmirlOdBRFC3USBnSvpkopQaUR-2r7iU.ttf",
|
10285 |
-
"700": "http://fonts.gstatic.com/s/quattrocento/v7/Uvi-cRwyvqFpl9j3oT2mqkD2ttfZwueP-QU272T9-k4.ttf"
|
10286 |
-
}
|
10287 |
-
},
|
10288 |
-
{
|
10289 |
-
"kind": "webfonts#webfont",
|
10290 |
-
"family": "Quattrocento Sans",
|
10291 |
-
"category": "sans-serif",
|
10292 |
-
"variants": [
|
10293 |
-
"regular",
|
10294 |
-
"italic",
|
10295 |
-
"700",
|
10296 |
-
"700italic"
|
10297 |
-
],
|
10298 |
-
"subsets": [
|
10299 |
-
"latin-ext",
|
10300 |
-
"latin"
|
10301 |
-
],
|
10302 |
-
"version": "v8",
|
10303 |
-
"lastModified": "2016-02-23",
|
10304 |
-
"files": {
|
10305 |
-
"regular": "http://fonts.gstatic.com/s/quattrocentosans/v8/efd6FGWWGX5Z3ztwLBrG9eAj_ty82iuwwDTNEYXGiyQ.ttf",
|
10306 |
-
"italic": "http://fonts.gstatic.com/s/quattrocentosans/v8/8PXYbvM__bjl0rBnKiByg532VBCoA_HLsn85tSWZmdo.ttf",
|
10307 |
-
"700": "http://fonts.gstatic.com/s/quattrocentosans/v8/tXSgPxDl7Lk8Zr_5qX8FIbqxG25nQNOioCZSK4sU-CA.ttf",
|
10308 |
-
"700italic": "http://fonts.gstatic.com/s/quattrocentosans/v8/8N1PdXpbG6RtFvTjl-5E7buqAJxizi8Dk_SK5et7kMg.ttf"
|
10309 |
-
}
|
10310 |
-
},
|
10311 |
-
{
|
10312 |
-
"kind": "webfonts#webfont",
|
10313 |
-
"family": "Questrial",
|
10314 |
-
"category": "sans-serif",
|
10315 |
-
"variants": [
|
10316 |
-
"regular"
|
10317 |
-
],
|
10318 |
-
"subsets": [
|
10319 |
-
"latin"
|
10320 |
-
],
|
10321 |
-
"version": "v6",
|
10322 |
-
"lastModified": "2016-02-23",
|
10323 |
-
"files": {
|
10324 |
-
"regular": "http://fonts.gstatic.com/s/questrial/v6/MoHHaw_WwNs_hd9ob1zTVw.ttf"
|
10325 |
-
}
|
10326 |
-
},
|
10327 |
-
{
|
10328 |
-
"kind": "webfonts#webfont",
|
10329 |
-
"family": "Quicksand",
|
10330 |
-
"category": "sans-serif",
|
10331 |
-
"variants": [
|
10332 |
-
"300",
|
10333 |
-
"regular",
|
10334 |
-
"700"
|
10335 |
-
],
|
10336 |
-
"subsets": [
|
10337 |
-
"latin"
|
10338 |
-
],
|
10339 |
-
"version": "v5",
|
10340 |
-
"lastModified": "2016-02-23",
|
10341 |
-
"files": {
|
10342 |
-
"300": "http://fonts.gstatic.com/s/quicksand/v5/qhfoJiLu10kFjChCCTvGlC3USBnSvpkopQaUR-2r7iU.ttf",
|
10343 |
-
"regular": "http://fonts.gstatic.com/s/quicksand/v5/Ngv3fIJjKB7sD-bTUGIFCA.ttf",
|
10344 |
-
"700": "http://fonts.gstatic.com/s/quicksand/v5/32nyIRHyCu6iqEka_hbKsi3USBnSvpkopQaUR-2r7iU.ttf"
|
10345 |
-
}
|
10346 |
-
},
|
10347 |
-
{
|
10348 |
-
"kind": "webfonts#webfont",
|
10349 |
-
"family": "Quintessential",
|
10350 |
-
"category": "handwriting",
|
10351 |
-
"variants": [
|
10352 |
-
"regular"
|
10353 |
-
],
|
10354 |
-
"subsets": [
|
10355 |
-
"latin-ext",
|
10356 |
-
"latin"
|
10357 |
-
],
|
10358 |
-
"version": "v4",
|
10359 |
-
"lastModified": "2016-02-23",
|
10360 |
-
"files": {
|
10361 |
-
"regular": "http://fonts.gstatic.com/s/quintessential/v4/mmk6ioesnTrEky_Zb92E5s02lXbtMOtZWfuxKeMZO8Q.ttf"
|
10362 |
-
}
|
10363 |
-
},
|
10364 |
-
{
|
10365 |
-
"kind": "webfonts#webfont",
|
10366 |
-
"family": "Qwigley",
|
10367 |
-
"category": "handwriting",
|
10368 |
-
"variants": [
|
10369 |
-
"regular"
|
10370 |
-
],
|
10371 |
-
"subsets": [
|
10372 |
-
"latin-ext",
|
10373 |
-
"latin"
|
10374 |
-
],
|
10375 |
-
"version": "v6",
|
10376 |
-
"lastModified": "2016-02-23",
|
10377 |
-
"files": {
|
10378 |
-
"regular": "http://fonts.gstatic.com/s/qwigley/v6/aDqxws-KubFID85TZHFouw.ttf"
|
10379 |
-
}
|
10380 |
-
},
|
10381 |
-
{
|
10382 |
-
"kind": "webfonts#webfont",
|
10383 |
-
"family": "Racing Sans One",
|
10384 |
-
"category": "display",
|
10385 |
-
"variants": [
|
10386 |
-
"regular"
|
10387 |
-
],
|
10388 |
-
"subsets": [
|
10389 |
-
"latin-ext",
|
10390 |
-
"latin"
|
10391 |
-
],
|
10392 |
-
"version": "v4",
|
10393 |
-
"lastModified": "2016-02-23",
|
10394 |
-
"files": {
|
10395 |
-
"regular": "http://fonts.gstatic.com/s/racingsansone/v4/1r3DpWaCiT7y3PD4KgkNyDjVlsJB_M_Q_LtZxsoxvlw.ttf"
|
10396 |
-
}
|
10397 |
-
},
|
10398 |
-
{
|
10399 |
-
"kind": "webfonts#webfont",
|
10400 |
-
"family": "Radley",
|
10401 |
-
"category": "serif",
|
10402 |
-
"variants": [
|
10403 |
-
"regular",
|
10404 |
-
"italic"
|
10405 |
-
],
|
10406 |
-
"subsets": [
|
10407 |
-
"latin-ext",
|
10408 |
-
"latin"
|
10409 |
-
],
|
10410 |
-
"version": "v9",
|
10411 |
-
"lastModified": "2016-02-23",
|
10412 |
-
"files": {
|
10413 |
-
"regular": "http://fonts.gstatic.com/s/radley/v9/FgE9di09a-mXGzAIyI6Q9Q.ttf",
|
10414 |
-
"italic": "http://fonts.gstatic.com/s/radley/v9/Z_JcACuPAOO2f9kzQcGRug.ttf"
|
10415 |
-
}
|
10416 |
-
},
|
10417 |
-
{
|
10418 |
-
"kind": "webfonts#webfont",
|
10419 |
-
"family": "Rajdhani",
|
10420 |
-
"category": "sans-serif",
|
10421 |
-
"variants": [
|
10422 |
-
"300",
|
10423 |
-
"regular",
|
10424 |
-
"500",
|
10425 |
-
"600",
|
10426 |
-
"700"
|
10427 |
-
],
|
10428 |
-
"subsets": [
|
10429 |
-
"devanagari",
|
10430 |
-
"latin-ext",
|
10431 |
-
"latin"
|
10432 |
-
],
|
10433 |
-
"version": "v5",
|
10434 |
-
"lastModified": "2016-02-23",
|
10435 |
-
"files": {
|
10436 |
-
"300": "http://fonts.gstatic.com/s/rajdhani/v5/9pItuEhQZVGdq8spnHTku6CWcynf_cDxXwCLxiixG1c.ttf",
|
10437 |
-
"regular": "http://fonts.gstatic.com/s/rajdhani/v5/Wfy5zp4PGFAFS7-Wetehzw.ttf",
|
10438 |
-
"500": "http://fonts.gstatic.com/s/rajdhani/v5/nd_5ZpVwm710HcLual0fBqCWcynf_cDxXwCLxiixG1c.ttf",
|
10439 |
-
"600": "http://fonts.gstatic.com/s/rajdhani/v5/5fnmZahByDeTtgxIiqbJSaCWcynf_cDxXwCLxiixG1c.ttf",
|
10440 |
-
"700": "http://fonts.gstatic.com/s/rajdhani/v5/UBK6d2Hg7X7wYLlF92aXW6CWcynf_cDxXwCLxiixG1c.ttf"
|
10441 |
-
}
|
10442 |
-
},
|
10443 |
-
{
|
10444 |
-
"kind": "webfonts#webfont",
|
10445 |
-
"family": "Raleway",
|
10446 |
-
"category": "sans-serif",
|
10447 |
-
"variants": [
|
10448 |
-
"100",
|
10449 |
-
"100italic",
|
10450 |
-
"200",
|
10451 |
-
"200italic",
|
10452 |
-
"300",
|
10453 |
-
"300italic",
|
10454 |
-
"regular",
|
10455 |
-
"italic",
|
10456 |
-
"500",
|
10457 |
-
"500italic",
|
10458 |
-
"600",
|
10459 |
-
"600italic",
|
10460 |
-
"700",
|
10461 |
-
"700italic",
|
10462 |
-
"800",
|
10463 |
-
"800italic",
|
10464 |
-
"900",
|
10465 |
-
"900italic"
|
10466 |
-
],
|
10467 |
-
"subsets": [
|
10468 |
-
"latin-ext",
|
10469 |
-
"latin"
|
10470 |
-
],
|
10471 |
-
"version": "v10",
|
10472 |
-
"lastModified": "2016-02-23",
|
10473 |
-
"files": {
|
10474 |
-
"100": "http://fonts.gstatic.com/s/raleway/v10/UDfD6oxBaBnmFJwQ7XAFNw.ttf",
|
10475 |
-
"100italic": "http://fonts.gstatic.com/s/raleway/v10/hUpHtml6IPNuUR-FwVi2UKCWcynf_cDxXwCLxiixG1c.ttf",
|
10476 |
-
"200": "http://fonts.gstatic.com/s/raleway/v10/LAQwev4hdCtYkOYX4Oc7nPesZW2xOQ-xsNqO47m55DA.ttf",
|
10477 |
-
"200italic": "http://fonts.gstatic.com/s/raleway/v10/N2DIbZG4399cPGfifZUEQi3USBnSvpkopQaUR-2r7iU.ttf",
|
10478 |
-
"300": "http://fonts.gstatic.com/s/raleway/v10/2VvSZU2kb4DZwFfRM4fLQPesZW2xOQ-xsNqO47m55DA.ttf",
|
10479 |
-
"300italic": "http://fonts.gstatic.com/s/raleway/v10/TVSB8ogXDKMcnAAJ5CqrUi3USBnSvpkopQaUR-2r7iU.ttf",
|
10480 |
-
"regular": "http://fonts.gstatic.com/s/raleway/v10/_dCzxpXzIS3sL-gdJWAP8A.ttf",
|
10481 |
-
"italic": "http://fonts.gstatic.com/s/raleway/v10/utU2m1gdZSfuQpArSy5Dbw.ttf",
|
10482 |
-
"500": "http://fonts.gstatic.com/s/raleway/v10/348gn6PEmbLDWlHbbV15d_esZW2xOQ-xsNqO47m55DA.ttf",
|
10483 |
-
"500italic": "http://fonts.gstatic.com/s/raleway/v10/S7vGLZZ40c85SJgiptJGVy3USBnSvpkopQaUR-2r7iU.ttf",
|
10484 |
-
"600": "http://fonts.gstatic.com/s/raleway/v10/M7no6oPkwKYJkedjB1wqEvesZW2xOQ-xsNqO47m55DA.ttf",
|
10485 |
-
"600italic": "http://fonts.gstatic.com/s/raleway/v10/OY22yoG8EJ3IN_muVWm29C3USBnSvpkopQaUR-2r7iU.ttf",
|
10486 |
-
"700": "http://fonts.gstatic.com/s/raleway/v10/VGEV9-DrblisWOWLbK-1XPesZW2xOQ-xsNqO47m55DA.ttf",
|
10487 |
-
"700italic": "http://fonts.gstatic.com/s/raleway/v10/lFxvRPuGFG5ktd7P0WRwKi3USBnSvpkopQaUR-2r7iU.ttf",
|
10488 |
-
"800": "http://fonts.gstatic.com/s/raleway/v10/mMh0JrsYMXcLO69jgJwpUvesZW2xOQ-xsNqO47m55DA.ttf",
|
10489 |
-
"800italic": "http://fonts.gstatic.com/s/raleway/v10/us4LjTCmlYgh3W8CKujEJi3USBnSvpkopQaUR-2r7iU.ttf",
|
10490 |
-
"900": "http://fonts.gstatic.com/s/raleway/v10/ajQQGcDBLcyLpaUfD76UuPesZW2xOQ-xsNqO47m55DA.ttf",
|
10491 |
-
"900italic": "http://fonts.gstatic.com/s/raleway/v10/oY2RadnkHfshu5f0FLsgVS3USBnSvpkopQaUR-2r7iU.ttf"
|
10492 |
-
}
|
10493 |
-
},
|
10494 |
-
{
|
10495 |
-
"kind": "webfonts#webfont",
|
10496 |
-
"family": "Raleway Dots",
|
10497 |
-
"category": "display",
|
10498 |
-
"variants": [
|
10499 |
-
"regular"
|
10500 |
-
],
|
10501 |
-
"subsets": [
|
10502 |
-
"latin-ext",
|
10503 |
-
"latin"
|
10504 |
-
],
|
10505 |
-
"version": "v4",
|
10506 |
-
"lastModified": "2016-02-23",
|
10507 |
-
"files": {
|
10508 |
-
"regular": "http://fonts.gstatic.com/s/ralewaydots/v4/lhLgmWCRcyz-QXo8LCzTfC3USBnSvpkopQaUR-2r7iU.ttf"
|
10509 |
-
}
|
10510 |
-
},
|
10511 |
-
{
|
10512 |
-
"kind": "webfonts#webfont",
|
10513 |
-
"family": "Ramabhadra",
|
10514 |
-
"category": "sans-serif",
|
10515 |
-
"variants": [
|
10516 |
-
"regular"
|
10517 |
-
],
|
10518 |
-
"subsets": [
|
10519 |
-
"telugu",
|
10520 |
-
"latin"
|
10521 |
-
],
|
10522 |
-
"version": "v5",
|
10523 |
-
"lastModified": "2016-02-23",
|
10524 |
-
"files": {
|
10525 |
-
"regular": "http://fonts.gstatic.com/s/ramabhadra/v5/JyhxLXRVQChLDGADS_c5MPesZW2xOQ-xsNqO47m55DA.ttf"
|
10526 |
-
}
|
10527 |
-
},
|
10528 |
-
{
|
10529 |
-
"kind": "webfonts#webfont",
|
10530 |
-
"family": "Ramaraja",
|
10531 |
-
"category": "serif",
|
10532 |
-
"variants": [
|
10533 |
-
"regular"
|
10534 |
-
],
|
10535 |
-
"subsets": [
|
10536 |
-
"telugu",
|
10537 |
-
"latin"
|
10538 |
-
],
|
10539 |
-
"version": "v1",
|
10540 |
-
"lastModified": "2016-02-23",
|
10541 |
-
"files": {
|
10542 |
-
"regular": "http://fonts.gstatic.com/s/ramaraja/v1/XIqzxFapVczstBedHdQTiw.ttf"
|
10543 |
-
}
|
10544 |
-
},
|
10545 |
-
{
|
10546 |
-
"kind": "webfonts#webfont",
|
10547 |
-
"family": "Rambla",
|
10548 |
-
"category": "sans-serif",
|
10549 |
-
"variants": [
|
10550 |
-
"regular",
|
10551 |
-
"italic",
|
10552 |
-
"700",
|
10553 |
-
"700italic"
|
10554 |
-
],
|
10555 |
-
"subsets": [
|
10556 |
-
"latin-ext",
|
10557 |
-
"latin"
|
10558 |
-
],
|
10559 |
-
"version": "v4",
|
10560 |
-
"lastModified": "2016-02-23",
|
10561 |
-
"files": {
|
10562 |
-
"regular": "http://fonts.gstatic.com/s/rambla/v4/YaTmpvm5gFg_ShJKTQmdzg.ttf",
|
10563 |
-
"italic": "http://fonts.gstatic.com/s/rambla/v4/mhUgsKmp0qw3uATdDDAuwA.ttf",
|
10564 |
-
"700": "http://fonts.gstatic.com/s/rambla/v4/C5VZH8BxQKmnBuoC00UPpw.ttf",
|
10565 |
-
"700italic": "http://fonts.gstatic.com/s/rambla/v4/ziMzUZya6QahrKONSI1TzqCWcynf_cDxXwCLxiixG1c.ttf"
|
10566 |
-
}
|
10567 |
-
},
|
10568 |
-
{
|
10569 |
-
"kind": "webfonts#webfont",
|
10570 |
-
"family": "Rammetto One",
|
10571 |
-
"category": "display",
|
10572 |
-
"variants": [
|
10573 |
-
"regular"
|
10574 |
-
],
|
10575 |
-
"subsets": [
|
10576 |
-
"latin-ext",
|
10577 |
-
"latin"
|
10578 |
-
],
|
10579 |
-
"version": "v5",
|
10580 |
-
"lastModified": "2016-02-23",
|
10581 |
-
"files": {
|
10582 |
-
"regular": "http://fonts.gstatic.com/s/rammettoone/v5/mh0uQ1tV8QgSx9v_KyEYPC3USBnSvpkopQaUR-2r7iU.ttf"
|
10583 |
-
}
|
10584 |
-
},
|
10585 |
-
{
|
10586 |
-
"kind": "webfonts#webfont",
|
10587 |
-
"family": "Ranchers",
|
10588 |
-
"category": "display",
|
10589 |
-
"variants": [
|
10590 |
-
"regular"
|
10591 |
-
],
|
10592 |
-
"subsets": [
|
10593 |
-
"latin-ext",
|
10594 |
-
"latin"
|
10595 |
-
],
|
10596 |
-
"version": "v4",
|
10597 |
-
"lastModified": "2016-02-23",
|
10598 |
-
"files": {
|
10599 |
-
"regular": "http://fonts.gstatic.com/s/ranchers/v4/9ya8CZYhqT66VERfjQ7eLA.ttf"
|
10600 |
-
}
|
10601 |
-
},
|
10602 |
-
{
|
10603 |
-
"kind": "webfonts#webfont",
|
10604 |
-
"family": "Rancho",
|
10605 |
-
"category": "handwriting",
|
10606 |
-
"variants": [
|
10607 |
-
"regular"
|
10608 |
-
],
|
10609 |
-
"subsets": [
|
10610 |
-
"latin"
|
10611 |
-
],
|
10612 |
-
"version": "v6",
|
10613 |
-
"lastModified": "2016-02-23",
|
10614 |
-
"files": {
|
10615 |
-
"regular": "http://fonts.gstatic.com/s/rancho/v6/ekp3-4QykC4--6KaslRgHA.ttf"
|
10616 |
-
}
|
10617 |
-
},
|
10618 |
-
{
|
10619 |
-
"kind": "webfonts#webfont",
|
10620 |
-
"family": "Ranga",
|
10621 |
-
"category": "display",
|
10622 |
-
"variants": [
|
10623 |
-
"regular",
|
10624 |
-
"700"
|
10625 |
-
],
|
10626 |
-
"subsets": [
|
10627 |
-
"devanagari",
|
10628 |
-
"latin-ext",
|
10629 |
-
"latin"
|
10630 |
-
],
|
10631 |
-
"version": "v1",
|
10632 |
-
"lastModified": "2016-02-23",
|
10633 |
-
"files": {
|
10634 |
-
"regular": "http://fonts.gstatic.com/s/ranga/v1/xpW6zFTNzY1JykoBIqE1Zg.ttf",
|
10635 |
-
"700": "http://fonts.gstatic.com/s/ranga/v1/h8G_gEUH7vHKH-NkjAs34A.ttf"
|
10636 |
-
}
|
10637 |
-
},
|
10638 |
-
{
|
10639 |
-
"kind": "webfonts#webfont",
|
10640 |
-
"family": "Rationale",
|
10641 |
-
"category": "sans-serif",
|
10642 |
-
"variants": [
|
10643 |
-
"regular"
|
10644 |
-
],
|
10645 |
-
"subsets": [
|
10646 |
-
"latin"
|
10647 |
-
],
|
10648 |
-
"version": "v7",
|
10649 |
-
"lastModified": "2016-02-23",
|
10650 |
-
"files": {
|
10651 |
-
"regular": "http://fonts.gstatic.com/s/rationale/v7/7M2eN-di0NGLQse7HzJRfg.ttf"
|
10652 |
-
}
|
10653 |
-
},
|
10654 |
-
{
|
10655 |
-
"kind": "webfonts#webfont",
|
10656 |
-
"family": "Ravi Prakash",
|
10657 |
-
"category": "display",
|
10658 |
-
"variants": [
|
10659 |
-
"regular"
|
10660 |
-
],
|
10661 |
-
"subsets": [
|
10662 |
-
"telugu",
|
10663 |
-
"latin"
|
10664 |
-
],
|
10665 |
-
"version": "v3",
|
10666 |
-
"lastModified": "2016-02-23",
|
10667 |
-
"files": {
|
10668 |
-
"regular": "http://fonts.gstatic.com/s/raviprakash/v3/8EzbM7Rymjk25jWeHxbO6C3USBnSvpkopQaUR-2r7iU.ttf"
|
10669 |
-
}
|
10670 |
-
},
|
10671 |
-
{
|
10672 |
-
"kind": "webfonts#webfont",
|
10673 |
-
"family": "Redressed",
|
10674 |
-
"category": "handwriting",
|
10675 |
-
"variants": [
|
10676 |
-
"regular"
|
10677 |
-
],
|
10678 |
-
"subsets": [
|
10679 |
-
"latin"
|
10680 |
-
],
|
10681 |
-
"version": "v6",
|
10682 |
-
"lastModified": "2016-02-23",
|
10683 |
-
"files": {
|
10684 |
-
"regular": "http://fonts.gstatic.com/s/redressed/v6/3aZ5sTBppH3oSm5SabegtA.ttf"
|
10685 |
-
}
|
10686 |
-
},
|
10687 |
-
{
|
10688 |
-
"kind": "webfonts#webfont",
|
10689 |
-
"family": "Reenie Beanie",
|
10690 |
-
"category": "handwriting",
|
10691 |
-
"variants": [
|
10692 |
-
"regular"
|
10693 |
-
],
|
10694 |
-
"subsets": [
|
10695 |
-
"latin"
|
10696 |
-
],
|
10697 |
-
"version": "v7",
|
10698 |
-
"lastModified": "2016-02-23",
|
10699 |
-
"files": {
|
10700 |
-
"regular": "http://fonts.gstatic.com/s/reeniebeanie/v7/ljpKc6CdXusL1cnGUSamX4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10701 |
-
}
|
10702 |
-
},
|
10703 |
-
{
|
10704 |
-
"kind": "webfonts#webfont",
|
10705 |
-
"family": "Revalia",
|
10706 |
-
"category": "display",
|
10707 |
-
"variants": [
|
10708 |
-
"regular"
|
10709 |
-
],
|
10710 |
-
"subsets": [
|
10711 |
-
"latin-ext",
|
10712 |
-
"latin"
|
10713 |
-
],
|
10714 |
-
"version": "v4",
|
10715 |
-
"lastModified": "2016-02-23",
|
10716 |
-
"files": {
|
10717 |
-
"regular": "http://fonts.gstatic.com/s/revalia/v4/1TKw66fF5_poiL0Ktgo4_A.ttf"
|
10718 |
-
}
|
10719 |
-
},
|
10720 |
-
{
|
10721 |
-
"kind": "webfonts#webfont",
|
10722 |
-
"family": "Rhodium Libre",
|
10723 |
-
"category": "serif",
|
10724 |
-
"variants": [
|
10725 |
-
"regular"
|
10726 |
-
],
|
10727 |
-
"subsets": [
|
10728 |
-
"devanagari",
|
10729 |
-
"latin-ext",
|
10730 |
-
"latin"
|
10731 |
-
],
|
10732 |
-
"version": "v1",
|
10733 |
-
"lastModified": "2015-06-03",
|
10734 |
-
"files": {
|
10735 |
-
"regular": "http://fonts.gstatic.com/s/rhodiumlibre/v1/Vxr7A4-xE2zsBDDI8BcseIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
10736 |
-
}
|
10737 |
-
},
|
10738 |
-
{
|
10739 |
-
"kind": "webfonts#webfont",
|
10740 |
-
"family": "Ribeye",
|
10741 |
-
"category": "display",
|
10742 |
-
"variants": [
|
10743 |
-
"regular"
|
10744 |
-
],
|
10745 |
-
"subsets": [
|
10746 |
-
"latin-ext",
|
10747 |
-
"latin"
|
10748 |
-
],
|
10749 |
-
"version": "v5",
|
10750 |
-
"lastModified": "2016-02-23",
|
10751 |
-
"files": {
|
10752 |
-
"regular": "http://fonts.gstatic.com/s/ribeye/v5/e5w3VE8HnWBln4Ll6lUj3Q.ttf"
|
10753 |
-
}
|
10754 |
-
},
|
10755 |
-
{
|
10756 |
-
"kind": "webfonts#webfont",
|
10757 |
-
"family": "Ribeye Marrow",
|
10758 |
-
"category": "display",
|
10759 |
-
"variants": [
|
10760 |
-
"regular"
|
10761 |
-
],
|
10762 |
-
"subsets": [
|
10763 |
-
"latin-ext",
|
10764 |
-
"latin"
|
10765 |
-
],
|
10766 |
-
"version": "v6",
|
10767 |
-
"lastModified": "2016-02-23",
|
10768 |
-
"files": {
|
10769 |
-
"regular": "http://fonts.gstatic.com/s/ribeyemarrow/v6/q7cBSA-4ErAXBCDFPrhlY0cTNmV93fYG7UKgsLQNQWs.ttf"
|
10770 |
-
}
|
10771 |
-
},
|
10772 |
-
{
|
10773 |
-
"kind": "webfonts#webfont",
|
10774 |
-
"family": "Righteous",
|
10775 |
-
"category": "display",
|
10776 |
-
"variants": [
|
10777 |
-
"regular"
|
10778 |
-
],
|
10779 |
-
"subsets": [
|
10780 |
-
"latin-ext",
|
10781 |
-
"latin"
|
10782 |
-
],
|
10783 |
-
"version": "v5",
|
10784 |
-
"lastModified": "2016-02-23",
|
10785 |
-
"files": {
|
10786 |
-
"regular": "http://fonts.gstatic.com/s/righteous/v5/0nRRWM_gCGCt2S-BCfN8WQ.ttf"
|
10787 |
-
}
|
10788 |
-
},
|
10789 |
-
{
|
10790 |
-
"kind": "webfonts#webfont",
|
10791 |
-
"family": "Risque",
|
10792 |
-
"category": "display",
|
10793 |
-
"variants": [
|
10794 |
-
"regular"
|
10795 |
-
],
|
10796 |
-
"subsets": [
|
10797 |
-
"latin-ext",
|
10798 |
-
"latin"
|
10799 |
-
],
|
10800 |
-
"version": "v4",
|
10801 |
-
"lastModified": "2016-02-23",
|
10802 |
-
"files": {
|
10803 |
-
"regular": "http://fonts.gstatic.com/s/risque/v4/92RnElGnl8yHP97-KV3Fyg.ttf"
|
10804 |
-
}
|
10805 |
-
},
|
10806 |
-
{
|
10807 |
-
"kind": "webfonts#webfont",
|
10808 |
-
"family": "Roboto",
|
10809 |
-
"category": "sans-serif",
|
10810 |
-
"variants": [
|
10811 |
-
"100",
|
10812 |
-
"100italic",
|
10813 |
-
"300",
|
10814 |
-
"300italic",
|
10815 |
-
"regular",
|
10816 |
-
"italic",
|
10817 |
-
"500",
|
10818 |
-
"500italic",
|
10819 |
-
"700",
|
10820 |
-
"700italic",
|
10821 |
-
"900",
|
10822 |
-
"900italic"
|
10823 |
-
],
|
10824 |
-
"subsets": [
|
10825 |
-
"latin-ext",
|
10826 |
-
"greek-ext",
|
10827 |
-
"vietnamese",
|
10828 |
-
"cyrillic-ext",
|
10829 |
-
"cyrillic",
|
10830 |
-
"greek",
|
10831 |
-
"latin"
|
10832 |
-
],
|
10833 |
-
"version": "v15",
|
10834 |
-
"lastModified": "2016-02-23",
|
10835 |
-
"files": {
|
10836 |
-
"100": "http://fonts.gstatic.com/s/roboto/v15/7MygqTe2zs9YkP0adA9QQQ.ttf",
|
10837 |
-
"100italic": "http://fonts.gstatic.com/s/roboto/v15/T1xnudodhcgwXCmZQ490TPesZW2xOQ-xsNqO47m55DA.ttf",
|
10838 |
-
"300": "http://fonts.gstatic.com/s/roboto/v15/dtpHsbgPEm2lVWciJZ0P-A.ttf",
|
10839 |
-
"300italic": "http://fonts.gstatic.com/s/roboto/v15/iE8HhaRzdhPxC93dOdA056CWcynf_cDxXwCLxiixG1c.ttf",
|
10840 |
-
"regular": "http://fonts.gstatic.com/s/roboto/v15/W5F8_SL0XFawnjxHGsZjJA.ttf",
|
10841 |
-
"italic": "http://fonts.gstatic.com/s/roboto/v15/hcKoSgxdnKlbH5dlTwKbow.ttf",
|
10842 |
-
"500": "http://fonts.gstatic.com/s/roboto/v15/Uxzkqj-MIMWle-XP2pDNAA.ttf",
|
10843 |
-
"500italic": "http://fonts.gstatic.com/s/roboto/v15/daIfzbEw-lbjMyv4rMUUTqCWcynf_cDxXwCLxiixG1c.ttf",
|
10844 |
-
"700": "http://fonts.gstatic.com/s/roboto/v15/bdHGHleUa-ndQCOrdpfxfw.ttf",
|
10845 |
-
"700italic": "http://fonts.gstatic.com/s/roboto/v15/owYYXKukxFDFjr0ZO8NXh6CWcynf_cDxXwCLxiixG1c.ttf",
|
10846 |
-
"900": "http://fonts.gstatic.com/s/roboto/v15/H1vB34nOKWXqzKotq25pcg.ttf",
|
10847 |
-
"900italic": "http://fonts.gstatic.com/s/roboto/v15/b9PWBSMHrT2zM5FgUdtu0aCWcynf_cDxXwCLxiixG1c.ttf"
|
10848 |
-
}
|
10849 |
-
},
|
10850 |
-
{
|
10851 |
-
"kind": "webfonts#webfont",
|
10852 |
-
"family": "Roboto Condensed",
|
10853 |
-
"category": "sans-serif",
|
10854 |
-
"variants": [
|
10855 |
-
"300",
|
10856 |
-
"300italic",
|
10857 |
-
"regular",
|
10858 |
-
"italic",
|
10859 |
-
"700",
|
10860 |
-
"700italic"
|
10861 |
-
],
|
10862 |
-
"subsets": [
|
10863 |
-
"latin-ext",
|
10864 |
-
"greek-ext",
|
10865 |
-
"vietnamese",
|
10866 |
-
"cyrillic-ext",
|
10867 |
-
"cyrillic",
|
10868 |
-
"greek",
|
10869 |
-
"latin"
|
10870 |
-
],
|
10871 |
-
"version": "v13",
|
10872 |
-
"lastModified": "2016-02-23",
|
10873 |
-
"files": {
|
10874 |
-
"300": "http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nJRhFVcex_hajThhFkHyhYk.ttf",
|
10875 |
-
"300italic": "http://fonts.gstatic.com/s/robotocondensed/v13/mg0cGfGRUERshzBlvqxeAPYa9bgCHecWXGgisnodcS0.ttf",
|
10876 |
-
"regular": "http://fonts.gstatic.com/s/robotocondensed/v13/Zd2E9abXLFGSr9G3YK2MsKDbm6fPDOZJsR8PmdG62gY.ttf",
|
10877 |
-
"italic": "http://fonts.gstatic.com/s/robotocondensed/v13/BP5K8ZAJv9qEbmuFp8RpJY_eiqgTfYGaH0bJiUDZ5GA.ttf",
|
10878 |
-
"700": "http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nPOYkGiSOYDq_T7HbIOV1hA.ttf",
|
10879 |
-
"700italic": "http://fonts.gstatic.com/s/robotocondensed/v13/mg0cGfGRUERshzBlvqxeAE2zk2RGRC3SlyyLLQfjS_8.ttf"
|
10880 |
-
}
|
10881 |
-
},
|
10882 |
-
{
|
10883 |
-
"kind": "webfonts#webfont",
|
10884 |
-
"family": "Roboto Mono",
|
10885 |
-
"category": "monospace",
|
10886 |
-
"variants": [
|
10887 |
-
"100",
|
10888 |
-
"100italic",
|
10889 |
-
"300",
|
10890 |
-
"300italic",
|
10891 |
-
"regular",
|
10892 |
-
"italic",
|
10893 |
-
"500",
|
10894 |
-
"500italic",
|
10895 |
-
"700",
|
10896 |
-
"700italic"
|
10897 |
-
],
|
10898 |
-
"subsets": [
|
10899 |
-
"latin-ext",
|
10900 |
-
"greek-ext",
|
10901 |
-
"vietnamese",
|
10902 |
-
"cyrillic-ext",
|
10903 |
-
"cyrillic",
|
10904 |
-
"greek",
|
10905 |
-
"latin"
|
10906 |
-
],
|
10907 |
-
"version": "v4",
|
10908 |
-
"lastModified": "2015-05-28",
|
10909 |
-
"files": {
|
10910 |
-
"100": "http://fonts.gstatic.com/s/robotomono/v4/aOIeRp72J9_Hp_8KwQ9M-YAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
10911 |
-
"100italic": "http://fonts.gstatic.com/s/robotomono/v4/rqQ1zSE-ZGCKVZgew-A9dgyDtfpXZi-8rXUZYR4dumU.ttf",
|
10912 |
-
"300": "http://fonts.gstatic.com/s/robotomono/v4/N4duVc9C58uwPiY8_59Fzy9-WlPSxbfiI49GsXo3q0g.ttf",
|
10913 |
-
"300italic": "http://fonts.gstatic.com/s/robotomono/v4/1OsMuiiO6FCF2x67vzDKA2o9eWDfYYxG3A176Zl7aIg.ttf",
|
10914 |
-
"regular": "http://fonts.gstatic.com/s/robotomono/v4/eJ4cxQe85Lo39t-LVoKa26CWcynf_cDxXwCLxiixG1c.ttf",
|
10915 |
-
"italic": "http://fonts.gstatic.com/s/robotomono/v4/mE0EPT_93c7f86_WQexR3EeOrDcLawS7-ssYqLr2Xp4.ttf",
|
10916 |
-
"500": "http://fonts.gstatic.com/s/robotomono/v4/N4duVc9C58uwPiY8_59Fz8CNfqCYlB_eIx7H1TVXe60.ttf",
|
10917 |
-
"500italic": "http://fonts.gstatic.com/s/robotomono/v4/1OsMuiiO6FCF2x67vzDKA2nWRcJAYo5PSCx8UfGMHCI.ttf",
|
10918 |
-
"700": "http://fonts.gstatic.com/s/robotomono/v4/N4duVc9C58uwPiY8_59Fz3e1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
10919 |
-
"700italic": "http://fonts.gstatic.com/s/robotomono/v4/1OsMuiiO6FCF2x67vzDKA8_zJjSACmk0BRPxQqhnNLU.ttf"
|
10920 |
-
}
|
10921 |
-
},
|
10922 |
-
{
|
10923 |
-
"kind": "webfonts#webfont",
|
10924 |
-
"family": "Roboto Slab",
|
10925 |
-
"category": "serif",
|
10926 |
-
"variants": [
|
10927 |
-
"100",
|
10928 |
-
"300",
|
10929 |
-
"regular",
|
10930 |
-
"700"
|
10931 |
-
],
|
10932 |
-
"subsets": [
|
10933 |
-
"latin-ext",
|
10934 |
-
"greek-ext",
|
10935 |
-
"vietnamese",
|
10936 |
-
"cyrillic-ext",
|
10937 |
-
"cyrillic",
|
10938 |
-
"greek",
|
10939 |
-
"latin"
|
10940 |
-
],
|
10941 |
-
"version": "v6",
|
10942 |
-
"lastModified": "2016-02-23",
|
10943 |
-
"files": {
|
10944 |
-
"100": "http://fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
10945 |
-
"300": "http://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJS9-WlPSxbfiI49GsXo3q0g.ttf",
|
10946 |
-
"regular": "http://fonts.gstatic.com/s/robotoslab/v6/3__ulTNA7unv0UtplybPiqCWcynf_cDxXwCLxiixG1c.ttf",
|
10947 |
-
"700": "http://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJXe1Pd76Vl7zRpE7NLJQ7XU.ttf"
|
10948 |
-
}
|
10949 |
-
},
|
10950 |
-
{
|
10951 |
-
"kind": "webfonts#webfont",
|
10952 |
-
"family": "Rochester",
|
10953 |
-
"category": "handwriting",
|
10954 |
-
"variants": [
|
10955 |
-
"regular"
|
10956 |
-
],
|
10957 |
-
"subsets": [
|
10958 |
-
"latin"
|
10959 |
-
],
|
10960 |
-
"version": "v6",
|
10961 |
-
"lastModified": "2016-02-23",
|
10962 |
-
"files": {
|
10963 |
-
"regular": "http://fonts.gstatic.com/s/rochester/v6/bnj8tmQBiOkdji_G_yvypg.ttf"
|
10964 |
-
}
|
10965 |
-
},
|
10966 |
-
{
|
10967 |
-
"kind": "webfonts#webfont",
|
10968 |
-
"family": "Rock Salt",
|
10969 |
-
"category": "handwriting",
|
10970 |
-
"variants": [
|
10971 |
-
"regular"
|
10972 |
-
],
|
10973 |
-
"subsets": [
|
10974 |
-
"latin"
|
10975 |
-
],
|
10976 |
-
"version": "v6",
|
10977 |
-
"lastModified": "2016-02-23",
|
10978 |
-
"files": {
|
10979 |
-
"regular": "http://fonts.gstatic.com/s/rocksalt/v6/Zy7JF9h9WbhD9V3SFMQ1UQ.ttf"
|
10980 |
-
}
|
10981 |
-
},
|
10982 |
-
{
|
10983 |
-
"kind": "webfonts#webfont",
|
10984 |
-
"family": "Rokkitt",
|
10985 |
-
"category": "serif",
|
10986 |
-
"variants": [
|
10987 |
-
"regular",
|
10988 |
-
"700"
|
10989 |
-
],
|
10990 |
-
"subsets": [
|
10991 |
-
"latin"
|
10992 |
-
],
|
10993 |
-
"version": "v10",
|
10994 |
-
"lastModified": "2016-02-24",
|
10995 |
-
"files": {
|
10996 |
-
"regular": "http://fonts.gstatic.com/s/rokkitt/v10/GMA7Z_ToF8uSvpZAgnp_VQ.ttf",
|
10997 |
-
"700": "http://fonts.gstatic.com/s/rokkitt/v10/gxlo-sr3rPmvgSixYog_ofesZW2xOQ-xsNqO47m55DA.ttf"
|
10998 |
-
}
|
10999 |
-
},
|
11000 |
-
{
|
11001 |
-
"kind": "webfonts#webfont",
|
11002 |
-
"family": "Romanesco",
|
11003 |
-
"category": "handwriting",
|
11004 |
-
"variants": [
|
11005 |
-
"regular"
|
11006 |
-
],
|
11007 |
-
"subsets": [
|
11008 |
-
"latin-ext",
|
11009 |
-
"latin"
|
11010 |
-
],
|
11011 |
-
"version": "v5",
|
11012 |
-
"lastModified": "2016-02-23",
|
11013 |
-
"files": {
|
11014 |
-
"regular": "http://fonts.gstatic.com/s/romanesco/v5/2udIjUrpK_CPzYSxRVzD4Q.ttf"
|
11015 |
-
}
|
11016 |
-
},
|
11017 |
-
{
|
11018 |
-
"kind": "webfonts#webfont",
|
11019 |
-
"family": "Ropa Sans",
|
11020 |
-
"category": "sans-serif",
|
11021 |
-
"variants": [
|
11022 |
-
"regular",
|
11023 |
-
"italic"
|
11024 |
-
],
|
11025 |
-
"subsets": [
|
11026 |
-
"latin-ext",
|
11027 |
-
"latin"
|
11028 |
-
],
|
11029 |
-
"version": "v5",
|
11030 |
-
"lastModified": "2016-02-23",
|
11031 |
-
"files": {
|
11032 |
-
"regular": "http://fonts.gstatic.com/s/ropasans/v5/Gba7ZzVBuhg6nX_AoSwlkQ.ttf",
|
11033 |
-
"italic": "http://fonts.gstatic.com/s/ropasans/v5/V1zbhZQscNrh63dy5Jk2nqCWcynf_cDxXwCLxiixG1c.ttf"
|
11034 |
-
}
|
11035 |
-
},
|
11036 |
-
{
|
11037 |
-
"kind": "webfonts#webfont",
|
11038 |
-
"family": "Rosario",
|
11039 |
-
"category": "sans-serif",
|
11040 |
-
"variants": [
|
11041 |
-
"regular",
|
11042 |
-
"italic",
|
11043 |
-
"700",
|
11044 |
-
"700italic"
|
11045 |
-
],
|
11046 |
-
"subsets": [
|
11047 |
-
"latin"
|
11048 |
-
],
|
11049 |
-
"version": "v11",
|
11050 |
-
"lastModified": "2016-02-23",
|
11051 |
-
"files": {
|
11052 |
-
"regular": "http://fonts.gstatic.com/s/rosario/v11/bL-cEh8dXtDupB2WccA2LA.ttf",
|
11053 |
-
"italic": "http://fonts.gstatic.com/s/rosario/v11/pkflNy18HEuVVx4EOjeb_Q.ttf",
|
11054 |
-
"700": "http://fonts.gstatic.com/s/rosario/v11/nrS6PJvDWN42RP4TFWccd_esZW2xOQ-xsNqO47m55DA.ttf",
|
11055 |
-
"700italic": "http://fonts.gstatic.com/s/rosario/v11/EOgFX2Va5VGrkhn_eDpIRS3USBnSvpkopQaUR-2r7iU.ttf"
|
11056 |
-
}
|
11057 |
-
},
|
11058 |
-
{
|
11059 |
-
"kind": "webfonts#webfont",
|
11060 |
-
"family": "Rosarivo",
|
11061 |
-
"category": "serif",
|
11062 |
-
"variants": [
|
11063 |
-
"regular",
|
11064 |
-
"italic"
|
11065 |
-
],
|
11066 |
-
"subsets": [
|
11067 |
-
"latin-ext",
|
11068 |
-
"latin"
|
11069 |
-
],
|
11070 |
-
"version": "v4",
|
11071 |
-
"lastModified": "2016-02-23",
|
11072 |
-
"files": {
|
11073 |
-
"regular": "http://fonts.gstatic.com/s/rosarivo/v4/EmPiINK0qyqc7KSsNjJamA.ttf",
|
11074 |
-
"italic": "http://fonts.gstatic.com/s/rosarivo/v4/u3VuWsWQlX1pDqsbz4paNPesZW2xOQ-xsNqO47m55DA.ttf"
|
11075 |
-
}
|
11076 |
-
},
|
11077 |
-
{
|
11078 |
-
"kind": "webfonts#webfont",
|
11079 |
-
"family": "Rouge Script",
|
11080 |
-
"category": "handwriting",
|
11081 |
-
"variants": [
|
11082 |
-
"regular"
|
11083 |
-
],
|
11084 |
-
"subsets": [
|
11085 |
-
"latin"
|
11086 |
-
],
|
11087 |
-
"version": "v5",
|
11088 |
-
"lastModified": "2016-02-23",
|
11089 |
-
"files": {
|
11090 |
-
"regular": "http://fonts.gstatic.com/s/rougescript/v5/AgXDSqZJmy12qS0ixjs6Vy3USBnSvpkopQaUR-2r7iU.ttf"
|
11091 |
-
}
|
11092 |
-
},
|
11093 |
-
{
|
11094 |
-
"kind": "webfonts#webfont",
|
11095 |
-
"family": "Rozha One",
|
11096 |
-
"category": "serif",
|
11097 |
-
"variants": [
|
11098 |
-
"regular"
|
11099 |
-
],
|
11100 |
-
"subsets": [
|
11101 |
-
"devanagari",
|
11102 |
-
"latin-ext",
|
11103 |
-
"latin"
|
11104 |
-
],
|
11105 |
-
"version": "v2",
|
11106 |
-
"lastModified": "2016-02-23",
|
11107 |
-
"files": {
|
11108 |
-
"regular": "http://fonts.gstatic.com/s/rozhaone/v2/PyrMHQ6lucEIxwKmhqsX8A.ttf"
|
11109 |
-
}
|
11110 |
-
},
|
11111 |
-
{
|
11112 |
-
"kind": "webfonts#webfont",
|
11113 |
-
"family": "Rubik",
|
11114 |
-
"category": "sans-serif",
|
11115 |
-
"variants": [
|
11116 |
-
"300",
|
11117 |
-
"300italic",
|
11118 |
-
"regular",
|
11119 |
-
"italic",
|
11120 |
-
"500",
|
11121 |
-
"500italic",
|
11122 |
-
"700",
|
11123 |
-
"700italic",
|
11124 |
-
"900",
|
11125 |
-
"900italic"
|
11126 |
-
],
|
11127 |
-
"subsets": [
|
11128 |
-
"latin-ext",
|
11129 |
-
"cyrillic",
|
11130 |
-
"latin"
|
11131 |
-
],
|
11132 |
-
"version": "v1",
|
11133 |
-
"lastModified": "2015-07-22",
|
11134 |
-
"files": {
|
11135 |
-
"300": "http://fonts.gstatic.com/s/rubik/v1/o1vXYO8YwDpErHEAPAxpOg.ttf",
|
11136 |
-
"300italic": "http://fonts.gstatic.com/s/rubik/v1/NyXDvUhvZLSWiVfGa5KM-vesZW2xOQ-xsNqO47m55DA.ttf",
|
11137 |
-
"regular": "http://fonts.gstatic.com/s/rubik/v1/4sMyW_teKWHB3K8Hm-Il6A.ttf",
|
11138 |
-
"italic": "http://fonts.gstatic.com/s/rubik/v1/elD65ddI0qvNcCh42b1Iqg.ttf",
|
11139 |
-
"500": "http://fonts.gstatic.com/s/rubik/v1/D4HihERG27s-BJrQ4dvkbw.ttf",
|
11140 |
-
"500italic": "http://fonts.gstatic.com/s/rubik/v1/0hcxMdoMbXtHiEM1ebdN6PesZW2xOQ-xsNqO47m55DA.ttf",
|
11141 |
-
"700": "http://fonts.gstatic.com/s/rubik/v1/m1GGHcpLe6Mb0_sAyjXE4g.ttf",
|
11142 |
-
"700italic": "http://fonts.gstatic.com/s/rubik/v1/R4g_rs714cUXVZcdnRdHw_esZW2xOQ-xsNqO47m55DA.ttf",
|
11143 |
-
"900": "http://fonts.gstatic.com/s/rubik/v1/mOHfPRl5uP4vw7-5-dbnng.ttf",
|
11144 |
-
"900italic": "http://fonts.gstatic.com/s/rubik/v1/HH1b7kBbwInqlw8OQxRE5vesZW2xOQ-xsNqO47m55DA.ttf"
|
11145 |
-
}
|
11146 |
-
},
|
11147 |
-
{
|
11148 |
-
"kind": "webfonts#webfont",
|
11149 |
-
"family": "Rubik Mono One",
|
11150 |
-
"category": "sans-serif",
|
11151 |
-
"variants": [
|
11152 |
-
"regular"
|
11153 |
-
],
|
11154 |
-
"subsets": [
|
11155 |
-
"latin-ext",
|
11156 |
-
"cyrillic",
|
11157 |
-
"latin"
|
11158 |
-
],
|
11159 |
-
"version": "v5",
|
11160 |
-
"lastModified": "2016-02-23",
|
11161 |
-
"files": {
|
11162 |
-
"regular": "http://fonts.gstatic.com/s/rubikmonoone/v5/e_cupPtD4BrZzotubJD7UbAREgn5xbW23GEXXnhMQ5Y.ttf"
|
11163 |
-
}
|
11164 |
-
},
|
11165 |
-
{
|
11166 |
-
"kind": "webfonts#webfont",
|
11167 |
-
"family": "Rubik One",
|
11168 |
-
"category": "sans-serif",
|
11169 |
-
"variants": [
|
11170 |
-
"regular"
|
11171 |
-
],
|
11172 |
-
"subsets": [
|
11173 |
-
"latin-ext",
|
11174 |
-
"cyrillic",
|
11175 |
-
"latin"
|
11176 |
-
],
|
11177 |
-
"version": "v4",
|
11178 |
-
"lastModified": "2016-02-23",
|
11179 |
-
"files": {
|
11180 |
-
"regular": "http://fonts.gstatic.com/s/rubikone/v4/Zs6TtctNRSIR8T5PO018rQ.ttf"
|
11181 |
-
}
|
11182 |
-
},
|
11183 |
-
{
|
11184 |
-
"kind": "webfonts#webfont",
|
11185 |
-
"family": "Ruda",
|
11186 |
-
"category": "sans-serif",
|
11187 |
-
"variants": [
|
11188 |
-
"regular",
|
11189 |
-
"700",
|
11190 |
-
"900"
|
11191 |
-
],
|
11192 |
-
"subsets": [
|
11193 |
-
"latin-ext",
|
11194 |
-
"latin"
|
11195 |
-
],
|
11196 |
-
"version": "v7",
|
11197 |
-
"lastModified": "2016-02-23",
|
11198 |
-
"files": {
|
11199 |
-
"regular": "http://fonts.gstatic.com/s/ruda/v7/jPEIPB7DM2DNK_uBGv2HGw.ttf",
|
11200 |
-
"700": "http://fonts.gstatic.com/s/ruda/v7/JABOu1SYOHcGXVejUq4w6g.ttf",
|
11201 |
-
"900": "http://fonts.gstatic.com/s/ruda/v7/Uzusv-enCjoIrznlJJaBRw.ttf"
|
11202 |
-
}
|
11203 |
-
},
|
11204 |
-
{
|
11205 |
-
"kind": "webfonts#webfont",
|
11206 |
-
"family": "Rufina",
|
11207 |
-
"category": "serif",
|
11208 |
-
"variants": [
|
11209 |
-
"regular",
|
11210 |
-
"700"
|
11211 |
-
],
|
11212 |
-
"subsets": [
|
11213 |
-
"latin-ext",
|
11214 |
-
"latin"
|
11215 |
-
],
|
11216 |
-
"version": "v4",
|
11217 |
-
"lastModified": "2016-02-23",
|
11218 |
-
"files": {
|
11219 |
-
"regular": "http://fonts.gstatic.com/s/rufina/v4/s9IFr_fIemiohfZS-ZRDbQ.ttf",
|
11220 |
-
"700": "http://fonts.gstatic.com/s/rufina/v4/D0RUjXFr55y4MVZY2Ww_RA.ttf"
|
11221 |
-
}
|
11222 |
-
},
|
11223 |
-
{
|
11224 |
-
"kind": "webfonts#webfont",
|
11225 |
-
"family": "Ruge Boogie",
|
11226 |
-
"category": "handwriting",
|
11227 |
-
"variants": [
|
11228 |
-
"regular"
|
11229 |
-
],
|
11230 |
-
"subsets": [
|
11231 |
-
"latin-ext",
|
11232 |
-
"latin"
|
11233 |
-
],
|
11234 |
-
"version": "v7",
|
11235 |
-
"lastModified": "2016-02-23",
|
11236 |
-
"files": {
|
11237 |
-
"regular": "http://fonts.gstatic.com/s/rugeboogie/v7/U-TTmltL8aENLVIqYbI5QaCWcynf_cDxXwCLxiixG1c.ttf"
|
11238 |
-
}
|
11239 |
-
},
|
11240 |
-
{
|
11241 |
-
"kind": "webfonts#webfont",
|
11242 |
-
"family": "Ruluko",
|
11243 |
-
"category": "sans-serif",
|
11244 |
-
"variants": [
|
11245 |
-
"regular"
|
11246 |
-
],
|
11247 |
-
"subsets": [
|
11248 |
-
"latin-ext",
|
11249 |
-
"latin"
|
11250 |
-
],
|
11251 |
-
"version": "v4",
|
11252 |
-
"lastModified": "2016-02-23",
|
11253 |
-
"files": {
|
11254 |
-
"regular": "http://fonts.gstatic.com/s/ruluko/v4/lv4cMwJtrx_dzmlK5SDc1g.ttf"
|
11255 |
-
}
|
11256 |
-
},
|
11257 |
-
{
|
11258 |
-
"kind": "webfonts#webfont",
|
11259 |
-
"family": "Rum Raisin",
|
11260 |
-
"category": "sans-serif",
|
11261 |
-
"variants": [
|
11262 |
-
"regular"
|
11263 |
-
],
|
11264 |
-
"subsets": [
|
11265 |
-
"latin-ext",
|
11266 |
-
"latin"
|
11267 |
-
],
|
11268 |
-
"version": "v4",
|
11269 |
-
"lastModified": "2016-02-23",
|
11270 |
-
"files": {
|
11271 |
-
"regular": "http://fonts.gstatic.com/s/rumraisin/v4/kDiL-ntDOEq26B7kYM7cx_esZW2xOQ-xsNqO47m55DA.ttf"
|
11272 |
-
}
|
11273 |
-
},
|
11274 |
-
{
|
11275 |
-
"kind": "webfonts#webfont",
|
11276 |
-
"family": "Ruslan Display",
|
11277 |
-
"category": "display",
|
11278 |
-
"variants": [
|
11279 |
-
"regular"
|
11280 |
-
],
|
11281 |
-
"subsets": [
|
11282 |
-
"latin-ext",
|
11283 |
-
"cyrillic",
|
11284 |
-
"latin"
|
11285 |
-
],
|
11286 |
-
"version": "v7",
|
11287 |
-
"lastModified": "2016-02-23",
|
11288 |
-
"files": {
|
11289 |
-
"regular": "http://fonts.gstatic.com/s/ruslandisplay/v7/SREdhlyLNUfU1VssRBfs3rgH88D3l9N4auRNHrNS708.ttf"
|
11290 |
-
}
|
11291 |
-
},
|
11292 |
-
{
|
11293 |
-
"kind": "webfonts#webfont",
|
11294 |
-
"family": "Russo One",
|
11295 |
-
"category": "sans-serif",
|
11296 |
-
"variants": [
|
11297 |
-
"regular"
|
11298 |
-
],
|
11299 |
-
"subsets": [
|
11300 |
-
"latin-ext",
|
11301 |
-
"cyrillic",
|
11302 |
-
"latin"
|
11303 |
-
],
|
11304 |
-
"version": "v5",
|
11305 |
-
"lastModified": "2016-02-23",
|
11306 |
-
"files": {
|
11307 |
-
"regular": "http://fonts.gstatic.com/s/russoone/v5/zfwxZ--UhUc7FVfgT21PRQ.ttf"
|
11308 |
-
}
|
11309 |
-
},
|
11310 |
-
{
|
11311 |
-
"kind": "webfonts#webfont",
|
11312 |
-
"family": "Ruthie",
|
11313 |
-
"category": "handwriting",
|
11314 |
-
"variants": [
|
11315 |
-
"regular"
|
11316 |
-
],
|
11317 |
-
"subsets": [
|
11318 |
-
"latin-ext",
|
11319 |
-
"latin"
|
11320 |
-
],
|
11321 |
-
"version": "v6",
|
11322 |
-
"lastModified": "2016-02-23",
|
11323 |
-
"files": {
|
11324 |
-
"regular": "http://fonts.gstatic.com/s/ruthie/v6/vJ2LorukHSbWYoEs5juivg.ttf"
|
11325 |
-
}
|
11326 |
-
},
|
11327 |
-
{
|
11328 |
-
"kind": "webfonts#webfont",
|
11329 |
-
"family": "Rye",
|
11330 |
-
"category": "display",
|
11331 |
-
"variants": [
|
11332 |
-
"regular"
|
11333 |
-
],
|
11334 |
-
"subsets": [
|
11335 |
-
"latin-ext",
|
11336 |
-
"latin"
|
11337 |
-
],
|
11338 |
-
"version": "v4",
|
11339 |
-
"lastModified": "2016-02-23",
|
11340 |
-
"files": {
|
11341 |
-
"regular": "http://fonts.gstatic.com/s/rye/v4/VUrJlpPpSZxspl3w_yNOrQ.ttf"
|
11342 |
-
}
|
11343 |
-
},
|
11344 |
-
{
|
11345 |
-
"kind": "webfonts#webfont",
|
11346 |
-
"family": "Sacramento",
|
11347 |
-
"category": "handwriting",
|
11348 |
-
"variants": [
|
11349 |
-
"regular"
|
11350 |
-
],
|
11351 |
-
"subsets": [
|
11352 |
-
"latin-ext",
|
11353 |
-
"latin"
|
11354 |
-
],
|
11355 |
-
"version": "v4",
|
11356 |
-
"lastModified": "2016-02-23",
|
11357 |
-
"files": {
|
11358 |
-
"regular": "http://fonts.gstatic.com/s/sacramento/v4/_kv-qycSHMNdhjiv0Kj7BvesZW2xOQ-xsNqO47m55DA.ttf"
|
11359 |
-
}
|
11360 |
-
},
|
11361 |
-
{
|
11362 |
-
"kind": "webfonts#webfont",
|
11363 |
-
"family": "Sahitya",
|
11364 |
-
"category": "serif",
|
11365 |
-
"variants": [
|
11366 |
-
"regular",
|
11367 |
-
"700"
|
11368 |
-
],
|
11369 |
-
"subsets": [
|
11370 |
-
"devanagari",
|
11371 |
-
"latin"
|
11372 |
-
],
|
11373 |
-
"version": "v1",
|
11374 |
-
"lastModified": "2015-06-17",
|
11375 |
-
"files": {
|
11376 |
-
"regular": "http://fonts.gstatic.com/s/sahitya/v1/wQWULcDbZqljdTfjOUtDvw.ttf",
|
11377 |
-
"700": "http://fonts.gstatic.com/s/sahitya/v1/Zm5hNvMwUyN3tC4GMkH1l_esZW2xOQ-xsNqO47m55DA.ttf"
|
11378 |
-
}
|
11379 |
-
},
|
11380 |
-
{
|
11381 |
-
"kind": "webfonts#webfont",
|
11382 |
-
"family": "Sail",
|
11383 |
-
"category": "display",
|
11384 |
-
"variants": [
|
11385 |
-
"regular"
|
11386 |
-
],
|
11387 |
-
"subsets": [
|
11388 |
-
"latin-ext",
|
11389 |
-
"latin"
|
11390 |
-
],
|
11391 |
-
"version": "v7",
|
11392 |
-
"lastModified": "2016-02-24",
|
11393 |
-
"files": {
|
11394 |
-
"regular": "http://fonts.gstatic.com/s/sail/v7/iuEoG6kt-bePGvtdpL0GUQ.ttf"
|
11395 |
-
}
|
11396 |
-
},
|
11397 |
-
{
|
11398 |
-
"kind": "webfonts#webfont",
|
11399 |
-
"family": "Salsa",
|
11400 |
-
"category": "display",
|
11401 |
-
"variants": [
|
11402 |
-
"regular"
|
11403 |
-
],
|
11404 |
-
"subsets": [
|
11405 |
-
"latin"
|
11406 |
-
],
|
11407 |
-
"version": "v6",
|
11408 |
-
"lastModified": "2016-02-23",
|
11409 |
-
"files": {
|
11410 |
-
"regular": "http://fonts.gstatic.com/s/salsa/v6/BnpUCBmYdvggScEPs5JbpA.ttf"
|
11411 |
-
}
|
11412 |
-
},
|
11413 |
-
{
|
11414 |
-
"kind": "webfonts#webfont",
|
11415 |
-
"family": "Sanchez",
|
11416 |
-
"category": "serif",
|
11417 |
-
"variants": [
|
11418 |
-
"regular",
|
11419 |
-
"italic"
|
11420 |
-
],
|
11421 |
-
"subsets": [
|
11422 |
-
"latin-ext",
|
11423 |
-
"latin"
|
11424 |
-
],
|
11425 |
-
"version": "v4",
|
11426 |
-
"lastModified": "2016-02-23",
|
11427 |
-
"files": {
|
11428 |
-
"regular": "http://fonts.gstatic.com/s/sanchez/v4/BEL8ao-E2LJ5eHPLB2UAiw.ttf",
|
11429 |
-
"italic": "http://fonts.gstatic.com/s/sanchez/v4/iSrhkWLexUZzDeNxNEHtzA.ttf"
|
11430 |
-
}
|
11431 |
-
},
|
11432 |
-
{
|
11433 |
-
"kind": "webfonts#webfont",
|
11434 |
-
"family": "Sancreek",
|
11435 |
-
"category": "display",
|
11436 |
-
"variants": [
|
11437 |
-
"regular"
|
11438 |
-
],
|
11439 |
-
"subsets": [
|
11440 |
-
"latin-ext",
|
11441 |
-
"latin"
|
11442 |
-
],
|
11443 |
-
"version": "v7",
|
11444 |
-
"lastModified": "2016-02-23",
|
11445 |
-
"files": {
|
11446 |
-
"regular": "http://fonts.gstatic.com/s/sancreek/v7/8ZacBMraWMvHly4IJI3esw.ttf"
|
11447 |
-
}
|
11448 |
-
},
|
11449 |
-
{
|
11450 |
-
"kind": "webfonts#webfont",
|
11451 |
-
"family": "Sansita One",
|
11452 |
-
"category": "display",
|
11453 |
-
"variants": [
|
11454 |
-
"regular"
|
11455 |
-
],
|
11456 |
-
"subsets": [
|
11457 |
-
"latin"
|
11458 |
-
],
|
11459 |
-
"version": "v6",
|
11460 |
-
"lastModified": "2016-02-23",
|
11461 |
-
"files": {
|
11462 |
-
"regular": "http://fonts.gstatic.com/s/sansitaone/v6/xWqf68oB50JXqGIRR0h2hqCWcynf_cDxXwCLxiixG1c.ttf"
|
11463 |
-
}
|
11464 |
-
},
|
11465 |
-
{
|
11466 |
-
"kind": "webfonts#webfont",
|
11467 |
-
"family": "Sarala",
|
11468 |
-
"category": "sans-serif",
|
11469 |
-
"variants": [
|
11470 |
-
"regular",
|
11471 |
-
"700"
|
11472 |
-
],
|
11473 |
-
"subsets": [
|
11474 |
-
"devanagari",
|
11475 |
-
"latin-ext",
|
11476 |
-
"latin"
|
11477 |
-
],
|
11478 |
-
"version": "v1",
|
11479 |
-
"lastModified": "2015-06-17",
|
11480 |
-
"files": {
|
11481 |
-
"regular": "http://fonts.gstatic.com/s/sarala/v1/ohip9lixCHoBab7hTtgLnw.ttf",
|
11482 |
-
"700": "http://fonts.gstatic.com/s/sarala/v1/hpc9cz8KYsazwq2In_oJYw.ttf"
|
11483 |
-
}
|
11484 |
-
},
|
11485 |
-
{
|
11486 |
-
"kind": "webfonts#webfont",
|
11487 |
-
"family": "Sarina",
|
11488 |
-
"category": "display",
|
11489 |
-
"variants": [
|
11490 |
-
"regular"
|
11491 |
-
],
|
11492 |
-
"subsets": [
|
11493 |
-
"latin-ext",
|
11494 |
-
"latin"
|
11495 |
-
],
|
11496 |
-
"version": "v5",
|
11497 |
-
"lastModified": "2016-02-23",
|
11498 |
-
"files": {
|
11499 |
-
"regular": "http://fonts.gstatic.com/s/sarina/v5/XYtRfaSknHIU3NHdfTdXoQ.ttf"
|
11500 |
-
}
|
11501 |
-
},
|
11502 |
-
{
|
11503 |
-
"kind": "webfonts#webfont",
|
11504 |
-
"family": "Sarpanch",
|
11505 |
-
"category": "sans-serif",
|
11506 |
-
"variants": [
|
11507 |
-
"regular",
|
11508 |
-
"500",
|
11509 |
-
"600",
|
11510 |
-
"700",
|
11511 |
-
"800",
|
11512 |
-
"900"
|
11513 |
-
],
|
11514 |
-
"subsets": [
|
11515 |
-
"devanagari",
|
11516 |
-
"latin-ext",
|
11517 |
-
"latin"
|
11518 |
-
],
|
11519 |
-
"version": "v1",
|
11520 |
-
"lastModified": "2016-02-23",
|
11521 |
-
"files": {
|
11522 |
-
"regular": "http://fonts.gstatic.com/s/sarpanch/v1/YMBZdT27b6O5a1DADbAGSg.ttf",
|
11523 |
-
"500": "http://fonts.gstatic.com/s/sarpanch/v1/Ov7BxSrFSZYrfuJxL1LzQaCWcynf_cDxXwCLxiixG1c.ttf",
|
11524 |
-
"600": "http://fonts.gstatic.com/s/sarpanch/v1/WTnP2wnc0qSbUaaDG-2OQ6CWcynf_cDxXwCLxiixG1c.ttf",
|
11525 |
-
"700": "http://fonts.gstatic.com/s/sarpanch/v1/57kYsSpovYmFaEt2hsZhv6CWcynf_cDxXwCLxiixG1c.ttf",
|
11526 |
-
"800": "http://fonts.gstatic.com/s/sarpanch/v1/OKyqPLjdnuVghR-1TV6RzaCWcynf_cDxXwCLxiixG1c.ttf",
|
11527 |
-
"900": "http://fonts.gstatic.com/s/sarpanch/v1/JhYc2cr6kqWTo_P0vfvJR6CWcynf_cDxXwCLxiixG1c.ttf"
|
11528 |
-
}
|
11529 |
-
},
|
11530 |
-
{
|
11531 |
-
"kind": "webfonts#webfont",
|
11532 |
-
"family": "Satisfy",
|
11533 |
-
"category": "handwriting",
|
11534 |
-
"variants": [
|
11535 |
-
"regular"
|
11536 |
-
],
|
11537 |
-
"subsets": [
|
11538 |
-
"latin"
|
11539 |
-
],
|
11540 |
-
"version": "v6",
|
11541 |
-
"lastModified": "2016-02-23",
|
11542 |
-
"files": {
|
11543 |
-
"regular": "http://fonts.gstatic.com/s/satisfy/v6/PRlyepkd-JCGHiN8e9WV2w.ttf"
|
11544 |
-
}
|
11545 |
-
},
|
11546 |
-
{
|
11547 |
-
"kind": "webfonts#webfont",
|
11548 |
-
"family": "Scada",
|
11549 |
-
"category": "sans-serif",
|
11550 |
-
"variants": [
|
11551 |
-
"regular",
|
11552 |
-
"italic",
|
11553 |
-
"700",
|
11554 |
-
"700italic"
|
11555 |
-
],
|
11556 |
-
"subsets": [
|
11557 |
-
"latin-ext",
|
11558 |
-
"cyrillic",
|
11559 |
-
"latin"
|
11560 |
-
],
|
11561 |
-
"version": "v4",
|
11562 |
-
"lastModified": "2016-02-23",
|
11563 |
-
"files": {
|
11564 |
-
"regular": "http://fonts.gstatic.com/s/scada/v4/iZNC3ZEYwe3je6H-28d5Ug.ttf",
|
11565 |
-
"italic": "http://fonts.gstatic.com/s/scada/v4/PCGyLT1qNawkOUQ3uHFhBw.ttf",
|
11566 |
-
"700": "http://fonts.gstatic.com/s/scada/v4/t6XNWdMdVWUz93EuRVmifQ.ttf",
|
11567 |
-
"700italic": "http://fonts.gstatic.com/s/scada/v4/kLrBIf7V4mDMwcd_Yw7-D_esZW2xOQ-xsNqO47m55DA.ttf"
|
11568 |
-
}
|
11569 |
-
},
|
11570 |
-
{
|
11571 |
-
"kind": "webfonts#webfont",
|
11572 |
-
"family": "Scheherazade",
|
11573 |
-
"category": "serif",
|
11574 |
-
"variants": [
|
11575 |
-
"regular",
|
11576 |
-
"700"
|
11577 |
-
],
|
11578 |
-
"subsets": [
|
11579 |
-
"arabic",
|
11580 |
-
"latin"
|
11581 |
-
],
|
11582 |
-
"version": "v11",
|
11583 |
-
"lastModified": "2015-08-26",
|
11584 |
-
"files": {
|
11585 |
-
"regular": "http://fonts.gstatic.com/s/scheherazade/v11/AuKlqGWzUC-8XqMOmsqXiy3USBnSvpkopQaUR-2r7iU.ttf",
|
11586 |
-
"700": "http://fonts.gstatic.com/s/scheherazade/v11/C1wtT46acJkQxc6mPHwvHED2ttfZwueP-QU272T9-k4.ttf"
|
11587 |
-
}
|
11588 |
-
},
|
11589 |
-
{
|
11590 |
-
"kind": "webfonts#webfont",
|
11591 |
-
"family": "Schoolbell",
|
11592 |
-
"category": "handwriting",
|
11593 |
-
"variants": [
|
11594 |
-
"regular"
|
11595 |
-
],
|
11596 |
-
"subsets": [
|
11597 |
-
"latin"
|
11598 |
-
],
|
11599 |
-
"version": "v6",
|
11600 |
-
"lastModified": "2016-02-23",
|
11601 |
-
"files": {
|
11602 |
-
"regular": "http://fonts.gstatic.com/s/schoolbell/v6/95-3djEuubb3cJx-6E7j4vesZW2xOQ-xsNqO47m55DA.ttf"
|
11603 |
-
}
|
11604 |
-
},
|
11605 |
-
{
|
11606 |
-
"kind": "webfonts#webfont",
|
11607 |
-
"family": "Seaweed Script",
|
11608 |
-
"category": "display",
|
11609 |
-
"variants": [
|
11610 |
-
"regular"
|
11611 |
-
],
|
11612 |
-
"subsets": [
|
11613 |
-
"latin-ext",
|
11614 |
-
"latin"
|
11615 |
-
],
|
11616 |
-
"version": "v4",
|
11617 |
-
"lastModified": "2016-02-23",
|
11618 |
-
"files": {
|
11619 |
-
"regular": "http://fonts.gstatic.com/s/seaweedscript/v4/eorWAPpOvvWrPw5IHwE60BnpV0hQCek3EmWnCPrvGRM.ttf"
|
11620 |
-
}
|
11621 |
-
},
|
11622 |
-
{
|
11623 |
-
"kind": "webfonts#webfont",
|
11624 |
-
"family": "Sevillana",
|
11625 |
-
"category": "display",
|
11626 |
-
"variants": [
|
11627 |
-
"regular"
|
11628 |
-
],
|
11629 |
-
"subsets": [
|
11630 |
-
"latin-ext",
|
11631 |
-
"latin"
|
11632 |
-
],
|
11633 |
-
"version": "v4",
|
11634 |
-
"lastModified": "2016-02-23",
|
11635 |
-
"files": {
|
11636 |
-
"regular": "http://fonts.gstatic.com/s/sevillana/v4/6m1Nh35oP7YEt00U80Smiw.ttf"
|
11637 |
-
}
|
11638 |
-
},
|
11639 |
-
{
|
11640 |
-
"kind": "webfonts#webfont",
|
11641 |
-
"family": "Seymour One",
|
11642 |
-
"category": "sans-serif",
|
11643 |
-
"variants": [
|
11644 |
-
"regular"
|
11645 |
-
],
|
11646 |
-
"subsets": [
|
11647 |
-
"latin-ext",
|
11648 |
-
"cyrillic",
|
11649 |
-
"latin"
|
11650 |
-
],
|
11651 |
-
"version": "v4",
|
11652 |
-
"lastModified": "2016-02-23",
|
11653 |
-
"files": {
|
11654 |
-
"regular": "http://fonts.gstatic.com/s/seymourone/v4/HrdG2AEG_870Xb7xBVv6C6CWcynf_cDxXwCLxiixG1c.ttf"
|
11655 |
-
}
|
11656 |
-
},
|
11657 |
-
{
|
11658 |
-
"kind": "webfonts#webfont",
|
11659 |
-
"family": "Shadows Into Light",
|
11660 |
-
"category": "handwriting",
|
11661 |
-
"variants": [
|
11662 |
-
"regular"
|
11663 |
-
],
|
11664 |
-
"subsets": [
|
11665 |
-
"latin"
|
11666 |
-
],
|
11667 |
-
"version": "v6",
|
11668 |
-
"lastModified": "2016-02-23",
|
11669 |
-
"files": {
|
11670 |
-
"regular": "http://fonts.gstatic.com/s/shadowsintolight/v6/clhLqOv7MXn459PTh0gXYAW_5bEze-iLRNvGrRpJsfM.ttf"
|
11671 |
-
}
|
11672 |
-
},
|
11673 |
-
{
|
11674 |
-
"kind": "webfonts#webfont",
|
11675 |
-
"family": "Shadows Into Light Two",
|
11676 |
-
"category": "handwriting",
|
11677 |
-
"variants": [
|
11678 |
-
"regular"
|
11679 |
-
],
|
11680 |
-
"subsets": [
|
11681 |
-
"latin-ext",
|
11682 |
-
"latin"
|
11683 |
-
],
|
11684 |
-
"version": "v4",
|
11685 |
-
"lastModified": "2016-02-23",
|
11686 |
-
"files": {
|
11687 |
-
"regular": "http://fonts.gstatic.com/s/shadowsintolighttwo/v4/gDxHeefcXIo-lOuZFCn2xVQrZk-Pga5KeEE_oZjkQjQ.ttf"
|
11688 |
-
}
|
11689 |
-
},
|
11690 |
-
{
|
11691 |
-
"kind": "webfonts#webfont",
|
11692 |
-
"family": "Shanti",
|
11693 |
-
"category": "sans-serif",
|
11694 |
-
"variants": [
|
11695 |
-
"regular"
|
11696 |
-
],
|
11697 |
-
"subsets": [
|
11698 |
-
"latin"
|
11699 |
-
],
|
11700 |
-
"version": "v8",
|
11701 |
-
"lastModified": "2016-02-23",
|
11702 |
-
"files": {
|
11703 |
-
"regular": "http://fonts.gstatic.com/s/shanti/v8/lc4nG_JG6Q-2FQSOMMhb_w.ttf"
|
11704 |
-
}
|
11705 |
-
},
|
11706 |
-
{
|
11707 |
-
"kind": "webfonts#webfont",
|
11708 |
-
"family": "Share",
|
11709 |
-
"category": "display",
|
11710 |
-
"variants": [
|
11711 |
-
"regular",
|
11712 |
-
"italic",
|
11713 |
-
"700",
|
11714 |
-
"700italic"
|
11715 |
-
],
|
11716 |
-
"subsets": [
|
11717 |
-
"latin-ext",
|
11718 |
-
"latin"
|
11719 |
-
],
|
11720 |
-
"version": "v5",
|
11721 |
-
"lastModified": "2016-02-23",
|
11722 |
-
"files": {
|
11723 |
-
"regular": "http://fonts.gstatic.com/s/share/v5/1ytD7zSb_-g9I2GG67vmVw.ttf",
|
11724 |
-
"italic": "http://fonts.gstatic.com/s/share/v5/a9YGdQWFRlNJ0zClJVaY3Q.ttf",
|
11725 |
-
"700": "http://fonts.gstatic.com/s/share/v5/XrU8e7a1YKurguyY2azk1Q.ttf",
|
11726 |
-
"700italic": "http://fonts.gstatic.com/s/share/v5/A992-bLVYwAflKu6iaznufesZW2xOQ-xsNqO47m55DA.ttf"
|
11727 |
-
}
|
11728 |
-
},
|
11729 |
-
{
|
11730 |
-
"kind": "webfonts#webfont",
|
11731 |
-
"family": "Share Tech",
|
11732 |
-
"category": "sans-serif",
|
11733 |
-
"variants": [
|
11734 |
-
"regular"
|
11735 |
-
],
|
11736 |
-
"subsets": [
|
11737 |
-
"latin"
|
11738 |
-
],
|
11739 |
-
"version": "v4",
|
11740 |
-
"lastModified": "2016-02-23",
|
11741 |
-
"files": {
|
11742 |
-
"regular": "http://fonts.gstatic.com/s/sharetech/v4/Dq3DuZ5_0SW3oEfAWFpen_esZW2xOQ-xsNqO47m55DA.ttf"
|
11743 |
-
}
|
11744 |
-
},
|
11745 |
-
{
|
11746 |
-
"kind": "webfonts#webfont",
|
11747 |
-
"family": "Share Tech Mono",
|
11748 |
-
"category": "monospace",
|
11749 |
-
"variants": [
|
11750 |
-
"regular"
|
11751 |
-
],
|
11752 |
-
"subsets": [
|
11753 |
-
"latin"
|
11754 |
-
],
|
11755 |
-
"version": "v5",
|
11756 |
-
"lastModified": "2016-02-23",
|
11757 |
-
"files": {
|
11758 |
-
"regular": "http://fonts.gstatic.com/s/sharetechmono/v5/RQxK-3RA0Lnf3gnnnNrAscwD6PD0c3_abh9zHKQtbGU.ttf"
|
11759 |
-
}
|
11760 |
-
},
|
11761 |
-
{
|
11762 |
-
"kind": "webfonts#webfont",
|
11763 |
-
"family": "Shojumaru",
|
11764 |
-
"category": "display",
|
11765 |
-
"variants": [
|
11766 |
-
"regular"
|
11767 |
-
],
|
11768 |
-
"subsets": [
|
11769 |
-
"latin-ext",
|
11770 |
-
"latin"
|
11771 |
-
],
|
11772 |
-
"version": "v4",
|
11773 |
-
"lastModified": "2016-02-23",
|
11774 |
-
"files": {
|
11775 |
-
"regular": "http://fonts.gstatic.com/s/shojumaru/v4/WP8cxonzQQVAoI3RJQ2wug.ttf"
|
11776 |
-
}
|
11777 |
-
},
|
11778 |
-
{
|
11779 |
-
"kind": "webfonts#webfont",
|
11780 |
-
"family": "Short Stack",
|
11781 |
-
"category": "handwriting",
|
11782 |
-
"variants": [
|
11783 |
-
"regular"
|
11784 |
-
],
|
11785 |
-
"subsets": [
|
11786 |
-
"latin"
|
11787 |
-
],
|
11788 |
-
"version": "v6",
|
11789 |
-
"lastModified": "2016-02-23",
|
11790 |
-
"files": {
|
11791 |
-
"regular": "http://fonts.gstatic.com/s/shortstack/v6/v4dXPI0Rm8XN9gk4SDdqlqCWcynf_cDxXwCLxiixG1c.ttf"
|
11792 |
-
}
|
11793 |
-
},
|
11794 |
-
{
|
11795 |
-
"kind": "webfonts#webfont",
|
11796 |
-
"family": "Siemreap",
|
11797 |
-
"category": "display",
|
11798 |
-
"variants": [
|
11799 |
-
"regular"
|
11800 |
-
],
|
11801 |
-
"subsets": [
|
11802 |
-
"khmer"
|
11803 |
-
],
|
11804 |
-
"version": "v9",
|
11805 |
-
"lastModified": "2015-04-06",
|
11806 |
-
"files": {
|
11807 |
-
"regular": "http://fonts.gstatic.com/s/siemreap/v9/JSK-mOIsXwxo-zE9XDDl_g.ttf"
|
11808 |
-
}
|
11809 |
-
},
|
11810 |
-
{
|
11811 |
-
"kind": "webfonts#webfont",
|
11812 |
-
"family": "Sigmar One",
|
11813 |
-
"category": "display",
|
11814 |
-
"variants": [
|
11815 |
-
"regular"
|
11816 |
-
],
|
11817 |
-
"subsets": [
|
11818 |
-
"latin"
|
11819 |
-
],
|
11820 |
-
"version": "v6",
|
11821 |
-
"lastModified": "2016-02-23",
|
11822 |
-
"files": {
|
11823 |
-
"regular": "http://fonts.gstatic.com/s/sigmarone/v6/oh_5NxD5JBZksdo2EntKefesZW2xOQ-xsNqO47m55DA.ttf"
|
11824 |
-
}
|
11825 |
-
},
|
11826 |
-
{
|
11827 |
-
"kind": "webfonts#webfont",
|
11828 |
-
"family": "Signika",
|
11829 |
-
"category": "sans-serif",
|
11830 |
-
"variants": [
|
11831 |
-
"300",
|
11832 |
-
"regular",
|
11833 |
-
"600",
|
11834 |
-
"700"
|
11835 |
-
],
|
11836 |
-
"subsets": [
|
11837 |
-
"latin-ext",
|
11838 |
-
"latin"
|
11839 |
-
],
|
11840 |
-
"version": "v6",
|
11841 |
-
"lastModified": "2016-02-23",
|
11842 |
-
"files": {
|
11843 |
-
"300": "http://fonts.gstatic.com/s/signika/v6/0wDPonOzsYeEo-1KO78w4fesZW2xOQ-xsNqO47m55DA.ttf",
|
11844 |
-
"regular": "http://fonts.gstatic.com/s/signika/v6/WvDswbww0oAtvBg2l1L-9w.ttf",
|
11845 |
-
"600": "http://fonts.gstatic.com/s/signika/v6/lQMOF6NUN2ooR7WvB7tADvesZW2xOQ-xsNqO47m55DA.ttf",
|
11846 |
-
"700": "http://fonts.gstatic.com/s/signika/v6/lEcnfPBICWJPv5BbVNnFJPesZW2xOQ-xsNqO47m55DA.ttf"
|
11847 |
-
}
|
11848 |
-
},
|
11849 |
-
{
|
11850 |
-
"kind": "webfonts#webfont",
|
11851 |
-
"family": "Signika Negative",
|
11852 |
-
"category": "sans-serif",
|
11853 |
-
"variants": [
|
11854 |
-
"300",
|
11855 |
-
"regular",
|
11856 |
-
"600",
|
11857 |
-
"700"
|
11858 |
-
],
|
11859 |
-
"subsets": [
|
11860 |
-
"latin-ext",
|
11861 |
-
"latin"
|
11862 |
-
],
|
11863 |
-
"version": "v5",
|
11864 |
-
"lastModified": "2016-02-23",
|
11865 |
-
"files": {
|
11866 |
-
"300": "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FjYFXpUPtCmIEFDvjUnLLaI.ttf",
|
11867 |
-
"regular": "http://fonts.gstatic.com/s/signikanegative/v5/Z-Q1hzbY8uAo3TpTyPFMXVM1lnCWMnren5_v6047e5A.ttf",
|
11868 |
-
"600": "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FrKLaDJM01OezSVA2R_O3qI.ttf",
|
11869 |
-
"700": "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FpYzPxtVvobH1w3hEppR8WI.ttf"
|
11870 |
-
}
|
11871 |
-
},
|
11872 |
-
{
|
11873 |
-
"kind": "webfonts#webfont",
|
11874 |
-
"family": "Simonetta",
|
11875 |
-
"category": "display",
|
11876 |
-
"variants": [
|
11877 |
-
"regular",
|
11878 |
-
"italic",
|
11879 |
-
"900",
|
11880 |
-
"900italic"
|
11881 |
-
],
|
11882 |
-
"subsets": [
|
11883 |
-
"latin-ext",
|
11884 |
-
"latin"
|
11885 |
-
],
|
11886 |
-
"version": "v5",
|
11887 |
-
"lastModified": "2016-02-23",
|
11888 |
-
"files": {
|
11889 |
-
"regular": "http://fonts.gstatic.com/s/simonetta/v5/fN8puNuahBo4EYMQgp12Yg.ttf",
|
11890 |
-
"italic": "http://fonts.gstatic.com/s/simonetta/v5/ynxQ3FqfF_Nziwy3T9ZwL6CWcynf_cDxXwCLxiixG1c.ttf",
|
11891 |
-
"900": "http://fonts.gstatic.com/s/simonetta/v5/22EwvvJ2r1VwVCxit5LcVi3USBnSvpkopQaUR-2r7iU.ttf",
|
11892 |
-
"900italic": "http://fonts.gstatic.com/s/simonetta/v5/WUXOpCgBZaRPrWtMCpeKoienaqEuufTBk9XMKnKmgDA.ttf"
|
11893 |
-
}
|
11894 |
-
},
|
11895 |
-
{
|
11896 |
-
"kind": "webfonts#webfont",
|
11897 |
-
"family": "Sintony",
|
11898 |
-
"category": "sans-serif",
|
11899 |
-
"variants": [
|
11900 |
-
"regular",
|
11901 |
-
"700"
|
11902 |
-
],
|
11903 |
-
"subsets": [
|
11904 |
-
"latin-ext",
|
11905 |
-
"latin"
|
11906 |
-
],
|
11907 |
-
"version": "v4",
|
11908 |
-
"lastModified": "2016-02-23",
|
11909 |
-
"files": {
|
11910 |
-
"regular": "http://fonts.gstatic.com/s/sintony/v4/IDhCijoIMev2L6Lg5QsduQ.ttf",
|
11911 |
-
"700": "http://fonts.gstatic.com/s/sintony/v4/zVXQB1wqJn6PE4dWXoYpvPesZW2xOQ-xsNqO47m55DA.ttf"
|
11912 |
-
}
|
11913 |
-
},
|
11914 |
-
{
|
11915 |
-
"kind": "webfonts#webfont",
|
11916 |
-
"family": "Sirin Stencil",
|
11917 |
-
"category": "display",
|
11918 |
-
"variants": [
|
11919 |
-
"regular"
|
11920 |
-
],
|
11921 |
-
"subsets": [
|
11922 |
-
"latin"
|
11923 |
-
],
|
11924 |
-
"version": "v5",
|
11925 |
-
"lastModified": "2016-02-23",
|
11926 |
-
"files": {
|
11927 |
-
"regular": "http://fonts.gstatic.com/s/sirinstencil/v5/pRpLdo0SawzO7MoBpvowsImg74kgS1F7KeR8rWhYwkU.ttf"
|
11928 |
-
}
|
11929 |
-
},
|
11930 |
-
{
|
11931 |
-
"kind": "webfonts#webfont",
|
11932 |
-
"family": "Six Caps",
|
11933 |
-
"category": "sans-serif",
|
11934 |
-
"variants": [
|
11935 |
-
"regular"
|
11936 |
-
],
|
11937 |
-
"subsets": [
|
11938 |
-
"latin"
|
11939 |
-
],
|
11940 |
-
"version": "v7",
|
11941 |
-
"lastModified": "2016-02-23",
|
11942 |
-
"files": {
|
11943 |
-
"regular": "http://fonts.gstatic.com/s/sixcaps/v7/_XeDnO0HOV8Er9u97If1tQ.ttf"
|
11944 |
-
}
|
11945 |
-
},
|
11946 |
-
{
|
11947 |
-
"kind": "webfonts#webfont",
|
11948 |
-
"family": "Skranji",
|
11949 |
-
"category": "display",
|
11950 |
-
"variants": [
|
11951 |
-
"regular",
|
11952 |
-
"700"
|
11953 |
-
],
|
11954 |
-
"subsets": [
|
11955 |
-
"latin-ext",
|
11956 |
-
"latin"
|
11957 |
-
],
|
11958 |
-
"version": "v4",
|
11959 |
-
"lastModified": "2016-02-23",
|
11960 |
-
"files": {
|
11961 |
-
"regular": "http://fonts.gstatic.com/s/skranji/v4/jnOLPS0iZmDL7dfWnW3nIw.ttf",
|
11962 |
-
"700": "http://fonts.gstatic.com/s/skranji/v4/Lcrhg-fviVkxiEgoadsI1vesZW2xOQ-xsNqO47m55DA.ttf"
|
11963 |
-
}
|
11964 |
-
},
|
11965 |
-
{
|
11966 |
-
"kind": "webfonts#webfont",
|
11967 |
-
"family": "Slabo 13px",
|
11968 |
-
"category": "serif",
|
11969 |
-
"variants": [
|
11970 |
-
"regular"
|
11971 |
-
],
|
11972 |
-
"subsets": [
|
11973 |
-
"latin-ext",
|
11974 |
-
"latin"
|
11975 |
-
],
|
11976 |
-
"version": "v3",
|
11977 |
-
"lastModified": "2016-02-23",
|
11978 |
-
"files": {
|
11979 |
-
"regular": "http://fonts.gstatic.com/s/slabo13px/v3/jPGWFTjRXfCSzy0qd1nqdvesZW2xOQ-xsNqO47m55DA.ttf"
|
11980 |
-
}
|
11981 |
-
},
|
11982 |
-
{
|
11983 |
-
"kind": "webfonts#webfont",
|
11984 |
-
"family": "Slabo 27px",
|
11985 |
-
"category": "serif",
|
11986 |
-
"variants": [
|
11987 |
-
"regular"
|
11988 |
-
],
|
11989 |
-
"subsets": [
|
11990 |
-
"latin-ext",
|
11991 |
-
"latin"
|
11992 |
-
],
|
11993 |
-
"version": "v3",
|
11994 |
-
"lastModified": "2016-02-23",
|
11995 |
-
"files": {
|
11996 |
-
"regular": "http://fonts.gstatic.com/s/slabo27px/v3/gC0o8B9eU21EafNkXlRAfPesZW2xOQ-xsNqO47m55DA.ttf"
|
11997 |
-
}
|
11998 |
-
},
|
11999 |
-
{
|
12000 |
-
"kind": "webfonts#webfont",
|
12001 |
-
"family": "Slackey",
|
12002 |
-
"category": "display",
|
12003 |
-
"variants": [
|
12004 |
-
"regular"
|
12005 |
-
],
|
12006 |
-
"subsets": [
|
12007 |
-
"latin"
|
12008 |
-
],
|
12009 |
-
"version": "v6",
|
12010 |
-
"lastModified": "2016-02-23",
|
12011 |
-
"files": {
|
12012 |
-
"regular": "http://fonts.gstatic.com/s/slackey/v6/evRIMNhGVCRJvCPv4kteeA.ttf"
|
12013 |
-
}
|
12014 |
-
},
|
12015 |
-
{
|
12016 |
-
"kind": "webfonts#webfont",
|
12017 |
-
"family": "Smokum",
|
12018 |
-
"category": "display",
|
12019 |
-
"variants": [
|
12020 |
-
"regular"
|
12021 |
-
],
|
12022 |
-
"subsets": [
|
12023 |
-
"latin"
|
12024 |
-
],
|
12025 |
-
"version": "v6",
|
12026 |
-
"lastModified": "2016-02-23",
|
12027 |
-
"files": {
|
12028 |
-
"regular": "http://fonts.gstatic.com/s/smokum/v6/8YP4BuAcy97X8WfdKfxVRw.ttf"
|
12029 |
-
}
|
12030 |
-
},
|
12031 |
-
{
|
12032 |
-
"kind": "webfonts#webfont",
|
12033 |
-
"family": "Smythe",
|
12034 |
-
"category": "display",
|
12035 |
-
"variants": [
|
12036 |
-
"regular"
|
12037 |
-
],
|
12038 |
-
"subsets": [
|
12039 |
-
"latin"
|
12040 |
-
],
|
12041 |
-
"version": "v7",
|
12042 |
-
"lastModified": "2016-02-23",
|
12043 |
-
"files": {
|
12044 |
-
"regular": "http://fonts.gstatic.com/s/smythe/v7/yACD1gy_MpbB9Ft42fUvYw.ttf"
|
12045 |
-
}
|
12046 |
-
},
|
12047 |
-
{
|
12048 |
-
"kind": "webfonts#webfont",
|
12049 |
-
"family": "Sniglet",
|
12050 |
-
"category": "display",
|
12051 |
-
"variants": [
|
12052 |
-
"regular",
|
12053 |
-
"800"
|
12054 |
-
],
|
12055 |
-
"subsets": [
|
12056 |
-
"latin-ext",
|
12057 |
-
"latin"
|
12058 |
-
],
|
12059 |
-
"version": "v7",
|
12060 |
-
"lastModified": "2016-02-23",
|
12061 |
-
"files": {
|
12062 |
-
"regular": "http://fonts.gstatic.com/s/sniglet/v7/XWhyQLHH4SpCVsHRPRgu9w.ttf",
|
12063 |
-
"800": "http://fonts.gstatic.com/s/sniglet/v7/NLF91nBmcEfkBgcEWbHFa_esZW2xOQ-xsNqO47m55DA.ttf"
|
12064 |
-
}
|
12065 |
-
},
|
12066 |
-
{
|
12067 |
-
"kind": "webfonts#webfont",
|
12068 |
-
"family": "Snippet",
|
12069 |
-
"category": "sans-serif",
|
12070 |
-
"variants": [
|
12071 |
-
"regular"
|
12072 |
-
],
|
12073 |
-
"subsets": [
|
12074 |
-
"latin"
|
12075 |
-
],
|
12076 |
-
"version": "v6",
|
12077 |
-
"lastModified": "2016-02-23",
|
12078 |
-
"files": {
|
12079 |
-
"regular": "http://fonts.gstatic.com/s/snippet/v6/eUcYMLq2GtHZovLlQH_9kA.ttf"
|
12080 |
-
}
|
12081 |
-
},
|
12082 |
-
{
|
12083 |
-
"kind": "webfonts#webfont",
|
12084 |
-
"family": "Snowburst One",
|
12085 |
-
"category": "display",
|
12086 |
-
"variants": [
|
12087 |
-
"regular"
|
12088 |
-
],
|
12089 |
-
"subsets": [
|
12090 |
-
"latin-ext",
|
12091 |
-
"latin"
|
12092 |
-
],
|
12093 |
-
"version": "v4",
|
12094 |
-
"lastModified": "2016-02-23",
|
12095 |
-
"files": {
|
12096 |
-
"regular": "http://fonts.gstatic.com/s/snowburstone/v4/zSQzKOPukXRux2oTqfYJjIjjx0o0jr6fNXxPgYh_a8Q.ttf"
|
12097 |
-
}
|
12098 |
-
},
|
12099 |
-
{
|
12100 |
-
"kind": "webfonts#webfont",
|
12101 |
-
"family": "Sofadi One",
|
12102 |
-
"category": "display",
|
12103 |
-
"variants": [
|
12104 |
-
"regular"
|
12105 |
-
],
|
12106 |
-
"subsets": [
|
12107 |
-
"latin"
|
12108 |
-
],
|
12109 |
-
"version": "v4",
|
12110 |
-
"lastModified": "2016-02-23",
|
12111 |
-
"files": {
|
12112 |
-
"regular": "http://fonts.gstatic.com/s/sofadione/v4/nirf4G12IcJ6KI8Eoj119fesZW2xOQ-xsNqO47m55DA.ttf"
|
12113 |
-
}
|
12114 |
-
},
|
12115 |
-
{
|
12116 |
-
"kind": "webfonts#webfont",
|
12117 |
-
"family": "Sofia",
|
12118 |
-
"category": "handwriting",
|
12119 |
-
"variants": [
|
12120 |
-
"regular"
|
12121 |
-
],
|
12122 |
-
"subsets": [
|
12123 |
-
"latin"
|
12124 |
-
],
|
12125 |
-
"version": "v5",
|
12126 |
-
"lastModified": "2016-02-23",
|
12127 |
-
"files": {
|
12128 |
-
"regular": "http://fonts.gstatic.com/s/sofia/v5/Imnvx0Ag9r6iDBFUY5_RaQ.ttf"
|
12129 |
-
}
|
12130 |
-
},
|
12131 |
-
{
|
12132 |
-
"kind": "webfonts#webfont",
|
12133 |
-
"family": "Sonsie One",
|
12134 |
-
"category": "display",
|
12135 |
-
"variants": [
|
12136 |
-
"regular"
|
12137 |
-
],
|
12138 |
-
"subsets": [
|
12139 |
-
"latin-ext",
|
12140 |
-
"latin"
|
12141 |
-
],
|
12142 |
-
"version": "v5",
|
12143 |
-
"lastModified": "2016-02-23",
|
12144 |
-
"files": {
|
12145 |
-
"regular": "http://fonts.gstatic.com/s/sonsieone/v5/KSP7xT1OSy0q2ob6RQOTWPesZW2xOQ-xsNqO47m55DA.ttf"
|
12146 |
-
}
|
12147 |
-
},
|
12148 |
-
{
|
12149 |
-
"kind": "webfonts#webfont",
|
12150 |
-
"family": "Sorts Mill Goudy",
|
12151 |
-
"category": "serif",
|
12152 |
-
"variants": [
|
12153 |
-
"regular",
|
12154 |
-
"italic"
|
12155 |
-
],
|
12156 |
-
"subsets": [
|
12157 |
-
"latin-ext",
|
12158 |
-
"latin"
|
12159 |
-
],
|
12160 |
-
"version": "v6",
|
12161 |
-
"lastModified": "2016-02-23",
|
12162 |
-
"files": {
|
12163 |
-
"regular": "http://fonts.gstatic.com/s/sortsmillgoudy/v6/JzRrPKdwEnE8F1TDmDLMUlIL2Qjg-Xlsg_fhGbe2P5U.ttf",
|
12164 |
-
"italic": "http://fonts.gstatic.com/s/sortsmillgoudy/v6/UUu1lKiy4hRmBWk599VL1TYNkCNSzLyoucKmbTguvr0.ttf"
|
12165 |
-
}
|
12166 |
-
},
|
12167 |
-
{
|
12168 |
-
"kind": "webfonts#webfont",
|
12169 |
-
"family": "Source Code Pro",
|
12170 |
-
"category": "monospace",
|
12171 |
-
"variants": [
|
12172 |
-
"200",
|
12173 |
-
"300",
|
12174 |
-
"regular",
|
12175 |
-
"500",
|
12176 |
-
"600",
|
12177 |
-
"700",
|
12178 |
-
"900"
|
12179 |
-
],
|
12180 |
-
"subsets": [
|
12181 |
-
"latin-ext",
|
12182 |
-
"latin"
|
12183 |
-
],
|
12184 |
-
"version": "v6",
|
12185 |
-
"lastModified": "2016-02-23",
|
12186 |
-
"files": {
|
12187 |
-
"200": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqaXvKVW_haheDNrHjziJZVk.ttf",
|
12188 |
-
"300": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqVP7R5lD_au4SZC6Ks_vyWs.ttf",
|
12189 |
-
"regular": "http://fonts.gstatic.com/s/sourcecodepro/v6/mrl8jkM18OlOQN8JLgasD9Rl0pGnog23EMYRrBmUzJQ.ttf",
|
12190 |
-
"500": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqX63uKwMO11Of4rJWV582wg.ttf",
|
12191 |
-
"600": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqeiMeWyi5E_-XkTgB5psiDg.ttf",
|
12192 |
-
"700": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqfgXsetDviZcdR5OzC1KPcw.ttf",
|
12193 |
-
"900": "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqRA_awHl7mXRjE_LQVochcU.ttf"
|
12194 |
-
}
|
12195 |
-
},
|
12196 |
-
{
|
12197 |
-
"kind": "webfonts#webfont",
|
12198 |
-
"family": "Source Sans Pro",
|
12199 |
-
"category": "sans-serif",
|
12200 |
-
"variants": [
|
12201 |
-
"200",
|
12202 |
-
"200italic",
|
12203 |
-
"300",
|
12204 |
-
"300italic",
|
12205 |
-
"regular",
|
12206 |
-
"italic",
|
12207 |
-
"600",
|
12208 |
-
"600italic",
|
12209 |
-
"700",
|
12210 |
-
"700italic",
|
12211 |
-
"900",
|
12212 |
-
"900italic"
|
12213 |
-
],
|
12214 |
-
"subsets": [
|
12215 |
-
"latin-ext",
|
12216 |
-
"vietnamese",
|
12217 |
-
"latin"
|
12218 |
-
],
|
12219 |
-
"version": "v9",
|
12220 |
-
"lastModified": "2016-02-23",
|
12221 |
-
"files": {
|
12222 |
-
"200": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGKXvKVW_haheDNrHjziJZVk.ttf",
|
12223 |
-
"200italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6OptKU7UIBg2hLM7eMTU8bI.ttf",
|
12224 |
-
"300": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGFP7R5lD_au4SZC6Ks_vyWs.ttf",
|
12225 |
-
"300italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6DUpNKoQAsDux-Todp8f29w.ttf",
|
12226 |
-
"regular": "http://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNRl0pGnog23EMYRrBmUzJQ.ttf",
|
12227 |
-
"italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoMwRX4TIfMQQEXLu74GftruE.ttf",
|
12228 |
-
"600": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGOiMeWyi5E_-XkTgB5psiDg.ttf",
|
12229 |
-
"600italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6Pp6lGoTTgjlW0sC4r900Co.ttf",
|
12230 |
-
"700": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGPgXsetDviZcdR5OzC1KPcw.ttf",
|
12231 |
-
"700italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6LVT4locI09aamSzFGQlDMY.ttf",
|
12232 |
-
"900": "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGBA_awHl7mXRjE_LQVochcU.ttf",
|
12233 |
-
"900italic": "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6A0NcF6HPGWR298uWIdxWv0.ttf"
|
12234 |
-
}
|
12235 |
-
},
|
12236 |
-
{
|
12237 |
-
"kind": "webfonts#webfont",
|
12238 |
-
"family": "Source Serif Pro",
|
12239 |
-
"category": "serif",
|
12240 |
-
"variants": [
|
12241 |
-
"regular",
|
12242 |
-
"600",
|
12243 |
-
"700"
|
12244 |
-
],
|
12245 |
-
"subsets": [
|
12246 |
-
"latin-ext",
|
12247 |
-
"latin"
|
12248 |
-
],
|
12249 |
-
"version": "v4",
|
12250 |
-
"lastModified": "2016-02-23",
|
12251 |
-
"files": {
|
12252 |
-
"regular": "http://fonts.gstatic.com/s/sourceserifpro/v4/CeUM4np2c42DV49nanp55YGL0S0YDpKs5GpLtZIQ0m4.ttf",
|
12253 |
-
"600": "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarGi4cQnvCGV11m1KlXh97aQ.ttf",
|
12254 |
-
"700": "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarEkpYHRvxGNSCrR82n_RDNk.ttf"
|
12255 |
-
}
|
12256 |
-
},
|
12257 |
-
{
|
12258 |
-
"kind": "webfonts#webfont",
|
12259 |
-
"family": "Special Elite",
|
12260 |
-
"category": "display",
|
12261 |
-
"variants": [
|
12262 |
-
"regular"
|
12263 |
-
],
|
12264 |
-
"subsets": [
|
12265 |
-
"latin"
|
12266 |
-
],
|
12267 |
-
"version": "v6",
|
12268 |
-
"lastModified": "2016-02-23",
|
12269 |
-
"files": {
|
12270 |
-
"regular": "http://fonts.gstatic.com/s/specialelite/v6/9-wW4zu3WNoD5Fjka35Jm4jjx0o0jr6fNXxPgYh_a8Q.ttf"
|
12271 |
-
}
|
12272 |
-
},
|
12273 |
-
{
|
12274 |
-
"kind": "webfonts#webfont",
|
12275 |
-
"family": "Spicy Rice",
|
12276 |
-
"category": "display",
|
12277 |
-
"variants": [
|
12278 |
-
"regular"
|
12279 |
-
],
|
12280 |
-
"subsets": [
|
12281 |
-
"latin"
|
12282 |
-
],
|
12283 |
-
"version": "v5",
|
12284 |
-
"lastModified": "2016-02-23",
|
12285 |
-
"files": {
|
12286 |
-
"regular": "http://fonts.gstatic.com/s/spicyrice/v5/WGCtz7cLoggXARPi9OGD6_esZW2xOQ-xsNqO47m55DA.ttf"
|
12287 |
-
}
|
12288 |
-
},
|
12289 |
-
{
|
12290 |
-
"kind": "webfonts#webfont",
|
12291 |
-
"family": "Spinnaker",
|
12292 |
-
"category": "sans-serif",
|
12293 |
-
"variants": [
|
12294 |
-
"regular"
|
12295 |
-
],
|
12296 |
-
"subsets": [
|
12297 |
-
"latin-ext",
|
12298 |
-
"latin"
|
12299 |
-
],
|
12300 |
-
"version": "v8",
|
12301 |
-
"lastModified": "2016-02-23",
|
12302 |
-
"files": {
|
12303 |
-
"regular": "http://fonts.gstatic.com/s/spinnaker/v8/MQdIXivKITpjROUdiN6Jgg.ttf"
|
12304 |
-
}
|
12305 |
-
},
|
12306 |
-
{
|
12307 |
-
"kind": "webfonts#webfont",
|
12308 |
-
"family": "Spirax",
|
12309 |
-
"category": "display",
|
12310 |
-
"variants": [
|
12311 |
-
"regular"
|
12312 |
-
],
|
12313 |
-
"subsets": [
|
12314 |
-
"latin"
|
12315 |
-
],
|
12316 |
-
"version": "v5",
|
12317 |
-
"lastModified": "2016-02-23",
|
12318 |
-
"files": {
|
12319 |
-
"regular": "http://fonts.gstatic.com/s/spirax/v5/IOKqhk-Ccl7y31yDsePPkw.ttf"
|
12320 |
-
}
|
12321 |
-
},
|
12322 |
-
{
|
12323 |
-
"kind": "webfonts#webfont",
|
12324 |
-
"family": "Squada One",
|
12325 |
-
"category": "display",
|
12326 |
-
"variants": [
|
12327 |
-
"regular"
|
12328 |
-
],
|
12329 |
-
"subsets": [
|
12330 |
-
"latin"
|
12331 |
-
],
|
12332 |
-
"version": "v5",
|
12333 |
-
"lastModified": "2016-02-23",
|
12334 |
-
"files": {
|
12335 |
-
"regular": "http://fonts.gstatic.com/s/squadaone/v5/3tzGuaJdD65cZVgfQzN8uvesZW2xOQ-xsNqO47m55DA.ttf"
|
12336 |
-
}
|
12337 |
-
},
|
12338 |
-
{
|
12339 |
-
"kind": "webfonts#webfont",
|
12340 |
-
"family": "Sree Krushnadevaraya",
|
12341 |
-
"category": "serif",
|
12342 |
-
"variants": [
|
12343 |
-
"regular"
|
12344 |
-
],
|
12345 |
-
"subsets": [
|
12346 |
-
"telugu",
|
12347 |
-
"latin"
|
12348 |
-
],
|
12349 |
-
"version": "v4",
|
12350 |
-
"lastModified": "2016-02-23",
|
12351 |
-
"files": {
|
12352 |
-
"regular": "http://fonts.gstatic.com/s/sreekrushnadevaraya/v4/CdsXmnHyEqVl1ahzOh5qnzjDZVem5Eb4d0dXjXa0F_Q.ttf"
|
12353 |
-
}
|
12354 |
-
},
|
12355 |
-
{
|
12356 |
-
"kind": "webfonts#webfont",
|
12357 |
-
"family": "Stalemate",
|
12358 |
-
"category": "handwriting",
|
12359 |
-
"variants": [
|
12360 |
-
"regular"
|
12361 |
-
],
|
12362 |
-
"subsets": [
|
12363 |
-
"latin-ext",
|
12364 |
-
"latin"
|
12365 |
-
],
|
12366 |
-
"version": "v4",
|
12367 |
-
"lastModified": "2016-02-23",
|
12368 |
-
"files": {
|
12369 |
-
"regular": "http://fonts.gstatic.com/s/stalemate/v4/wQLCnG0qB6mOu2Wit2dt_w.ttf"
|
12370 |
-
}
|
12371 |
-
},
|
12372 |
-
{
|
12373 |
-
"kind": "webfonts#webfont",
|
12374 |
-
"family": "Stalinist One",
|
12375 |
-
"category": "display",
|
12376 |
-
"variants": [
|
12377 |
-
"regular"
|
12378 |
-
],
|
12379 |
-
"subsets": [
|
12380 |
-
"latin-ext",
|
12381 |
-
"cyrillic",
|
12382 |
-
"latin"
|
12383 |
-
],
|
12384 |
-
"version": "v8",
|
12385 |
-
"lastModified": "2016-02-23",
|
12386 |
-
"files": {
|
12387 |
-
"regular": "http://fonts.gstatic.com/s/stalinistone/v8/MQpS-WezM9W4Dd7D3B7I-UT7eZ8.ttf"
|
12388 |
-
}
|
12389 |
-
},
|
12390 |
-
{
|
12391 |
-
"kind": "webfonts#webfont",
|
12392 |
-
"family": "Stardos Stencil",
|
12393 |
-
"category": "display",
|
12394 |
-
"variants": [
|
12395 |
-
"regular",
|
12396 |
-
"700"
|
12397 |
-
],
|
12398 |
-
"subsets": [
|
12399 |
-
"latin"
|
12400 |
-
],
|
12401 |
-
"version": "v6",
|
12402 |
-
"lastModified": "2016-02-23",
|
12403 |
-
"files": {
|
12404 |
-
"regular": "http://fonts.gstatic.com/s/stardosstencil/v6/ygEOyTW9a6u4fi4OXEZeTFf2eT4jUldwg_9fgfY_tHc.ttf",
|
12405 |
-
"700": "http://fonts.gstatic.com/s/stardosstencil/v6/h4ExtgvoXhPtv9Ieqd-XC81wDCbBgmIo8UyjIhmkeSM.ttf"
|
12406 |
-
}
|
12407 |
-
},
|
12408 |
-
{
|
12409 |
-
"kind": "webfonts#webfont",
|
12410 |
-
"family": "Stint Ultra Condensed",
|
12411 |
-
"category": "display",
|
12412 |
-
"variants": [
|
12413 |
-
"regular"
|
12414 |
-
],
|
12415 |
-
"subsets": [
|
12416 |
-
"latin-ext",
|
12417 |
-
"latin"
|
12418 |
-
],
|
12419 |
-
"version": "v5",
|
12420 |
-
"lastModified": "2016-02-23",
|
12421 |
-
"files": {
|
12422 |
-
"regular": "http://fonts.gstatic.com/s/stintultracondensed/v5/8DqLK6-YSClFZt3u3EgOUYelbRYnLTTQA1Z5cVLnsI4.ttf"
|
12423 |
-
}
|
12424 |
-
},
|
12425 |
-
{
|
12426 |
-
"kind": "webfonts#webfont",
|
12427 |
-
"family": "Stint Ultra Expanded",
|
12428 |
-
"category": "display",
|
12429 |
-
"variants": [
|
12430 |
-
"regular"
|
12431 |
-
],
|
12432 |
-
"subsets": [
|
12433 |
-
"latin-ext",
|
12434 |
-
"latin"
|
12435 |
-
],
|
12436 |
-
"version": "v4",
|
12437 |
-
"lastModified": "2016-02-23",
|
12438 |
-
"files": {
|
12439 |
-
"regular": "http://fonts.gstatic.com/s/stintultraexpanded/v4/FeigX-wDDgHMCKuhekhedQ7dxr0N5HY0cZKknTIL6n4.ttf"
|
12440 |
-
}
|
12441 |
-
},
|
12442 |
-
{
|
12443 |
-
"kind": "webfonts#webfont",
|
12444 |
-
"family": "Stoke",
|
12445 |
-
"category": "serif",
|
12446 |
-
"variants": [
|
12447 |
-
"300",
|
12448 |
-
"regular"
|
12449 |
-
],
|
12450 |
-
"subsets": [
|
12451 |
-
"latin-ext",
|
12452 |
-
"latin"
|
12453 |
-
],
|
12454 |
-
"version": "v6",
|
12455 |
-
"lastModified": "2016-02-23",
|
12456 |
-
"files": {
|
12457 |
-
"300": "http://fonts.gstatic.com/s/stoke/v6/Sell9475FOS8jUqQsfFsUQ.ttf",
|
12458 |
-
"regular": "http://fonts.gstatic.com/s/stoke/v6/A7qJNoqOm2d6o1E6e0yUFg.ttf"
|
12459 |
-
}
|
12460 |
-
},
|
12461 |
-
{
|
12462 |
-
"kind": "webfonts#webfont",
|
12463 |
-
"family": "Strait",
|
12464 |
-
"category": "sans-serif",
|
12465 |
-
"variants": [
|
12466 |
-
"regular"
|
12467 |
-
],
|
12468 |
-
"subsets": [
|
12469 |
-
"latin"
|
12470 |
-
],
|
12471 |
-
"version": "v4",
|
12472 |
-
"lastModified": "2016-02-23",
|
12473 |
-
"files": {
|
12474 |
-
"regular": "http://fonts.gstatic.com/s/strait/v4/m4W73ViNmProETY2ybc-Bg.ttf"
|
12475 |
-
}
|
12476 |
-
},
|
12477 |
-
{
|
12478 |
-
"kind": "webfonts#webfont",
|
12479 |
-
"family": "Sue Ellen Francisco",
|
12480 |
-
"category": "handwriting",
|
12481 |
-
"variants": [
|
12482 |
-
"regular"
|
12483 |
-
],
|
12484 |
-
"subsets": [
|
12485 |
-
"latin"
|
12486 |
-
],
|
12487 |
-
"version": "v7",
|
12488 |
-
"lastModified": "2016-02-23",
|
12489 |
-
"files": {
|
12490 |
-
"regular": "http://fonts.gstatic.com/s/sueellenfrancisco/v7/TwHX4vSxMUnJUdEz1JIgrhzazJzPVbGl8jnf1tisRz4.ttf"
|
12491 |
-
}
|
12492 |
-
},
|
12493 |
-
{
|
12494 |
-
"kind": "webfonts#webfont",
|
12495 |
-
"family": "Sumana",
|
12496 |
-
"category": "serif",
|
12497 |
-
"variants": [
|
12498 |
-
"regular",
|
12499 |
-
"700"
|
12500 |
-
],
|
12501 |
-
"subsets": [
|
12502 |
-
"devanagari",
|
12503 |
-
"latin-ext",
|
12504 |
-
"latin"
|
12505 |
-
],
|
12506 |
-
"version": "v1",
|
12507 |
-
"lastModified": "2015-05-04",
|
12508 |
-
"files": {
|
12509 |
-
"regular": "http://fonts.gstatic.com/s/sumana/v1/wgdl__wAK7pzliiWs0Nlog.ttf",
|
12510 |
-
"700": "http://fonts.gstatic.com/s/sumana/v1/8AcM-KAproitONSBBHj3sQ.ttf"
|
12511 |
-
}
|
12512 |
-
},
|
12513 |
-
{
|
12514 |
-
"kind": "webfonts#webfont",
|
12515 |
-
"family": "Sunshiney",
|
12516 |
-
"category": "handwriting",
|
12517 |
-
"variants": [
|
12518 |
-
"regular"
|
12519 |
-
],
|
12520 |
-
"subsets": [
|
12521 |
-
"latin"
|
12522 |
-
],
|
12523 |
-
"version": "v6",
|
12524 |
-
"lastModified": "2016-02-23",
|
12525 |
-
"files": {
|
12526 |
-
"regular": "http://fonts.gstatic.com/s/sunshiney/v6/kaWOb4pGbwNijM7CkxK1sQ.ttf"
|
12527 |
-
}
|
12528 |
-
},
|
12529 |
-
{
|
12530 |
-
"kind": "webfonts#webfont",
|
12531 |
-
"family": "Supermercado One",
|
12532 |
-
"category": "display",
|
12533 |
-
"variants": [
|
12534 |
-
"regular"
|
12535 |
-
],
|
12536 |
-
"subsets": [
|
12537 |
-
"latin"
|
12538 |
-
],
|
12539 |
-
"version": "v6",
|
12540 |
-
"lastModified": "2016-02-23",
|
12541 |
-
"files": {
|
12542 |
-
"regular": "http://fonts.gstatic.com/s/supermercadoone/v6/kMGPVTNFiFEp1U274uBMb4mm5hmSKNFf3C5YoMa-lrM.ttf"
|
12543 |
-
}
|
12544 |
-
},
|
12545 |
-
{
|
12546 |
-
"kind": "webfonts#webfont",
|
12547 |
-
"family": "Sura",
|
12548 |
-
"category": "serif",
|
12549 |
-
"variants": [
|
12550 |
-
"regular",
|
12551 |
-
"700"
|
12552 |
-
],
|
12553 |
-
"subsets": [
|
12554 |
-
"devanagari",
|
12555 |
-
"latin-ext",
|
12556 |
-
"latin"
|
12557 |
-
],
|
12558 |
-
"version": "v1",
|
12559 |
-
"lastModified": "2015-06-17",
|
12560 |
-
"files": {
|
12561 |
-
"regular": "http://fonts.gstatic.com/s/sura/v1/jznKrhTH5NezYxb0-Q5zzA.ttf",
|
12562 |
-
"700": "http://fonts.gstatic.com/s/sura/v1/Z5bXQaFGmoWicN1WlcncxA.ttf"
|
12563 |
-
}
|
12564 |
-
},
|
12565 |
-
{
|
12566 |
-
"kind": "webfonts#webfont",
|
12567 |
-
"family": "Suranna",
|
12568 |
-
"category": "serif",
|
12569 |
-
"variants": [
|
12570 |
-
"regular"
|
12571 |
-
],
|
12572 |
-
"subsets": [
|
12573 |
-
"telugu",
|
12574 |
-
"latin"
|
12575 |
-
],
|
12576 |
-
"version": "v4",
|
12577 |
-
"lastModified": "2016-02-23",
|
12578 |
-
"files": {
|
12579 |
-
"regular": "http://fonts.gstatic.com/s/suranna/v4/PYmfr6TQeTqZ-r8HnPM-kA.ttf"
|
12580 |
-
}
|
12581 |
-
},
|
12582 |
-
{
|
12583 |
-
"kind": "webfonts#webfont",
|
12584 |
-
"family": "Suravaram",
|
12585 |
-
"category": "serif",
|
12586 |
-
"variants": [
|
12587 |
-
"regular"
|
12588 |
-
],
|
12589 |
-
"subsets": [
|
12590 |
-
"telugu",
|
12591 |
-
"latin"
|
12592 |
-
],
|
12593 |
-
"version": "v3",
|
12594 |
-
"lastModified": "2016-02-23",
|
12595 |
-
"files": {
|
12596 |
-
"regular": "http://fonts.gstatic.com/s/suravaram/v3/G4dPee4pel_w2HqzavW4MA.ttf"
|
12597 |
-
}
|
12598 |
-
},
|
12599 |
-
{
|
12600 |
-
"kind": "webfonts#webfont",
|
12601 |
-
"family": "Suwannaphum",
|
12602 |
-
"category": "display",
|
12603 |
-
"variants": [
|
12604 |
-
"regular"
|
12605 |
-
],
|
12606 |
-
"subsets": [
|
12607 |
-
"khmer"
|
12608 |
-
],
|
12609 |
-
"version": "v9",
|
12610 |
-
"lastModified": "2015-04-06",
|
12611 |
-
"files": {
|
12612 |
-
"regular": "http://fonts.gstatic.com/s/suwannaphum/v9/1jIPOyXied3T79GCnSlCN6CWcynf_cDxXwCLxiixG1c.ttf"
|
12613 |
-
}
|
12614 |
-
},
|
12615 |
-
{
|
12616 |
-
"kind": "webfonts#webfont",
|
12617 |
-
"family": "Swanky and Moo Moo",
|
12618 |
-
"category": "handwriting",
|
12619 |
-
"variants": [
|
12620 |
-
"regular"
|
12621 |
-
],
|
12622 |
-
"subsets": [
|
12623 |
-
"latin"
|
12624 |
-
],
|
12625 |
-
"version": "v6",
|
12626 |
-
"lastModified": "2016-02-23",
|
12627 |
-
"files": {
|
12628 |
-
"regular": "http://fonts.gstatic.com/s/swankyandmoomoo/v6/orVNZ9kDeE3lWp3U3YELu9DVLKqNC3_XMNHhr8S94FU.ttf"
|
12629 |
-
}
|
12630 |
-
},
|
12631 |
-
{
|
12632 |
-
"kind": "webfonts#webfont",
|
12633 |
-
"family": "Syncopate",
|
12634 |
-
"category": "sans-serif",
|
12635 |
-
"variants": [
|
12636 |
-
"regular",
|
12637 |
-
"700"
|
12638 |
-
],
|
12639 |
-
"subsets": [
|
12640 |
-
"latin"
|
12641 |
-
],
|
12642 |
-
"version": "v7",
|
12643 |
-
"lastModified": "2016-02-23",
|
12644 |
-
"files": {
|
12645 |
-
"regular": "http://fonts.gstatic.com/s/syncopate/v7/RQVwO52fAH6MI764EcaYtw.ttf",
|
12646 |
-
"700": "http://fonts.gstatic.com/s/syncopate/v7/S5z8ixiOoC4WJ1im6jAlYC3USBnSvpkopQaUR-2r7iU.ttf"
|
12647 |
-
}
|
12648 |
-
},
|
12649 |
-
{
|
12650 |
-
"kind": "webfonts#webfont",
|
12651 |
-
"family": "Tangerine",
|
12652 |
-
"category": "handwriting",
|
12653 |
-
"variants": [
|
12654 |
-
"regular",
|
12655 |
-
"700"
|
12656 |
-
],
|
12657 |
-
"subsets": [
|
12658 |
-
"latin"
|
12659 |
-
],
|
12660 |
-
"version": "v7",
|
12661 |
-
"lastModified": "2016-02-23",
|
12662 |
-
"files": {
|
12663 |
-
"regular": "http://fonts.gstatic.com/s/tangerine/v7/DTPeM3IROhnkz7aYG2a9sA.ttf",
|
12664 |
-
"700": "http://fonts.gstatic.com/s/tangerine/v7/UkFsr-RwJB_d2l9fIWsx3i3USBnSvpkopQaUR-2r7iU.ttf"
|
12665 |
-
}
|
12666 |
-
},
|
12667 |
-
{
|
12668 |
-
"kind": "webfonts#webfont",
|
12669 |
-
"family": "Taprom",
|
12670 |
-
"category": "display",
|
12671 |
-
"variants": [
|
12672 |
-
"regular"
|
12673 |
-
],
|
12674 |
-
"subsets": [
|
12675 |
-
"khmer"
|
12676 |
-
],
|
12677 |
-
"version": "v8",
|
12678 |
-
"lastModified": "2015-04-03",
|
12679 |
-
"files": {
|
12680 |
-
"regular": "http://fonts.gstatic.com/s/taprom/v8/-KByU3BaUsyIvQs79qFObg.ttf"
|
12681 |
-
}
|
12682 |
-
},
|
12683 |
-
{
|
12684 |
-
"kind": "webfonts#webfont",
|
12685 |
-
"family": "Tauri",
|
12686 |
-
"category": "sans-serif",
|
12687 |
-
"variants": [
|
12688 |
-
"regular"
|
12689 |
-
],
|
12690 |
-
"subsets": [
|
12691 |
-
"latin-ext",
|
12692 |
-
"latin"
|
12693 |
-
],
|
12694 |
-
"version": "v4",
|
12695 |
-
"lastModified": "2016-02-23",
|
12696 |
-
"files": {
|
12697 |
-
"regular": "http://fonts.gstatic.com/s/tauri/v4/XIWeYJDXNqiVNej0zEqtGg.ttf"
|
12698 |
-
}
|
12699 |
-
},
|
12700 |
-
{
|
12701 |
-
"kind": "webfonts#webfont",
|
12702 |
-
"family": "Teko",
|
12703 |
-
"category": "sans-serif",
|
12704 |
-
"variants": [
|
12705 |
-
"300",
|
12706 |
-
"regular",
|
12707 |
-
"500",
|
12708 |
-
"600",
|
12709 |
-
"700"
|
12710 |
-
],
|
12711 |
-
"subsets": [
|
12712 |
-
"devanagari",
|
12713 |
-
"latin-ext",
|
12714 |
-
"latin"
|
12715 |
-
],
|
12716 |
-
"version": "v5",
|
12717 |
-
"lastModified": "2016-02-23",
|
12718 |
-
"files": {
|
12719 |
-
"300": "http://fonts.gstatic.com/s/teko/v5/OobFGE9eo24rcBpN6zXDaQ.ttf",
|
12720 |
-
"regular": "http://fonts.gstatic.com/s/teko/v5/UtekqODEqZXSN2L-njejpA.ttf",
|
12721 |
-
"500": "http://fonts.gstatic.com/s/teko/v5/FQ0duU7gWM4cSaImOfAjBA.ttf",
|
12722 |
-
"600": "http://fonts.gstatic.com/s/teko/v5/QDx_i8H-TZ1IK1JEVrqwEQ.ttf",
|
12723 |
-
"700": "http://fonts.gstatic.com/s/teko/v5/xKfTxe_SWpH4xU75vmvylA.ttf"
|
12724 |
-
}
|
12725 |
-
},
|
12726 |
-
{
|
12727 |
-
"kind": "webfonts#webfont",
|
12728 |
-
"family": "Telex",
|
12729 |
-
"category": "sans-serif",
|
12730 |
-
"variants": [
|
12731 |
-
"regular"
|
12732 |
-
],
|
12733 |
-
"subsets": [
|
12734 |
-
"latin"
|
12735 |
-
],
|
12736 |
-
"version": "v4",
|
12737 |
-
"lastModified": "2016-02-23",
|
12738 |
-
"files": {
|
12739 |
-
"regular": "http://fonts.gstatic.com/s/telex/v4/24-3xP9ywYeHOcFU3iGk8A.ttf"
|
12740 |
-
}
|
12741 |
-
},
|
12742 |
-
{
|
12743 |
-
"kind": "webfonts#webfont",
|
12744 |
-
"family": "Tenali Ramakrishna",
|
12745 |
-
"category": "sans-serif",
|
12746 |
-
"variants": [
|
12747 |
-
"regular"
|
12748 |
-
],
|
12749 |
-
"subsets": [
|
12750 |
-
"telugu",
|
12751 |
-
"latin"
|
12752 |
-
],
|
12753 |
-
"version": "v3",
|
12754 |
-
"lastModified": "2016-02-23",
|
12755 |
-
"files": {
|
12756 |
-
"regular": "http://fonts.gstatic.com/s/tenaliramakrishna/v3/M0nTmDqv2M7AGoGh-c946BZak5pSBHqWX6uyVMiMFoA.ttf"
|
12757 |
-
}
|
12758 |
-
},
|
12759 |
-
{
|
12760 |
-
"kind": "webfonts#webfont",
|
12761 |
-
"family": "Tenor Sans",
|
12762 |
-
"category": "sans-serif",
|
12763 |
-
"variants": [
|
12764 |
-
"regular"
|
12765 |
-
],
|
12766 |
-
"subsets": [
|
12767 |
-
"latin-ext",
|
12768 |
-
"cyrillic",
|
12769 |
-
"latin"
|
12770 |
-
],
|
12771 |
-
"version": "v7",
|
12772 |
-
"lastModified": "2016-02-23",
|
12773 |
-
"files": {
|
12774 |
-
"regular": "http://fonts.gstatic.com/s/tenorsans/v7/dUBulmjNJJInvK5vL7O9yfesZW2xOQ-xsNqO47m55DA.ttf"
|
12775 |
-
}
|
12776 |
-
},
|
12777 |
-
{
|
12778 |
-
"kind": "webfonts#webfont",
|
12779 |
-
"family": "Text Me One",
|
12780 |
-
"category": "sans-serif",
|
12781 |
-
"variants": [
|
12782 |
-
"regular"
|
12783 |
-
],
|
12784 |
-
"subsets": [
|
12785 |
-
"latin-ext",
|
12786 |
-
"latin"
|
12787 |
-
],
|
12788 |
-
"version": "v4",
|
12789 |
-
"lastModified": "2016-02-23",
|
12790 |
-
"files": {
|
12791 |
-
"regular": "http://fonts.gstatic.com/s/textmeone/v4/9em_3ckd_P5PQkP4aDyDLqCWcynf_cDxXwCLxiixG1c.ttf"
|
12792 |
-
}
|
12793 |
-
},
|
12794 |
-
{
|
12795 |
-
"kind": "webfonts#webfont",
|
12796 |
-
"family": "The Girl Next Door",
|
12797 |
-
"category": "handwriting",
|
12798 |
-
"variants": [
|
12799 |
-
"regular"
|
12800 |
-
],
|
12801 |
-
"subsets": [
|
12802 |
-
"latin"
|
12803 |
-
],
|
12804 |
-
"version": "v7",
|
12805 |
-
"lastModified": "2016-02-23",
|
12806 |
-
"files": {
|
12807 |
-
"regular": "http://fonts.gstatic.com/s/thegirlnextdoor/v7/cWRA4JVGeEcHGcPl5hmX7kzo0nFFoM60ux_D9BUymX4.ttf"
|
12808 |
-
}
|
12809 |
-
},
|
12810 |
-
{
|
12811 |
-
"kind": "webfonts#webfont",
|
12812 |
-
"family": "Tienne",
|
12813 |
-
"category": "serif",
|
12814 |
-
"variants": [
|
12815 |
-
"regular",
|
12816 |
-
"700",
|
12817 |
-
"900"
|
12818 |
-
],
|
12819 |
-
"subsets": [
|
12820 |
-
"latin"
|
12821 |
-
],
|
12822 |
-
"version": "v8",
|
12823 |
-
"lastModified": "2016-02-23",
|
12824 |
-
"files": {
|
12825 |
-
"regular": "http://fonts.gstatic.com/s/tienne/v8/-IIfDl701C0z7-fy2kmGvA.ttf",
|
12826 |
-
"700": "http://fonts.gstatic.com/s/tienne/v8/JvoCDOlyOSEyYGRwCyfs3g.ttf",
|
12827 |
-
"900": "http://fonts.gstatic.com/s/tienne/v8/FBano5T521OWexj2iRYLMw.ttf"
|
12828 |
-
}
|
12829 |
-
},
|
12830 |
-
{
|
12831 |
-
"kind": "webfonts#webfont",
|
12832 |
-
"family": "Tillana",
|
12833 |
-
"category": "handwriting",
|
12834 |
-
"variants": [
|
12835 |
-
"regular",
|
12836 |
-
"500",
|
12837 |
-
"600",
|
12838 |
-
"700",
|
12839 |
-
"800"
|
12840 |
-
],
|
12841 |
-
"subsets": [
|
12842 |
-
"devanagari",
|
12843 |
-
"latin-ext",
|
12844 |
-
"latin"
|
12845 |
-
],
|
12846 |
-
"version": "v1",
|
12847 |
-
"lastModified": "2016-02-23",
|
12848 |
-
"files": {
|
12849 |
-
"regular": "http://fonts.gstatic.com/s/tillana/v1/zN0D-jDPsr1HzU3VRFLY5g.ttf",
|
12850 |
-
"500": "http://fonts.gstatic.com/s/tillana/v1/gqdUngSIcY9tSla5eCZky_esZW2xOQ-xsNqO47m55DA.ttf",
|
12851 |
-
"600": "http://fonts.gstatic.com/s/tillana/v1/fqon6-r15hy8M1cyiYfQBvesZW2xOQ-xsNqO47m55DA.ttf",
|
12852 |
-
"700": "http://fonts.gstatic.com/s/tillana/v1/jGARMTxLrMerzTCpGBpMffesZW2xOQ-xsNqO47m55DA.ttf",
|
12853 |
-
"800": "http://fonts.gstatic.com/s/tillana/v1/pmTtNH_Ibktj5Cyc1XrP6vesZW2xOQ-xsNqO47m55DA.ttf"
|
12854 |
-
}
|
12855 |
-
},
|
12856 |
-
{
|
12857 |
-
"kind": "webfonts#webfont",
|
12858 |
-
"family": "Timmana",
|
12859 |
-
"category": "sans-serif",
|
12860 |
-
"variants": [
|
12861 |
-
"regular"
|
12862 |
-
],
|
12863 |
-
"subsets": [
|
12864 |
-
"telugu",
|
12865 |
-
"latin"
|
12866 |
-
],
|
12867 |
-
"version": "v1",
|
12868 |
-
"lastModified": "2016-02-23",
|
12869 |
-
"files": {
|
12870 |
-
"regular": "http://fonts.gstatic.com/s/timmana/v1/T25SicsJUJkc2s2sbBsDnA.ttf"
|
12871 |
-
}
|
12872 |
-
},
|
12873 |
-
{
|
12874 |
-
"kind": "webfonts#webfont",
|
12875 |
-
"family": "Tinos",
|
12876 |
-
"category": "serif",
|
12877 |
-
"variants": [
|
12878 |
-
"regular",
|
12879 |
-
"italic",
|
12880 |
-
"700",
|
12881 |
-
"700italic"
|
12882 |
-
],
|
12883 |
-
"subsets": [
|
12884 |
-
"latin-ext",
|
12885 |
-
"greek-ext",
|
12886 |
-
"vietnamese",
|
12887 |
-
"cyrillic-ext",
|
12888 |
-
"hebrew",
|
12889 |
-
"cyrillic",
|
12890 |
-
"greek",
|
12891 |
-
"latin"
|
12892 |
-
],
|
12893 |
-
"version": "v9",
|
12894 |
-
"lastModified": "2016-02-23",
|
12895 |
-
"files": {
|
12896 |
-
"regular": "http://fonts.gstatic.com/s/tinos/v9/EqpUbkVmutfwZ0PjpoGwCg.ttf",
|
12897 |
-
"italic": "http://fonts.gstatic.com/s/tinos/v9/slfyzlasCr9vTsaP4lUh9A.ttf",
|
12898 |
-
"700": "http://fonts.gstatic.com/s/tinos/v9/vHXfhX8jZuQruowfon93yQ.ttf",
|
12899 |
-
"700italic": "http://fonts.gstatic.com/s/tinos/v9/M6kfzvDMM0CdxdraoFpG6vesZW2xOQ-xsNqO47m55DA.ttf"
|
12900 |
-
}
|
12901 |
-
},
|
12902 |
-
{
|
12903 |
-
"kind": "webfonts#webfont",
|
12904 |
-
"family": "Titan One",
|
12905 |
-
"category": "display",
|
12906 |
-
"variants": [
|
12907 |
-
"regular"
|
12908 |
-
],
|
12909 |
-
"subsets": [
|
12910 |
-
"latin-ext",
|
12911 |
-
"latin"
|
12912 |
-
],
|
12913 |
-
"version": "v4",
|
12914 |
-
"lastModified": "2016-02-23",
|
12915 |
-
"files": {
|
12916 |
-
"regular": "http://fonts.gstatic.com/s/titanone/v4/FbvpRvzfV_oipS0De3iAZg.ttf"
|
12917 |
-
}
|
12918 |
-
},
|
12919 |
-
{
|
12920 |
-
"kind": "webfonts#webfont",
|
12921 |
-
"family": "Titillium Web",
|
12922 |
-
"category": "sans-serif",
|
12923 |
-
"variants": [
|
12924 |
-
"200",
|
12925 |
-
"200italic",
|
12926 |
-
"300",
|
12927 |
-
"300italic",
|
12928 |
-
"regular",
|
12929 |
-
"italic",
|
12930 |
-
"600",
|
12931 |
-
"600italic",
|
12932 |
-
"700",
|
12933 |
-
"700italic",
|
12934 |
-
"900"
|
12935 |
-
],
|
12936 |
-
"subsets": [
|
12937 |
-
"latin-ext",
|
12938 |
-
"latin"
|
12939 |
-
],
|
12940 |
-
"version": "v4",
|
12941 |
-
"lastModified": "2016-02-23",
|
12942 |
-
"files": {
|
12943 |
-
"200": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wprzOdCrLccoxq42eaxM802O0.ttf",
|
12944 |
-
"200italic": "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPj4N98U-66ThNJvtgddRfBE.ttf",
|
12945 |
-
"300": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr9ZAkYT8DuUZELiKLwMGWAo.ttf",
|
12946 |
-
"300italic": "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPrfzCkqg7ORZlRf2cc4mXu8.ttf",
|
12947 |
-
"regular": "http://fonts.gstatic.com/s/titilliumweb/v4/7XUFZ5tgS-tD6QamInJTcTyagQBwYgYywpS70xNq8SQ.ttf",
|
12948 |
-
"italic": "http://fonts.gstatic.com/s/titilliumweb/v4/r9OmwyQxrgzUAhaLET_KO-ixohbIP6lHkU-1Mgq95cY.ttf",
|
12949 |
-
"600": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr28K9dEd5Ue-HTQrlA7E2xQ.ttf",
|
12950 |
-
"600italic": "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPgOhzTSndyK8UWja2yJjKLc.ttf",
|
12951 |
-
"700": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr2-6tpSbB9YhmWtmd1_gi_U.ttf",
|
12952 |
-
"700italic": "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPio3LEw-4MM8Ao2j9wPOfpw.ttf",
|
12953 |
-
"900": "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr7L0GmZLri-m-nfoo0Vul4Y.ttf"
|
12954 |
-
}
|
12955 |
-
},
|
12956 |
-
{
|
12957 |
-
"kind": "webfonts#webfont",
|
12958 |
-
"family": "Trade Winds",
|
12959 |
-
"category": "display",
|
12960 |
-
"variants": [
|
12961 |
-
"regular"
|
12962 |
-
],
|
12963 |
-
"subsets": [
|
12964 |
-
"latin"
|
12965 |
-
],
|
12966 |
-
"version": "v5",
|
12967 |
-
"lastModified": "2016-02-23",
|
12968 |
-
"files": {
|
12969 |
-
"regular": "http://fonts.gstatic.com/s/tradewinds/v5/sDOCVgAxw6PEUi2xdMsoDaCWcynf_cDxXwCLxiixG1c.ttf"
|
12970 |
-
}
|
12971 |
-
},
|
12972 |
-
{
|
12973 |
-
"kind": "webfonts#webfont",
|
12974 |
-
"family": "Trocchi",
|
12975 |
-
"category": "serif",
|
12976 |
-
"variants": [
|
12977 |
-
"regular"
|
12978 |
-
],
|
12979 |
-
"subsets": [
|
12980 |
-
"latin-ext",
|
12981 |
-
"latin"
|
12982 |
-
],
|
12983 |
-
"version": "v4",
|
12984 |
-
"lastModified": "2016-02-23",
|
12985 |
-
"files": {
|
12986 |
-
"regular": "http://fonts.gstatic.com/s/trocchi/v4/uldNPaKrUGVeGCVsmacLwA.ttf"
|
12987 |
-
}
|
12988 |
-
},
|
12989 |
-
{
|
12990 |
-
"kind": "webfonts#webfont",
|
12991 |
-
"family": "Trochut",
|
12992 |
-
"category": "display",
|
12993 |
-
"variants": [
|
12994 |
-
"regular",
|
12995 |
-
"italic",
|
12996 |
-
"700"
|
12997 |
-
],
|
12998 |
-
"subsets": [
|
12999 |
-
"latin"
|
13000 |
-
],
|
13001 |
-
"version": "v4",
|
13002 |
-
"lastModified": "2016-02-23",
|
13003 |
-
"files": {
|
13004 |
-
"regular": "http://fonts.gstatic.com/s/trochut/v4/6Y65B0x-2JsnYt16OH5omw.ttf",
|
13005 |
-
"italic": "http://fonts.gstatic.com/s/trochut/v4/pczUwr4ZFvC79TgNO5cZng.ttf",
|
13006 |
-
"700": "http://fonts.gstatic.com/s/trochut/v4/lWqNOv6ISR8ehNzGLFLnJ_esZW2xOQ-xsNqO47m55DA.ttf"
|
13007 |
-
}
|
13008 |
-
},
|
13009 |
-
{
|
13010 |
-
"kind": "webfonts#webfont",
|
13011 |
-
"family": "Trykker",
|
13012 |
-
"category": "serif",
|
13013 |
-
"variants": [
|
13014 |
-
"regular"
|
13015 |
-
],
|
13016 |
-
"subsets": [
|
13017 |
-
"latin-ext",
|
13018 |
-
"latin"
|
13019 |
-
],
|
13020 |
-
"version": "v5",
|
13021 |
-
"lastModified": "2016-02-23",
|
13022 |
-
"files": {
|
13023 |
-
"regular": "http://fonts.gstatic.com/s/trykker/v5/YiVrVJpBFN7I1l_CWk6yYQ.ttf"
|
13024 |
-
}
|
13025 |
-
},
|
13026 |
-
{
|
13027 |
-
"kind": "webfonts#webfont",
|
13028 |
-
"family": "Tulpen One",
|
13029 |
-
"category": "display",
|
13030 |
-
"variants": [
|
13031 |
-
"regular"
|
13032 |
-
],
|
13033 |
-
"subsets": [
|
13034 |
-
"latin"
|
13035 |
-
],
|
13036 |
-
"version": "v6",
|
13037 |
-
"lastModified": "2016-02-23",
|
13038 |
-
"files": {
|
13039 |
-
"regular": "http://fonts.gstatic.com/s/tulpenone/v6/lwcTfVIEVxpZLZlWzR5baPesZW2xOQ-xsNqO47m55DA.ttf"
|
13040 |
-
}
|
13041 |
-
},
|
13042 |
-
{
|
13043 |
-
"kind": "webfonts#webfont",
|
13044 |
-
"family": "Ubuntu",
|
13045 |
-
"category": "sans-serif",
|
13046 |
-
"variants": [
|
13047 |
-
"300",
|
13048 |
-
"300italic",
|
13049 |
-
"regular",
|
13050 |
-
"italic",
|
13051 |
-
"500",
|
13052 |
-
"500italic",
|
13053 |
-
"700",
|
13054 |
-
"700italic"
|
13055 |
-
],
|
13056 |
-
"subsets": [
|
13057 |
-
"latin-ext",
|
13058 |
-
"greek-ext",
|
13059 |
-
"cyrillic-ext",
|
13060 |
-
"cyrillic",
|
13061 |
-
"greek",
|
13062 |
-
"latin"
|
13063 |
-
],
|
13064 |
-
"version": "v9",
|
13065 |
-
"lastModified": "2016-02-23",
|
13066 |
-
"files": {
|
13067 |
-
"300": "http://fonts.gstatic.com/s/ubuntu/v9/7-wH0j2QCTHKgp7vLh9-sQ.ttf",
|
13068 |
-
"300italic": "http://fonts.gstatic.com/s/ubuntu/v9/j-TYDdXcC_eQzhhp386SjaCWcynf_cDxXwCLxiixG1c.ttf",
|
13069 |
-
"regular": "http://fonts.gstatic.com/s/ubuntu/v9/lhhB5ZCwEkBRbHMSnYuKyA.ttf",
|
13070 |
-
"italic": "http://fonts.gstatic.com/s/ubuntu/v9/b9hP8wd30SygxZjGGk4DCQ.ttf",
|
13071 |
-
"500": "http://fonts.gstatic.com/s/ubuntu/v9/bMbHEMwSUmkzcK2x_74QbA.ttf",
|
13072 |
-
"500italic": "http://fonts.gstatic.com/s/ubuntu/v9/NWdMogIO7U6AtEM4dDdf_aCWcynf_cDxXwCLxiixG1c.ttf",
|
13073 |
-
"700": "http://fonts.gstatic.com/s/ubuntu/v9/B7BtHjNYwAp3HgLNagENOQ.ttf",
|
13074 |
-
"700italic": "http://fonts.gstatic.com/s/ubuntu/v9/pqisLQoeO9YTDCNnlQ9bf6CWcynf_cDxXwCLxiixG1c.ttf"
|
13075 |
-
}
|
13076 |
-
},
|
13077 |
-
{
|
13078 |
-
"kind": "webfonts#webfont",
|
13079 |
-
"family": "Ubuntu Condensed",
|
13080 |
-
"category": "sans-serif",
|
13081 |
-
"variants": [
|
13082 |
-
"regular"
|
13083 |
-
],
|
13084 |
-
"subsets": [
|
13085 |
-
"latin-ext",
|
13086 |
-
"greek-ext",
|
13087 |
-
"cyrillic-ext",
|
13088 |
-
"cyrillic",
|
13089 |
-
"greek",
|
13090 |
-
"latin"
|
13091 |
-
],
|
13092 |
-
"version": "v7",
|
13093 |
-
"lastModified": "2016-02-23",
|
13094 |
-
"files": {
|
13095 |
-
"regular": "http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrKDbm6fPDOZJsR8PmdG62gY.ttf"
|
13096 |
-
}
|
13097 |
-
},
|
13098 |
-
{
|
13099 |
-
"kind": "webfonts#webfont",
|
13100 |
-
"family": "Ubuntu Mono",
|
13101 |
-
"category": "monospace",
|
13102 |
-
"variants": [
|
13103 |
-
"regular",
|
13104 |
-
"italic",
|
13105 |
-
"700",
|
13106 |
-
"700italic"
|
13107 |
-
],
|
13108 |
-
"subsets": [
|
13109 |
-
"latin-ext",
|
13110 |
-
"greek-ext",
|
13111 |
-
"cyrillic-ext",
|
13112 |
-
"cyrillic",
|
13113 |
-
"greek",
|
13114 |
-
"latin"
|
13115 |
-
],
|
13116 |
-
"version": "v6",
|
13117 |
-
"lastModified": "2016-02-23",
|
13118 |
-
"files": {
|
13119 |
-
"regular": "http://fonts.gstatic.com/s/ubuntumono/v6/EgeuS9OtEmA0y_JRo03MQaCWcynf_cDxXwCLxiixG1c.ttf",
|
13120 |
-
"italic": "http://fonts.gstatic.com/s/ubuntumono/v6/KAKuHXAHZOeECOWAHsRKA0eOrDcLawS7-ssYqLr2Xp4.ttf",
|
13121 |
-
"700": "http://fonts.gstatic.com/s/ubuntumono/v6/ceqTZGKHipo8pJj4molytne1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
13122 |
-
"700italic": "http://fonts.gstatic.com/s/ubuntumono/v6/n_d8tv_JOIiYyMXR4eaV9c_zJjSACmk0BRPxQqhnNLU.ttf"
|
13123 |
-
}
|
13124 |
-
},
|
13125 |
-
{
|
13126 |
-
"kind": "webfonts#webfont",
|
13127 |
-
"family": "Ultra",
|
13128 |
-
"category": "serif",
|
13129 |
-
"variants": [
|
13130 |
-
"regular"
|
13131 |
-
],
|
13132 |
-
"subsets": [
|
13133 |
-
"latin"
|
13134 |
-
],
|
13135 |
-
"version": "v8",
|
13136 |
-
"lastModified": "2016-02-23",
|
13137 |
-
"files": {
|
13138 |
-
"regular": "http://fonts.gstatic.com/s/ultra/v8/OW8uXkOstRADuhEmGOFQLA.ttf"
|
13139 |
-
}
|
13140 |
-
},
|
13141 |
-
{
|
13142 |
-
"kind": "webfonts#webfont",
|
13143 |
-
"family": "Uncial Antiqua",
|
13144 |
-
"category": "display",
|
13145 |
-
"variants": [
|
13146 |
-
"regular"
|
13147 |
-
],
|
13148 |
-
"subsets": [
|
13149 |
-
"latin"
|
13150 |
-
],
|
13151 |
-
"version": "v4",
|
13152 |
-
"lastModified": "2016-02-23",
|
13153 |
-
"files": {
|
13154 |
-
"regular": "http://fonts.gstatic.com/s/uncialantiqua/v4/F-leefDiFwQXsyd6eaSllqrFJ4O13IHVxZbM6yoslpo.ttf"
|
13155 |
-
}
|
13156 |
-
},
|
13157 |
-
{
|
13158 |
-
"kind": "webfonts#webfont",
|
13159 |
-
"family": "Underdog",
|
13160 |
-
"category": "display",
|
13161 |
-
"variants": [
|
13162 |
-
"regular"
|
13163 |
-
],
|
13164 |
-
"subsets": [
|
13165 |
-
"latin-ext",
|
13166 |
-
"cyrillic",
|
13167 |
-
"latin"
|
13168 |
-
],
|
13169 |
-
"version": "v5",
|
13170 |
-
"lastModified": "2016-02-23",
|
13171 |
-
"files": {
|
13172 |
-
"regular": "http://fonts.gstatic.com/s/underdog/v5/gBv9yjez_-5PnTprHWq0ig.ttf"
|
13173 |
-
}
|
13174 |
-
},
|
13175 |
-
{
|
13176 |
-
"kind": "webfonts#webfont",
|
13177 |
-
"family": "Unica One",
|
13178 |
-
"category": "display",
|
13179 |
-
"variants": [
|
13180 |
-
"regular"
|
13181 |
-
],
|
13182 |
-
"subsets": [
|
13183 |
-
"latin-ext",
|
13184 |
-
"latin"
|
13185 |
-
],
|
13186 |
-
"version": "v4",
|
13187 |
-
"lastModified": "2016-02-23",
|
13188 |
-
"files": {
|
13189 |
-
"regular": "http://fonts.gstatic.com/s/unicaone/v4/KbYKlhWMDpatWViqDkNQgA.ttf"
|
13190 |
-
}
|
13191 |
-
},
|
13192 |
-
{
|
13193 |
-
"kind": "webfonts#webfont",
|
13194 |
-
"family": "UnifrakturCook",
|
13195 |
-
"category": "display",
|
13196 |
-
"variants": [
|
13197 |
-
"700"
|
13198 |
-
],
|
13199 |
-
"subsets": [
|
13200 |
-
"latin"
|
13201 |
-
],
|
13202 |
-
"version": "v8",
|
13203 |
-
"lastModified": "2016-02-23",
|
13204 |
-
"files": {
|
13205 |
-
"700": "http://fonts.gstatic.com/s/unifrakturcook/v8/ASwh69ykD8iaoYijVEU6RrWZkcsCTHKV51zmcUsafQ0.ttf"
|
13206 |
-
}
|
13207 |
-
},
|
13208 |
-
{
|
13209 |
-
"kind": "webfonts#webfont",
|
13210 |
-
"family": "UnifrakturMaguntia",
|
13211 |
-
"category": "display",
|
13212 |
-
"variants": [
|
13213 |
-
"regular"
|
13214 |
-
],
|
13215 |
-
"subsets": [
|
13216 |
-
"latin"
|
13217 |
-
],
|
13218 |
-
"version": "v7",
|
13219 |
-
"lastModified": "2016-02-23",
|
13220 |
-
"files": {
|
13221 |
-
"regular": "http://fonts.gstatic.com/s/unifrakturmaguntia/v7/7KWy3ymCVR_xfAvvcIXm3-kdNg30GQauG_DE-tMYtWk.ttf"
|
13222 |
-
}
|
13223 |
-
},
|
13224 |
-
{
|
13225 |
-
"kind": "webfonts#webfont",
|
13226 |
-
"family": "Unkempt",
|
13227 |
-
"category": "display",
|
13228 |
-
"variants": [
|
13229 |
-
"regular",
|
13230 |
-
"700"
|
13231 |
-
],
|
13232 |
-
"subsets": [
|
13233 |
-
"latin"
|
13234 |
-
],
|
13235 |
-
"version": "v7",
|
13236 |
-
"lastModified": "2016-02-23",
|
13237 |
-
"files": {
|
13238 |
-
"regular": "http://fonts.gstatic.com/s/unkempt/v7/NLLBeNSspr0RGs71R5LHWA.ttf",
|
13239 |
-
"700": "http://fonts.gstatic.com/s/unkempt/v7/V7H-GCl9bgwGwqFqTTgDHvesZW2xOQ-xsNqO47m55DA.ttf"
|
13240 |
-
}
|
13241 |
-
},
|
13242 |
-
{
|
13243 |
-
"kind": "webfonts#webfont",
|
13244 |
-
"family": "Unlock",
|
13245 |
-
"category": "display",
|
13246 |
-
"variants": [
|
13247 |
-
"regular"
|
13248 |
-
],
|
13249 |
-
"subsets": [
|
13250 |
-
"latin"
|
13251 |
-
],
|
13252 |
-
"version": "v6",
|
13253 |
-
"lastModified": "2016-02-23",
|
13254 |
-
"files": {
|
13255 |
-
"regular": "http://fonts.gstatic.com/s/unlock/v6/rXEQzK7uIAlhoyoAEiMy1w.ttf"
|
13256 |
-
}
|
13257 |
-
},
|
13258 |
-
{
|
13259 |
-
"kind": "webfonts#webfont",
|
13260 |
-
"family": "Unna",
|
13261 |
-
"category": "serif",
|
13262 |
-
"variants": [
|
13263 |
-
"regular"
|
13264 |
-
],
|
13265 |
-
"subsets": [
|
13266 |
-
"latin"
|
13267 |
-
],
|
13268 |
-
"version": "v8",
|
13269 |
-
"lastModified": "2016-02-23",
|
13270 |
-
"files": {
|
13271 |
-
"regular": "http://fonts.gstatic.com/s/unna/v8/UAS0AM7AmbdCNY_80xyAZQ.ttf"
|
13272 |
-
}
|
13273 |
-
},
|
13274 |
-
{
|
13275 |
-
"kind": "webfonts#webfont",
|
13276 |
-
"family": "VT323",
|
13277 |
-
"category": "monospace",
|
13278 |
-
"variants": [
|
13279 |
-
"regular"
|
13280 |
-
],
|
13281 |
-
"subsets": [
|
13282 |
-
"latin"
|
13283 |
-
],
|
13284 |
-
"version": "v7",
|
13285 |
-
"lastModified": "2016-02-23",
|
13286 |
-
"files": {
|
13287 |
-
"regular": "http://fonts.gstatic.com/s/vt323/v7/ITU2YQfM073o1iYK3nSOmQ.ttf"
|
13288 |
-
}
|
13289 |
-
},
|
13290 |
-
{
|
13291 |
-
"kind": "webfonts#webfont",
|
13292 |
-
"family": "Vampiro One",
|
13293 |
-
"category": "display",
|
13294 |
-
"variants": [
|
13295 |
-
"regular"
|
13296 |
-
],
|
13297 |
-
"subsets": [
|
13298 |
-
"latin-ext",
|
13299 |
-
"latin"
|
13300 |
-
],
|
13301 |
-
"version": "v7",
|
13302 |
-
"lastModified": "2016-02-23",
|
13303 |
-
"files": {
|
13304 |
-
"regular": "http://fonts.gstatic.com/s/vampiroone/v7/OVDs4gY4WpS5u3Qd1gXRW6CWcynf_cDxXwCLxiixG1c.ttf"
|
13305 |
-
}
|
13306 |
-
},
|
13307 |
-
{
|
13308 |
-
"kind": "webfonts#webfont",
|
13309 |
-
"family": "Varela",
|
13310 |
-
"category": "sans-serif",
|
13311 |
-
"variants": [
|
13312 |
-
"regular"
|
13313 |
-
],
|
13314 |
-
"subsets": [
|
13315 |
-
"latin-ext",
|
13316 |
-
"latin"
|
13317 |
-
],
|
13318 |
-
"version": "v7",
|
13319 |
-
"lastModified": "2016-02-23",
|
13320 |
-
"files": {
|
13321 |
-
"regular": "http://fonts.gstatic.com/s/varela/v7/ON7qs0cKUUixhhDFXlZUjw.ttf"
|
13322 |
-
}
|
13323 |
-
},
|
13324 |
-
{
|
13325 |
-
"kind": "webfonts#webfont",
|
13326 |
-
"family": "Varela Round",
|
13327 |
-
"category": "sans-serif",
|
13328 |
-
"variants": [
|
13329 |
-
"regular"
|
13330 |
-
],
|
13331 |
-
"subsets": [
|
13332 |
-
"latin"
|
13333 |
-
],
|
13334 |
-
"version": "v6",
|
13335 |
-
"lastModified": "2016-02-23",
|
13336 |
-
"files": {
|
13337 |
-
"regular": "http://fonts.gstatic.com/s/varelaround/v6/APH4jr0uSos5wiut5cpjri3USBnSvpkopQaUR-2r7iU.ttf"
|
13338 |
-
}
|
13339 |
-
},
|
13340 |
-
{
|
13341 |
-
"kind": "webfonts#webfont",
|
13342 |
-
"family": "Vast Shadow",
|
13343 |
-
"category": "display",
|
13344 |
-
"variants": [
|
13345 |
-
"regular"
|
13346 |
-
],
|
13347 |
-
"subsets": [
|
13348 |
-
"latin"
|
13349 |
-
],
|
13350 |
-
"version": "v6",
|
13351 |
-
"lastModified": "2016-02-23",
|
13352 |
-
"files": {
|
13353 |
-
"regular": "http://fonts.gstatic.com/s/vastshadow/v6/io4hqKX3ibiqQQjYfW0-h6CWcynf_cDxXwCLxiixG1c.ttf"
|
13354 |
-
}
|
13355 |
-
},
|
13356 |
-
{
|
13357 |
-
"kind": "webfonts#webfont",
|
13358 |
-
"family": "Vesper Libre",
|
13359 |
-
"category": "serif",
|
13360 |
-
"variants": [
|
13361 |
-
"regular",
|
13362 |
-
"500",
|
13363 |
-
"700",
|
13364 |
-
"900"
|
13365 |
-
],
|
13366 |
-
"subsets": [
|
13367 |
-
"devanagari",
|
13368 |
-
"latin-ext",
|
13369 |
-
"latin"
|
13370 |
-
],
|
13371 |
-
"version": "v7",
|
13372 |
-
"lastModified": "2015-06-03",
|
13373 |
-
"files": {
|
13374 |
-
"regular": "http://fonts.gstatic.com/s/vesperlibre/v7/Cg-TeZFsqV8BaOcoVwzu2C3USBnSvpkopQaUR-2r7iU.ttf",
|
13375 |
-
"500": "http://fonts.gstatic.com/s/vesperlibre/v7/0liLgNkygqH6EOtsVjZDsZMQuUSAwdHsY8ov_6tk1oA.ttf",
|
13376 |
-
"700": "http://fonts.gstatic.com/s/vesperlibre/v7/0liLgNkygqH6EOtsVjZDsUD2ttfZwueP-QU272T9-k4.ttf",
|
13377 |
-
"900": "http://fonts.gstatic.com/s/vesperlibre/v7/0liLgNkygqH6EOtsVjZDsaObDOjC3UL77puoeHsE3fw.ttf"
|
13378 |
-
}
|
13379 |
-
},
|
13380 |
-
{
|
13381 |
-
"kind": "webfonts#webfont",
|
13382 |
-
"family": "Vibur",
|
13383 |
-
"category": "handwriting",
|
13384 |
-
"variants": [
|
13385 |
-
"regular"
|
13386 |
-
],
|
13387 |
-
"subsets": [
|
13388 |
-
"latin"
|
13389 |
-
],
|
13390 |
-
"version": "v7",
|
13391 |
-
"lastModified": "2016-02-23",
|
13392 |
-
"files": {
|
13393 |
-
"regular": "http://fonts.gstatic.com/s/vibur/v7/xB9aKsUbJo68XP0bAg2iLw.ttf"
|
13394 |
-
}
|
13395 |
-
},
|
13396 |
-
{
|
13397 |
-
"kind": "webfonts#webfont",
|
13398 |
-
"family": "Vidaloka",
|
13399 |
-
"category": "serif",
|
13400 |
-
"variants": [
|
13401 |
-
"regular"
|
13402 |
-
],
|
13403 |
-
"subsets": [
|
13404 |
-
"latin"
|
13405 |
-
],
|
13406 |
-
"version": "v8",
|
13407 |
-
"lastModified": "2016-02-23",
|
13408 |
-
"files": {
|
13409 |
-
"regular": "http://fonts.gstatic.com/s/vidaloka/v8/C6Nul0ogKUWkx356rrt9RA.ttf"
|
13410 |
-
}
|
13411 |
-
},
|
13412 |
-
{
|
13413 |
-
"kind": "webfonts#webfont",
|
13414 |
-
"family": "Viga",
|
13415 |
-
"category": "sans-serif",
|
13416 |
-
"variants": [
|
13417 |
-
"regular"
|
13418 |
-
],
|
13419 |
-
"subsets": [
|
13420 |
-
"latin-ext",
|
13421 |
-
"latin"
|
13422 |
-
],
|
13423 |
-
"version": "v5",
|
13424 |
-
"lastModified": "2016-02-23",
|
13425 |
-
"files": {
|
13426 |
-
"regular": "http://fonts.gstatic.com/s/viga/v5/uD87gDbhS7frHLX4uL6agg.ttf"
|
13427 |
-
}
|
13428 |
-
},
|
13429 |
-
{
|
13430 |
-
"kind": "webfonts#webfont",
|
13431 |
-
"family": "Voces",
|
13432 |
-
"category": "display",
|
13433 |
-
"variants": [
|
13434 |
-
"regular"
|
13435 |
-
],
|
13436 |
-
"subsets": [
|
13437 |
-
"latin-ext",
|
13438 |
-
"latin"
|
13439 |
-
],
|
13440 |
-
"version": "v5",
|
13441 |
-
"lastModified": "2016-02-23",
|
13442 |
-
"files": {
|
13443 |
-
"regular": "http://fonts.gstatic.com/s/voces/v5/QoBH6g6yKgNIgvL8A2aE2Q.ttf"
|
13444 |
-
}
|
13445 |
-
},
|
13446 |
-
{
|
13447 |
-
"kind": "webfonts#webfont",
|
13448 |
-
"family": "Volkhov",
|
13449 |
-
"category": "serif",
|
13450 |
-
"variants": [
|
13451 |
-
"regular",
|
13452 |
-
"italic",
|
13453 |
-
"700",
|
13454 |
-
"700italic"
|
13455 |
-
],
|
13456 |
-
"subsets": [
|
13457 |
-
"latin"
|
13458 |
-
],
|
13459 |
-
"version": "v8",
|
13460 |
-
"lastModified": "2016-02-23",
|
13461 |
-
"files": {
|
13462 |
-
"regular": "http://fonts.gstatic.com/s/volkhov/v8/MDIZAofe1T_J3un5Kgo8zg.ttf",
|
13463 |
-
"italic": "http://fonts.gstatic.com/s/volkhov/v8/1rTjmztKEpbkKH06JwF8Yw.ttf",
|
13464 |
-
"700": "http://fonts.gstatic.com/s/volkhov/v8/L8PbKS-kEoLHm7nP--NCzPesZW2xOQ-xsNqO47m55DA.ttf",
|
13465 |
-
"700italic": "http://fonts.gstatic.com/s/volkhov/v8/W6oG0QDDjCgj0gmsHE520C3USBnSvpkopQaUR-2r7iU.ttf"
|
13466 |
-
}
|
13467 |
-
},
|
13468 |
-
{
|
13469 |
-
"kind": "webfonts#webfont",
|
13470 |
-
"family": "Vollkorn",
|
13471 |
-
"category": "serif",
|
13472 |
-
"variants": [
|
13473 |
-
"regular",
|
13474 |
-
"italic",
|
13475 |
-
"700",
|
13476 |
-
"700italic"
|
13477 |
-
],
|
13478 |
-
"subsets": [
|
13479 |
-
"latin"
|
13480 |
-
],
|
13481 |
-
"version": "v6",
|
13482 |
-
"lastModified": "2016-02-23",
|
13483 |
-
"files": {
|
13484 |
-
"regular": "http://fonts.gstatic.com/s/vollkorn/v6/IiexqYAeh8uII223thYx3w.ttf",
|
13485 |
-
"italic": "http://fonts.gstatic.com/s/vollkorn/v6/UuIzosgR1ovBhJFdwVp3fvesZW2xOQ-xsNqO47m55DA.ttf",
|
13486 |
-
"700": "http://fonts.gstatic.com/s/vollkorn/v6/gOwQjJVGXlDOONC12hVoBqCWcynf_cDxXwCLxiixG1c.ttf",
|
13487 |
-
"700italic": "http://fonts.gstatic.com/s/vollkorn/v6/KNiAlx6phRqXCwnZZG51JAJKKGfqHaYFsRG-T3ceEVo.ttf"
|
13488 |
-
}
|
13489 |
-
},
|
13490 |
-
{
|
13491 |
-
"kind": "webfonts#webfont",
|
13492 |
-
"family": "Voltaire",
|
13493 |
-
"category": "sans-serif",
|
13494 |
-
"variants": [
|
13495 |
-
"regular"
|
13496 |
-
],
|
13497 |
-
"subsets": [
|
13498 |
-
"latin"
|
13499 |
-
],
|
13500 |
-
"version": "v6",
|
13501 |
-
"lastModified": "2016-02-23",
|
13502 |
-
"files": {
|
13503 |
-
"regular": "http://fonts.gstatic.com/s/voltaire/v6/WvqBzaGEBbRV-hrahwO2cA.ttf"
|
13504 |
-
}
|
13505 |
-
},
|
13506 |
-
{
|
13507 |
-
"kind": "webfonts#webfont",
|
13508 |
-
"family": "Waiting for the Sunrise",
|
13509 |
-
"category": "handwriting",
|
13510 |
-
"variants": [
|
13511 |
-
"regular"
|
13512 |
-
],
|
13513 |
-
"subsets": [
|
13514 |
-
"latin"
|
13515 |
-
],
|
13516 |
-
"version": "v7",
|
13517 |
-
"lastModified": "2016-02-23",
|
13518 |
-
"files": {
|
13519 |
-
"regular": "http://fonts.gstatic.com/s/waitingforthesunrise/v7/eNfH7kLpF1PZWpsetF-ha9TChrNgrDiT3Zy6yGf3FnM.ttf"
|
13520 |
-
}
|
13521 |
-
},
|
13522 |
-
{
|
13523 |
-
"kind": "webfonts#webfont",
|
13524 |
-
"family": "Wallpoet",
|
13525 |
-
"category": "display",
|
13526 |
-
"variants": [
|
13527 |
-
"regular"
|
13528 |
-
],
|
13529 |
-
"subsets": [
|
13530 |
-
"latin"
|
13531 |
-
],
|
13532 |
-
"version": "v8",
|
13533 |
-
"lastModified": "2016-02-23",
|
13534 |
-
"files": {
|
13535 |
-
"regular": "http://fonts.gstatic.com/s/wallpoet/v8/hmum4WuBN4A0Z_7367NDIg.ttf"
|
13536 |
-
}
|
13537 |
-
},
|
13538 |
-
{
|
13539 |
-
"kind": "webfonts#webfont",
|
13540 |
-
"family": "Walter Turncoat",
|
13541 |
-
"category": "handwriting",
|
13542 |
-
"variants": [
|
13543 |
-
"regular"
|
13544 |
-
],
|
13545 |
-
"subsets": [
|
13546 |
-
"latin"
|
13547 |
-
],
|
13548 |
-
"version": "v6",
|
13549 |
-
"lastModified": "2016-02-23",
|
13550 |
-
"files": {
|
13551 |
-
"regular": "http://fonts.gstatic.com/s/walterturncoat/v6/sG9su5g4GXy1KP73cU3hvQplL2YwNeota48DxFlGDUo.ttf"
|
13552 |
-
}
|
13553 |
-
},
|
13554 |
-
{
|
13555 |
-
"kind": "webfonts#webfont",
|
13556 |
-
"family": "Warnes",
|
13557 |
-
"category": "display",
|
13558 |
-
"variants": [
|
13559 |
-
"regular"
|
13560 |
-
],
|
13561 |
-
"subsets": [
|
13562 |
-
"latin-ext",
|
13563 |
-
"latin"
|
13564 |
-
],
|
13565 |
-
"version": "v6",
|
13566 |
-
"lastModified": "2016-02-23",
|
13567 |
-
"files": {
|
13568 |
-
"regular": "http://fonts.gstatic.com/s/warnes/v6/MXG7_Phj4YpzAXxKGItuBw.ttf"
|
13569 |
-
}
|
13570 |
-
},
|
13571 |
-
{
|
13572 |
-
"kind": "webfonts#webfont",
|
13573 |
-
"family": "Wellfleet",
|
13574 |
-
"category": "display",
|
13575 |
-
"variants": [
|
13576 |
-
"regular"
|
13577 |
-
],
|
13578 |
-
"subsets": [
|
13579 |
-
"latin-ext",
|
13580 |
-
"latin"
|
13581 |
-
],
|
13582 |
-
"version": "v4",
|
13583 |
-
"lastModified": "2016-02-23",
|
13584 |
-
"files": {
|
13585 |
-
"regular": "http://fonts.gstatic.com/s/wellfleet/v4/J5tOx72iFRPgHYpbK9J4XQ.ttf"
|
13586 |
-
}
|
13587 |
-
},
|
13588 |
-
{
|
13589 |
-
"kind": "webfonts#webfont",
|
13590 |
-
"family": "Wendy One",
|
13591 |
-
"category": "sans-serif",
|
13592 |
-
"variants": [
|
13593 |
-
"regular"
|
13594 |
-
],
|
13595 |
-
"subsets": [
|
13596 |
-
"latin-ext",
|
13597 |
-
"latin"
|
13598 |
-
],
|
13599 |
-
"version": "v4",
|
13600 |
-
"lastModified": "2016-02-23",
|
13601 |
-
"files": {
|
13602 |
-
"regular": "http://fonts.gstatic.com/s/wendyone/v4/R8CJT2oDXdMk_ZtuHTxoxw.ttf"
|
13603 |
-
}
|
13604 |
-
},
|
13605 |
-
{
|
13606 |
-
"kind": "webfonts#webfont",
|
13607 |
-
"family": "Wire One",
|
13608 |
-
"category": "sans-serif",
|
13609 |
-
"variants": [
|
13610 |
-
"regular"
|
13611 |
-
],
|
13612 |
-
"subsets": [
|
13613 |
-
"latin"
|
13614 |
-
],
|
13615 |
-
"version": "v7",
|
13616 |
-
"lastModified": "2016-02-23",
|
13617 |
-
"files": {
|
13618 |
-
"regular": "http://fonts.gstatic.com/s/wireone/v7/sRLhaQOQpWnvXwIx0CycQw.ttf"
|
13619 |
-
}
|
13620 |
-
},
|
13621 |
-
{
|
13622 |
-
"kind": "webfonts#webfont",
|
13623 |
-
"family": "Work Sans",
|
13624 |
-
"category": "sans-serif",
|
13625 |
-
"variants": [
|
13626 |
-
"100",
|
13627 |
-
"200",
|
13628 |
-
"300",
|
13629 |
-
"regular",
|
13630 |
-
"500",
|
13631 |
-
"600",
|
13632 |
-
"700",
|
13633 |
-
"800",
|
13634 |
-
"900"
|
13635 |
-
],
|
13636 |
-
"subsets": [
|
13637 |
-
"latin-ext",
|
13638 |
-
"latin"
|
13639 |
-
],
|
13640 |
-
"version": "v2",
|
13641 |
-
"lastModified": "2015-12-08",
|
13642 |
-
"files": {
|
13643 |
-
"100": "http://fonts.gstatic.com/s/worksans/v2/ZAhtNqLaAViKjGLajtuwWaCWcynf_cDxXwCLxiixG1c.ttf",
|
13644 |
-
"200": "http://fonts.gstatic.com/s/worksans/v2/u_mYNr_qYP37m7vgvmIYZy3USBnSvpkopQaUR-2r7iU.ttf",
|
13645 |
-
"300": "http://fonts.gstatic.com/s/worksans/v2/FD_Udbezj8EHXbdsqLUply3USBnSvpkopQaUR-2r7iU.ttf",
|
13646 |
-
"regular": "http://fonts.gstatic.com/s/worksans/v2/zVvigUiMvx7JVEnrJgc-5Q.ttf",
|
13647 |
-
"500": "http://fonts.gstatic.com/s/worksans/v2/Nbre-U_bp6Xktt8cpgwaJC3USBnSvpkopQaUR-2r7iU.ttf",
|
13648 |
-
"600": "http://fonts.gstatic.com/s/worksans/v2/z9rX03Xuz9ZNHTMg1_ghGS3USBnSvpkopQaUR-2r7iU.ttf",
|
13649 |
-
"700": "http://fonts.gstatic.com/s/worksans/v2/4udXuXg54JlPEP5iKO5AmS3USBnSvpkopQaUR-2r7iU.ttf",
|
13650 |
-
"800": "http://fonts.gstatic.com/s/worksans/v2/IQh-ap2Uqs7kl1YINeeEGi3USBnSvpkopQaUR-2r7iU.ttf",
|
13651 |
-
"900": "http://fonts.gstatic.com/s/worksans/v2/Hjn0acvjHfjY_vAK9Uc6gi3USBnSvpkopQaUR-2r7iU.ttf"
|
13652 |
-
}
|
13653 |
-
},
|
13654 |
-
{
|
13655 |
-
"kind": "webfonts#webfont",
|
13656 |
-
"family": "Yanone Kaffeesatz",
|
13657 |
-
"category": "sans-serif",
|
13658 |
-
"variants": [
|
13659 |
-
"200",
|
13660 |
-
"300",
|
13661 |
-
"regular",
|
13662 |
-
"700"
|
13663 |
-
],
|
13664 |
-
"subsets": [
|
13665 |
-
"latin-ext",
|
13666 |
-
"latin"
|
13667 |
-
],
|
13668 |
-
"version": "v7",
|
13669 |
-
"lastModified": "2016-02-23",
|
13670 |
-
"files": {
|
13671 |
-
"200": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRbq92v6XxU4pSv06GI0NsGc.ttf",
|
13672 |
-
"300": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRZlIwXPiNoNT_wxzJ2t3mTE.ttf",
|
13673 |
-
"regular": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/YDAoLskQQ5MOAgvHUQCcLdXn3cHbFGWU4T2HrSN6JF4.ttf",
|
13674 |
-
"700": "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRf2R4S6PlKaGXWPfWpHpcl0.ttf"
|
13675 |
-
}
|
13676 |
-
},
|
13677 |
-
{
|
13678 |
-
"kind": "webfonts#webfont",
|
13679 |
-
"family": "Yantramanav",
|
13680 |
-
"category": "sans-serif",
|
13681 |
-
"variants": [
|
13682 |
-
"100",
|
13683 |
-
"300",
|
13684 |
-
"regular",
|
13685 |
-
"500",
|
13686 |
-
"700",
|
13687 |
-
"900"
|
13688 |
-
],
|
13689 |
-
"subsets": [
|
13690 |
-
"devanagari",
|
13691 |
-
"latin-ext",
|
13692 |
-
"latin"
|
13693 |
-
],
|
13694 |
-
"version": "v1",
|
13695 |
-
"lastModified": "2015-06-03",
|
13696 |
-
"files": {
|
13697 |
-
"100": "http://fonts.gstatic.com/s/yantramanav/v1/Rs1I2PF4Z8GAb6qjgvr8wIAWxXGWZ3yJw6KhWS7MxOk.ttf",
|
13698 |
-
"300": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bC9-WlPSxbfiI49GsXo3q0g.ttf",
|
13699 |
-
"regular": "http://fonts.gstatic.com/s/yantramanav/v1/FwdziO-qWAO8pZg8e376kaCWcynf_cDxXwCLxiixG1c.ttf",
|
13700 |
-
"500": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bMCNfqCYlB_eIx7H1TVXe60.ttf",
|
13701 |
-
"700": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bHe1Pd76Vl7zRpE7NLJQ7XU.ttf",
|
13702 |
-
"900": "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bCenaqEuufTBk9XMKnKmgDA.ttf"
|
13703 |
-
}
|
13704 |
-
},
|
13705 |
-
{
|
13706 |
-
"kind": "webfonts#webfont",
|
13707 |
-
"family": "Yellowtail",
|
13708 |
-
"category": "handwriting",
|
13709 |
-
"variants": [
|
13710 |
-
"regular"
|
13711 |
-
],
|
13712 |
-
"subsets": [
|
13713 |
-
"latin"
|
13714 |
-
],
|
13715 |
-
"version": "v6",
|
13716 |
-
"lastModified": "2016-02-23",
|
13717 |
-
"files": {
|
13718 |
-
"regular": "http://fonts.gstatic.com/s/yellowtail/v6/HLrU6lhCTjXfLZ7X60LcB_esZW2xOQ-xsNqO47m55DA.ttf"
|
13719 |
-
}
|
13720 |
-
},
|
13721 |
-
{
|
13722 |
-
"kind": "webfonts#webfont",
|
13723 |
-
"family": "Yeseva One",
|
13724 |
-
"category": "display",
|
13725 |
-
"variants": [
|
13726 |
-
"regular"
|
13727 |
-
],
|
13728 |
-
"subsets": [
|
13729 |
-
"latin-ext",
|
13730 |
-
"cyrillic",
|
13731 |
-
"latin"
|
13732 |
-
],
|
13733 |
-
"version": "v10",
|
13734 |
-
"lastModified": "2016-02-23",
|
13735 |
-
"files": {
|
13736 |
-
"regular": "http://fonts.gstatic.com/s/yesevaone/v10/eenQQxvpzSA80JmisGcgX_esZW2xOQ-xsNqO47m55DA.ttf"
|
13737 |
-
}
|
13738 |
-
},
|
13739 |
-
{
|
13740 |
-
"kind": "webfonts#webfont",
|
13741 |
-
"family": "Yesteryear",
|
13742 |
-
"category": "handwriting",
|
13743 |
-
"variants": [
|
13744 |
-
"regular"
|
13745 |
-
],
|
13746 |
-
"subsets": [
|
13747 |
-
"latin"
|
13748 |
-
],
|
13749 |
-
"version": "v5",
|
13750 |
-
"lastModified": "2016-02-23",
|
13751 |
-
"files": {
|
13752 |
-
"regular": "http://fonts.gstatic.com/s/yesteryear/v5/dv09hP_ZrdjVOfZQXKXuZvesZW2xOQ-xsNqO47m55DA.ttf"
|
13753 |
-
}
|
13754 |
-
},
|
13755 |
-
{
|
13756 |
-
"kind": "webfonts#webfont",
|
13757 |
-
"family": "Zeyada",
|
13758 |
-
"category": "handwriting",
|
13759 |
-
"variants": [
|
13760 |
-
"regular"
|
13761 |
-
],
|
13762 |
-
"subsets": [
|
13763 |
-
"latin"
|
13764 |
-
],
|
13765 |
-
"version": "v6",
|
13766 |
-
"lastModified": "2016-02-23",
|
13767 |
-
"files": {
|
13768 |
-
"regular": "http://fonts.gstatic.com/s/zeyada/v6/hmonmGYYFwqTZQfG2nRswQ.ttf"
|
13769 |
-
}
|
13770 |
-
}
|
13771 |
-
]
|
13772 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/json/webfonts.php
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
return array("kind" => "webfonts#webfontList", "items" => array(array("kind" => "webfonts#webfont", "family" => "ABeeZee", "category" => "sans-serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/abeezee/v9/mE5BOuZKGln_Ex0uYKpIaw.ttf", "italic" => "http://fonts.gstatic.com/s/abeezee/v9/kpplLynmYgP0YtlJA3atRw.ttf")), array("kind" => "webfonts#webfont", "family" => "Abel", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/abel/v6/RpUKfqNxoyNe_ka23bzQ2A.ttf")), array("kind" => "webfonts#webfont", "family" => "Abril Fatface", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/abrilfatface/v8/X1g_KwGeBV3ajZIXQ9VnDojjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Aclonica", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/aclonica/v6/M6pHZMPwK3DiBSlo3jwAKQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Acme", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/acme/v5/-J6XNtAHPZBEbsifCdBt-g.ttf")), array("kind" => "webfonts#webfont", "family" => "Actor", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/actor/v6/ugMf40CrRK6Jf6Yz_xNSmQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Adamina", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/adamina/v8/RUQfOodOMiVVYqFZcSlT9w.ttf")), array("kind" => "webfonts#webfont", "family" => "Advent Pro", "category" => "sans-serif", "variants" => array("100", "200", "300", "regular", "500", "600", "700"), "subsets" => array("greek", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/adventpro/v4/87-JOpSUecTG50PBYK4ysi3USBnSvpkopQaUR-2r7iU.ttf", "200" => "http://fonts.gstatic.com/s/adventpro/v4/URTSSjIp0Wr-GrjxFdFWnGeudeTO44zf-ht3k-KNzwg.ttf", "300" => "http://fonts.gstatic.com/s/adventpro/v4/sJaBfJYSFgoB80OL1_66m0eOrDcLawS7-ssYqLr2Xp4.ttf", "500" => "http://fonts.gstatic.com/s/adventpro/v4/7kBth2-rT8tP40RmMMXMLJp-63r6doWhTEbsfBIRJ7A.ttf", "600" => "http://fonts.gstatic.com/s/adventpro/v4/3Jo-2maCzv2QLzQBzaKHV_pTEJqju4Hz1txDWij77d4.ttf", "700" => "http://fonts.gstatic.com/s/adventpro/v4/M4I6QiICt-ey_wZTpR2gKwJKKGfqHaYFsRG-T3ceEVo.ttf", "regular" => "http://fonts.gstatic.com/s/adventpro/v4/1NxMBeKVcNNH2H46AUR3wfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Aguafina Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/aguafinascript/v5/65g7cgMtMGnNlNyq_Z6CvMxLhO8OSNnfAp53LK1_iRs.ttf")), array("kind" => "webfonts#webfont", "family" => "Akronim", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/akronim/v5/qA0L2CSArk3tuOWE1AR1DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Aladin", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/aladin/v5/PyuJ5cVHkduO0j5fAMKvAA.ttf")), array("kind" => "webfonts#webfont", "family" => "Aldrich", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/aldrich/v6/kMMW1S56gFx7RP_mW1g-Eg.ttf")), array("kind" => "webfonts#webfont", "family" => "Alef", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin", "hebrew"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/alef/v6/VDgZJhEwudtOzOFQpZ8MEA.ttf", "regular" => "http://fonts.gstatic.com/s/alef/v6/ENvZ_P0HBDQxNZYCQO0lUA.ttf")), array("kind" => "webfonts#webfont", "family" => "Alegreya", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/alegreya/v7/5oZtdI5-wQwgAFrd9erCsaCWcynf_cDxXwCLxiixG1c.ttf", "900" => "http://fonts.gstatic.com/s/alegreya/v7/oQeMxX-vxGImzDgX6nxA7KCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/alegreya/v7/62J3atXd6bvMU4qO_ca-eA.ttf", "italic" => "http://fonts.gstatic.com/s/alegreya/v7/cbshnQGxwmlHBjUil7DaIfesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/alegreya/v7/IWi8e5bpnqhMRsZKTcTUWgJKKGfqHaYFsRG-T3ceEVo.ttf", "900italic" => "http://fonts.gstatic.com/s/alegreya/v7/-L71QLH_XqgYWaI1GbOVhp0EAVxt0G0biEntp43Qt6E.ttf")), array("kind" => "webfonts#webfont", "family" => "Alegreya SC", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/alegreyasc/v6/M9OIREoxDkvynwTpBAYUq3e1Pd76Vl7zRpE7NLJQ7XU.ttf", "900" => "http://fonts.gstatic.com/s/alegreyasc/v6/M9OIREoxDkvynwTpBAYUqyenaqEuufTBk9XMKnKmgDA.ttf", "regular" => "http://fonts.gstatic.com/s/alegreyasc/v6/3ozeFnTbygMK6PfHh8B-iqCWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/alegreyasc/v6/GOqmv3FLsJ2r6ZALMZVBmkeOrDcLawS7-ssYqLr2Xp4.ttf", "700italic" => "http://fonts.gstatic.com/s/alegreyasc/v6/5PCoU7IUfCicpKBJtBmP6c_zJjSACmk0BRPxQqhnNLU.ttf", "900italic" => "http://fonts.gstatic.com/s/alegreyasc/v6/5PCoU7IUfCicpKBJtBmP6U_yTOUGsoC54csJe1b-IRw.ttf")), array("kind" => "webfonts#webfont", "family" => "Alegreya Sans", "category" => "sans-serif", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic", "800", "800italic", "900", "900italic"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/alegreyasans/v3/TKyx_-JJ6MdpQruNk-t-PJFGFO4uyVFMfB6LZsii7kI.ttf", "300" => "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9acB1LjARzAvdqa1uQC32v70.ttf", "500" => "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9aQqQmZ7VjhwksfpNVG0pqGc.ttf", "700" => "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9aVCbmAUID8LN-q3pJpOk3Ys.ttf", "800" => "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9acxnD5BewVtRRHHljCwR2bM.ttf", "900" => "http://fonts.gstatic.com/s/alegreyasans/v3/11EDm-lum6tskJMBbdy9aW42xlVP-j5dagE7-AU2zwg.ttf", "100italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/gRkSP2lBpqoMTVxg7DmVn2cDnjsrnI9_xJ-5gnBaHsE.ttf", "300italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9CnfqlVoxTUFFx1C8tBqmbcg.ttf", "regular" => "http://fonts.gstatic.com/s/alegreyasans/v3/KYNzioYhDai7mTMnx_gDgn8f0n03UdmQgF_CLvNR2vg.ttf", "italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/TKyx_-JJ6MdpQruNk-t-PD4G9C9ttb0Oz5Cvf0qOitE.ttf", "500italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9Cs7DCVO6wo6i5LKIyZDzK40.ttf", "700italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9CpF66r9C4AnxxlBlGd7xY4g.ttf", "800italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9CicOAJ_9MkLPbDmrtXDPbIU.ttf", "900italic" => "http://fonts.gstatic.com/s/alegreyasans/v3/WfiXipsmjqRqsDBQ1bA9ChRaDUI9aE8-k7PrIG2iiuo.ttf")), array("kind" => "webfonts#webfont", "family" => "Alegreya Sans SC", "category" => "sans-serif", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic", "800", "800italic", "900", "900italic"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/trwFkDJLOJf6hqM93944kVnzStfdnFU-MXbO84aBs_M.ttf", "300" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR46-1IqtfxJspFjzJp0SaQRcI.ttf", "500" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR46_hHTluI57wqxl55RvSYo3s.ttf", "700" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR4600aId5t1FC-xZ8nmpa_XLk.ttf", "800" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR46wQgSHD3Lo1Mif2Wkk5swWA.ttf", "900" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/AjAmkoP1y0Vaad0UPPR461Rf9EWUSEX_PR1d_gLKfpM.ttf", "100italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/qG3gA9iy5RpXMH4crZboqqakMVR0XlJhO7VdJ8yYvA4.ttf", "300italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0CnTKaH808trtzttbEg4yVA.ttf", "regular" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/6kgb6ZvOagoVIRZyl8XV-EklWX-XdLVn1WTiuGuvKIU.ttf", "italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/trwFkDJLOJf6hqM93944kTfqo69HNOlCNZvbwAmUtiA.ttf", "500italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0NqVvxKdFVwqwzilqfVd39U.ttf", "700italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0IBYn3VD6xMEnodOh8pnFw4.ttf", "800italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0HStmCm6Rs90XeztCALm0H8.ttf", "900italic" => "http://fonts.gstatic.com/s/alegreyasanssc/v3/0VweK-TO3aQgazdxg8fs0IvtwEfTCJoOJugANj-jWDI.ttf")), array("kind" => "webfonts#webfont", "family" => "Alex Brush", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/alexbrush/v6/ooh3KJFbKJSUoIRWfiu8o_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Alfa Slab One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/alfaslabone/v5/Qx6FPcitRwTC_k88tLPc-Yjjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Alice", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/alice/v7/wZTAfivekBqIg-rk63nFvQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Alike", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/alike/v8/Ho8YpRKNk_202fwDiGNIyw.ttf")), array("kind" => "webfonts#webfont", "family" => "Alike Angular", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/alikeangular/v6/OpeCu4xxI3qO1C7CZcJtPT3XH2uEnVI__ynTBvNyki8.ttf")), array("kind" => "webfonts#webfont", "family" => "Allan", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/allan/v7/zSxQiwo7wgnr7KkMXhSiag.ttf", "regular" => "http://fonts.gstatic.com/s/allan/v7/T3lemhgZmLQkQI2Qc2bQHA.ttf")), array("kind" => "webfonts#webfont", "family" => "Allerta", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/allerta/v7/s9FOEuiJFTNbMe06ifzV8g.ttf")), array("kind" => "webfonts#webfont", "family" => "Allerta Stencil", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/allertastencil/v7/CdSZfRtHbQrBohqmzSdDYFf2eT4jUldwg_9fgfY_tHc.ttf")), array("kind" => "webfonts#webfont", "family" => "Allura", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/allura/v4/4hcqgZanyuJ2gMYWffIR6A.ttf")), array("kind" => "webfonts#webfont", "family" => "Almendra", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/almendra/v8/ZpLdQMj7Q2AFio4nNO6A76CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/almendra/v8/PDpbB-ZF7deXAAEYPkQOeg.ttf", "italic" => "http://fonts.gstatic.com/s/almendra/v8/CNWLyiDucqVKVgr4EMidi_esZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/almendra/v8/-tXHKMcnn6FqrhJV3l1e3QJKKGfqHaYFsRG-T3ceEVo.ttf")), array("kind" => "webfonts#webfont", "family" => "Almendra Display", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/almendradisplay/v6/2Zuu97WJ_ez-87yz5Ai8fF6uyC_qD11hrFQ6EGgTJWI.ttf")), array("kind" => "webfonts#webfont", "family" => "Almendra SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/almendrasc/v6/IuiLd8Fm9I6raSalxMoWeaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Amarante", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/amarante/v4/2dQHjIBWSpydit5zkJZnOw.ttf")), array("kind" => "webfonts#webfont", "family" => "Amaranth", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/amaranth/v6/j5OFHqadfxyLnQRxFeox6qCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/amaranth/v6/7VcBog22JBHsHXHdnnycTA.ttf", "italic" => "http://fonts.gstatic.com/s/amaranth/v6/UrJlRY9LcVERJSvggsdBqPesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/amaranth/v6/BHyuYFj9nqLFNvOvGh0xTwJKKGfqHaYFsRG-T3ceEVo.ttf")), array("kind" => "webfonts#webfont", "family" => "Amatic SC", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/amaticsc/v8/IDnkRTPGcrSVo50UyYNK7y3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/amaticsc/v8/MldbRWLFytvqxU1y81xSVg.ttf")), array("kind" => "webfonts#webfont", "family" => "Amethysta", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/amethysta/v4/1jEo9tOFIJDolAUpBnWbnA.ttf")), array("kind" => "webfonts#webfont", "family" => "Amiri", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("arabic", "latin"), "version" => "v7", "lastModified" => "2015-04-07", "files" => array("700" => "http://fonts.gstatic.com/s/amiri/v7/WQsR_moz-FNqVwGYgptqiA.ttf", "regular" => "http://fonts.gstatic.com/s/amiri/v7/ATARrPmSew75SlpOw2YABQ.ttf", "italic" => "http://fonts.gstatic.com/s/amiri/v7/3t1yTQlLUXBw8htrqlXBrw.ttf", "700italic" => "http://fonts.gstatic.com/s/amiri/v7/uF8aNEyD0bxMeTBg9bFDSPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Amita", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-03", "files" => array("700" => "http://fonts.gstatic.com/s/amita/v1/cIYA2Lzp7l2pcGsqpUidBg.ttf", "regular" => "http://fonts.gstatic.com/s/amita/v1/RhdhGBXSJqkHo6g7miTEcQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Anaheim", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/anaheim/v4/t-z8aXHMpgI2gjN_rIflKA.ttf")), array("kind" => "webfonts#webfont", "family" => "Andada", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/andada/v7/rSFaDqNNQBRw3y19MB5Y4w.ttf")), array("kind" => "webfonts#webfont", "family" => "Andika", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "vietnamese", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/andika/v7/oe-ag1G0lcqZ3IXfeEgaGg.ttf")), array("kind" => "webfonts#webfont", "family" => "Angkor", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/angkor/v8/DLpLgIS-8F10ecwKqCm95Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Annie Use Your Telescope", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/annieuseyourtelescope/v6/2cuiO5VmaR09C8SLGEQjGqbp7mtG8sPlcZvOaO8HBak.ttf")), array("kind" => "webfonts#webfont", "family" => "Anonymous Pro", "category" => "monospace", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/anonymouspro/v8/WDf5lZYgdmmKhO8E1AQud--Cz_5MeePnXDAcLNWyBME.ttf", "regular" => "http://fonts.gstatic.com/s/anonymouspro/v8/Zhfjj_gat3waL4JSju74E-V_5zh5b-_HiooIRUBwn1A.ttf", "italic" => "http://fonts.gstatic.com/s/anonymouspro/v8/q0u6LFHwttnT_69euiDbWKwIsuKDCXG0NQm7BvAgx-c.ttf", "700italic" => "http://fonts.gstatic.com/s/anonymouspro/v8/_fVr_XGln-cetWSUc-JpfA1LL9bfs7wyIp6F8OC9RxA.ttf")), array("kind" => "webfonts#webfont", "family" => "Antic", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/antic/v7/hEa8XCNM7tXGzD0Uk0AipA.ttf")), array("kind" => "webfonts#webfont", "family" => "Antic Didone", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/anticdidone/v4/r3nJcTDuOluOL6LGDV1vRy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Antic Slab", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/anticslab/v4/PSbJCTKkAS7skPdkd7AKEvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Anton", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/anton/v7/XIbCenm-W0IRHWYIh7CGUQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Arapey", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/arapey/v5/dqu823lrSYn8T2gApTdslA.ttf", "italic" => "http://fonts.gstatic.com/s/arapey/v5/pY-Xi5JNBpaWxy2tZhEm5A.ttf")), array("kind" => "webfonts#webfont", "family" => "Arbutus", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/arbutus/v5/Go_hurxoUsn5MnqNVQgodQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Arbutus Slab", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/arbutusslab/v4/6k3Yp6iS9l4jRIpynA8qMy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Architects Daughter", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/architectsdaughter/v6/RXTgOOQ9AAtaVOHxx0IUBMCy0EhZjHzu-y0e6uLf4Fg.ttf")), array("kind" => "webfonts#webfont", "family" => "Archivo Black", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/archivoblack/v4/WoAoVT7K3k7hHfxKbvB6B51XQG8isOYYJhPIYAyrESQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Archivo Narrow", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/archivonarrow/v5/M__Wu4PAmHf4YZvQM8tWsMLtdzs3iyjn_YuT226ZsLU.ttf", "regular" => "http://fonts.gstatic.com/s/archivonarrow/v5/DsLzC9scoPnrGiwYYMQXppTvAuddT2xDMbdz0mdLyZY.ttf", "italic" => "http://fonts.gstatic.com/s/archivonarrow/v5/vqsrtPCpTU3tJlKfuXP5zUpmlyBQEFfdE6dERLXdQGQ.ttf", "700italic" => "http://fonts.gstatic.com/s/archivonarrow/v5/wG6O733y5zHl4EKCOh8rSTg5KB8MNJ4uPAETq9naQO8.ttf")), array("kind" => "webfonts#webfont", "family" => "Arimo", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext", "hebrew"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/arimo/v9/ZItXugREyvV9LnbY_gxAmw.ttf", "regular" => "http://fonts.gstatic.com/s/arimo/v9/Gpeo80g-5ji2CcyXWnzh7g.ttf", "italic" => "http://fonts.gstatic.com/s/arimo/v9/_OdGbnX2-qQ96C4OjhyuPw.ttf", "700italic" => "http://fonts.gstatic.com/s/arimo/v9/__nOLWqmeXdhfr0g7GaFePesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Arizonia", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/arizonia/v6/yzJqkHZqryZBTM7RKYV9Wg.ttf")), array("kind" => "webfonts#webfont", "family" => "Armata", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/armata/v6/1H8FwGgIRrbYtxSfXhOHlQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Artifika", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/artifika/v6/Ekfp4H4QG7D-WsABDOyj8g.ttf")), array("kind" => "webfonts#webfont", "family" => "Arvo", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/arvo/v9/OB3FDST7U38u3OjPK_vvRQ.ttf", "regular" => "http://fonts.gstatic.com/s/arvo/v9/vvWPwz-PlZEwjOOIKqoZzA.ttf", "italic" => "http://fonts.gstatic.com/s/arvo/v9/id5a4BCjbenl5Gkqonw_Rw.ttf", "700italic" => "http://fonts.gstatic.com/s/arvo/v9/Hvl2MuWoXLaCy2v6MD4Yvw.ttf")), array("kind" => "webfonts#webfont", "family" => "Arya", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-05-21", "files" => array("700" => "http://fonts.gstatic.com/s/arya/v1/N13tgOvG7VTXawiI-fJiQA.ttf", "regular" => "http://fonts.gstatic.com/s/arya/v1/xEVqtU3v8QLospHKpDaYEw.ttf")), array("kind" => "webfonts#webfont", "family" => "Asap", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/asap/v4/o5RUA7SsJ80M8oDFBnrDbg.ttf", "regular" => "http://fonts.gstatic.com/s/asap/v4/2lf-1MDR8tsTpEtvJmr2hA.ttf", "italic" => "http://fonts.gstatic.com/s/asap/v4/mwxNHf8QS8gNWCAMwkJNIg.ttf", "700italic" => "http://fonts.gstatic.com/s/asap/v4/_rZz9y2oXc09jT5T6BexLQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Asar", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-17", "files" => array("regular" => "http://fonts.gstatic.com/s/asar/v1/mSmn3H5CcMA84CZ586X7WQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Asset", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/asset/v6/hfPmqY-JzuR1lULlQf9iTg.ttf")), array("kind" => "webfonts#webfont", "family" => "Astloch", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/astloch/v6/aPkhM2tL-tz1jX6aX2rvo_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/astloch/v6/fmbitVmHYLQP7MGPuFgpag.ttf")), array("kind" => "webfonts#webfont", "family" => "Asul", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/asul/v5/uO8uNmxaq87-DdPmkEg5Gg.ttf", "regular" => "http://fonts.gstatic.com/s/asul/v5/9qpsNR_OOwyOYyo2N0IbBw.ttf")), array("kind" => "webfonts#webfont", "family" => "Atomic Age", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/atomicage/v7/WvBMe4FxANIKpo6Oi0mVJ_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Aubrey", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/aubrey/v8/zo9w8klO8bmOQIMajQ2aTA.ttf")), array("kind" => "webfonts#webfont", "family" => "Audiowide", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/audiowide/v4/yGcwRZB6VmoYhPUYT-mEow.ttf")), array("kind" => "webfonts#webfont", "family" => "Autour One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/autourone/v4/2xmQBcg7FN72jaQRFZPIDvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Average", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/average/v4/aHUibBqdDbVYl5FM48pxyQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Average Sans", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/averagesans/v4/dnU3R-5A_43y5bIyLztPsS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Averia Gruesa Libre", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/averiagruesalibre/v4/10vbZTOoN6T8D-nvDzwRFyXcKHuZXlCN8VkWHpkUzKM.ttf")), array("kind" => "webfonts#webfont", "family" => "Averia Libre", "category" => "display", "variants" => array("300", "300italic", "regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/averialibre/v4/r6hGL8sSLm4dTzOPXgx5XacQoVhARpoaILP7amxE_8g.ttf", "700" => "http://fonts.gstatic.com/s/averialibre/v4/r6hGL8sSLm4dTzOPXgx5XUD2ttfZwueP-QU272T9-k4.ttf", "300italic" => "http://fonts.gstatic.com/s/averialibre/v4/I6wAYuAvOgT7el2ePj2nkina0FLWfcB-J_SAYmcAXaI.ttf", "regular" => "http://fonts.gstatic.com/s/averialibre/v4/rYVgHZZQICWnhjguGsBspC3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/averialibre/v4/1etzuoNxVHR8F533EkD1WfMZXuCXbOrAvx5R0IT5Oyo.ttf", "700italic" => "http://fonts.gstatic.com/s/averialibre/v4/I6wAYuAvOgT7el2ePj2nkvAs9-1nE9qOqhChW0m4nDE.ttf")), array("kind" => "webfonts#webfont", "family" => "Averia Sans Libre", "category" => "display", "variants" => array("300", "300italic", "regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/averiasanslibre/v4/_9-jTfQjaBsWAF_yp5z-V4CP_KG_g80s1KXiBtJHoNc.ttf", "700" => "http://fonts.gstatic.com/s/averiasanslibre/v4/_9-jTfQjaBsWAF_yp5z-V8QwVOrz1y5GihpZmtKLhlI.ttf", "300italic" => "http://fonts.gstatic.com/s/averiasanslibre/v4/o7BEIK-fG3Ykc5Rzteh88YuyGu4JqttndUh4gRKxic0.ttf", "regular" => "http://fonts.gstatic.com/s/averiasanslibre/v4/yRJpjT39KxACO9F31mj_LqV8_KRn4epKAjTFK1s1fsg.ttf", "italic" => "http://fonts.gstatic.com/s/averiasanslibre/v4/COEzR_NPBSUOl3pFwPbPoCZU2HnUZT1xVKaIrHDioao.ttf", "700italic" => "http://fonts.gstatic.com/s/averiasanslibre/v4/o7BEIK-fG3Ykc5Rzteh88bXy1DXgmJcVtKjM5UWamMs.ttf")), array("kind" => "webfonts#webfont", "family" => "Averia Serif Libre", "category" => "display", "variants" => array("300", "300italic", "regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/averiaseriflibre/v5/yvITAdr5D1nlsdFswJAb8SmC4gFJ2PHmfdVKEd_5S9M.ttf", "700" => "http://fonts.gstatic.com/s/averiaseriflibre/v5/yvITAdr5D1nlsdFswJAb8Q50KV5TaOVolur4zV2iZsg.ttf", "300italic" => "http://fonts.gstatic.com/s/averiaseriflibre/v5/YOLFXyye4sZt6AZk1QybCG2okl0bU63CauowU4iApig.ttf", "regular" => "http://fonts.gstatic.com/s/averiaseriflibre/v5/fdtF30xa_Erw0zAzOoG4BZqY66i8AUyI16fGqw0iAew.ttf", "italic" => "http://fonts.gstatic.com/s/averiaseriflibre/v5/o9qhvK9iT5iDWfyhQUe-6Ru_b0bTq5iipbJ9hhgHJ6U.ttf", "700italic" => "http://fonts.gstatic.com/s/averiaseriflibre/v5/YOLFXyye4sZt6AZk1QybCNxohRXP4tNDqG3X4Hqn21k.ttf")), array("kind" => "webfonts#webfont", "family" => "Bad Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("cyrillic", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/badscript/v5/cRyUs0nJ2eMQFHwBsZNRXfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Balthazar", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/balthazar/v5/WgbaSIs6dJAGXJ0qbz2xlw.ttf")), array("kind" => "webfonts#webfont", "family" => "Bangers", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bangers/v8/WAffdge5w99Xif-DLeqmcA.ttf")), array("kind" => "webfonts#webfont", "family" => "Basic", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/basic/v6/hNII2mS5Dxw5C0u_m3mXgA.ttf")), array("kind" => "webfonts#webfont", "family" => "Battambang", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-06", "files" => array("700" => "http://fonts.gstatic.com/s/battambang/v9/dezbRtMzfzAA99DmrCYRMgJKKGfqHaYFsRG-T3ceEVo.ttf", "regular" => "http://fonts.gstatic.com/s/battambang/v9/MzrUfQLefYum5vVGM3EZVPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Baumans", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/baumans/v5/o0bFdPW1H5kd5saqqOcoVg.ttf")), array("kind" => "webfonts#webfont", "family" => "Bayon", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/bayon/v8/yTubusjTnpNRZwA4_50iVw.ttf")), array("kind" => "webfonts#webfont", "family" => "Belgrano", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/belgrano/v6/iq8DUa2s7g6WRCeMiFrmtQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Belleza", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/belleza/v4/wchA3BWJlVqvIcSeNZyXew.ttf")), array("kind" => "webfonts#webfont", "family" => "BenchNine", "category" => "sans-serif", "variants" => array("300", "regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/benchnine/v4/ah9xtUy9wLQ3qnWa2p-piS3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/benchnine/v4/qZpi6ZVZg3L2RL_xoBLxWS3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/benchnine/v4/h3OAlYqU3aOeNkuXgH2Q2w.ttf")), array("kind" => "webfonts#webfont", "family" => "Bentham", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bentham/v6/5-Mo8Fe7yg5tzV0GlQIuzQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Berkshire Swash", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/berkshireswash/v4/4RZJjVRPjYnC2939hKCAimKfbtsIjCZP_edQljX9gR0.ttf")), array("kind" => "webfonts#webfont", "family" => "Bevan", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bevan/v7/Rtg3zDsCeQiaJ_Qno22OJA.ttf")), array("kind" => "webfonts#webfont", "family" => "Bigelow Rules", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bigelowrules/v4/FEJCPLwo07FS-6SK6Al50X8f0n03UdmQgF_CLvNR2vg.ttf")), array("kind" => "webfonts#webfont", "family" => "Bigshot One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bigshotone/v6/wSyZjBNTWDQHnvWE2jt6j6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Bilbo", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bilbo/v6/-ty-lPs5H7OIucWbnpFrkA.ttf")), array("kind" => "webfonts#webfont", "family" => "Bilbo Swash Caps", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bilboswashcaps/v7/UB_-crLvhx-PwGKW1oosDmYeFSdnSpRYv5h9gpdlD1g.ttf")), array("kind" => "webfonts#webfont", "family" => "Biryani", "category" => "sans-serif", "variants" => array("200", "300", "regular", "600", "700", "800", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-04-22", "files" => array("200" => "http://fonts.gstatic.com/s/biryani/v1/Xx38YzyTFF8n6mRS1Yd88vesZW2xOQ-xsNqO47m55DA.ttf", "300" => "http://fonts.gstatic.com/s/biryani/v1/u-bneRbizmFMd0VQp5Ze6vesZW2xOQ-xsNqO47m55DA.ttf", "600" => "http://fonts.gstatic.com/s/biryani/v1/1EdcPCVxBR2txgjrza6_YPesZW2xOQ-xsNqO47m55DA.ttf", "700" => "http://fonts.gstatic.com/s/biryani/v1/qN2MTZ0j1sKSCtfXLB2dR_esZW2xOQ-xsNqO47m55DA.ttf", "800" => "http://fonts.gstatic.com/s/biryani/v1/DJyziS7FEy441v22InYdevesZW2xOQ-xsNqO47m55DA.ttf", "900" => "http://fonts.gstatic.com/s/biryani/v1/trcLkrIut0lM_PPSyQfAMPesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/biryani/v1/W7bfR8-IY76Xz0QoB8L2xw.ttf")), array("kind" => "webfonts#webfont", "family" => "Bitter", "category" => "serif", "variants" => array("regular", "italic", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/bitter/v7/4dUtr_4BvHuoRU35suyOAg.ttf", "regular" => "http://fonts.gstatic.com/s/bitter/v7/w_BNdJvVZDRmqy5aSfB2kQ.ttf", "italic" => "http://fonts.gstatic.com/s/bitter/v7/TC0FZEVzXQIGgzmRfKPZbA.ttf")), array("kind" => "webfonts#webfont", "family" => "Black Ops One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/blackopsone/v7/2XW-DmDsGbDLE372KrMW1Yjjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Bokor", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/bokor/v8/uAKdo0A85WW23Gs6mcbw7A.ttf")), array("kind" => "webfonts#webfont", "family" => "Bonbon", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bonbon/v7/IW3u1yzG1knyW5oz0s9_6Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Boogaloo", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/boogaloo/v6/4Wu1tvFMoB80fSu8qLgQfQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Bowlby One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bowlbyone/v7/eKpHjHfjoxM2bX36YNucefesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Bowlby One SC", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bowlbyonesc/v8/8ZkeXftTuzKBtmxOYXoRedDkZCMxWJecxjvKm2f8MJw.ttf")), array("kind" => "webfonts#webfont", "family" => "Brawler", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/brawler/v6/3gfSw6imxQnQxweVITqUrg.ttf")), array("kind" => "webfonts#webfont", "family" => "Bree Serif", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/breeserif/v5/5h9crBVIrvZqgf34FHcnEfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Bubblegum Sans", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bubblegumsans/v5/Y9iTUUNz6lbl6TrvV4iwsytnKWgpfO2iSkLzTz-AABg.ttf")), array("kind" => "webfonts#webfont", "family" => "Bubbler One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/bubblerone/v4/e8S0qevkZAFaBybtt_SU4qCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Buda", "category" => "display", "variants" => array("300"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/buda/v6/hLtAmNUmEMJH2yx7NGUjnA.ttf")), array("kind" => "webfonts#webfont", "family" => "Buenard", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/buenard/v7/yUlGE115dGr7O9w9FlP3UvesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/buenard/v7/NSpMPGKAUgrLrlstYVvIXQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Butcherman", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/butcherman/v7/bxiJmD567sPBVpJsT0XR0vesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Butterfly Kids", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/butterflykids/v4/J4NTF5M25htqeTffYImtlUZaDk62iwTBnbnvwSjZciA.ttf")), array("kind" => "webfonts#webfont", "family" => "Cabin", "category" => "sans-serif", "variants" => array("regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/cabin/v8/HgsCQ-k3_Z_uQ86aFolNBg.ttf", "600" => "http://fonts.gstatic.com/s/cabin/v8/eUDAvKhBtmTCkeVBsFk34A.ttf", "700" => "http://fonts.gstatic.com/s/cabin/v8/4EKhProuY1hq_WCAomq9Dg.ttf", "regular" => "http://fonts.gstatic.com/s/cabin/v8/XeuAFYo2xAPHxZGBbQtHhA.ttf", "italic" => "http://fonts.gstatic.com/s/cabin/v8/0tJ9k3DI5xC4GBgs1E_Jxw.ttf", "500italic" => "http://fonts.gstatic.com/s/cabin/v8/50sjhrGE0njyO-7mGDhGP_esZW2xOQ-xsNqO47m55DA.ttf", "600italic" => "http://fonts.gstatic.com/s/cabin/v8/sFQpQDBd3G2om0Nl5dD2CvesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/cabin/v8/K83QKi8MOKLEqj6bgZ7LrfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Cabin Condensed", "category" => "sans-serif", "variants" => array("regular", "500", "600", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/cabincondensed/v7/Ez4zJbsGr2BgXcNUWBVgEARL_-ABKXdjsJSPT0lc2Bk.ttf", "600" => "http://fonts.gstatic.com/s/cabincondensed/v7/Ez4zJbsGr2BgXcNUWBVgELS5sSASxc8z4EQTQj7DCAI.ttf", "700" => "http://fonts.gstatic.com/s/cabincondensed/v7/Ez4zJbsGr2BgXcNUWBVgEMAWgzcA047xWLixhLCofl8.ttf", "regular" => "http://fonts.gstatic.com/s/cabincondensed/v7/B0txb0blf2N29WdYPJjMSiQPsWWoiv__AzYJ9Zzn9II.ttf")), array("kind" => "webfonts#webfont", "family" => "Cabin Sketch", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cabinsketch/v8/ki3SSN5HMOO0-IOLOj069ED2ttfZwueP-QU272T9-k4.ttf", "regular" => "http://fonts.gstatic.com/s/cabinsketch/v8/d9fijO34zQajqQvl3YHRCS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Caesar Dressing", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/caesardressing/v5/2T_WzBgE2Xz3FsyJMq34T9gR43u4FvCuJwIfF5Zxl6Y.ttf")), array("kind" => "webfonts#webfont", "family" => "Cagliostro", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cagliostro/v5/i85oXbtdSatNEzss99bpj_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Calligraffitti", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/calligraffitti/v7/vLVN2Y-z65rVu1R7lWdvyDXz_orj3gX0_NzfmYulrko.ttf")), array("kind" => "webfonts#webfont", "family" => "Cambay", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cambay/v1/jw9niBxa04eEhnSwTWCEgw.ttf", "regular" => "http://fonts.gstatic.com/s/cambay/v1/etU9Bab4VuhzS-OKsb1VXg.ttf", "italic" => "http://fonts.gstatic.com/s/cambay/v1/ZEz9yNqpEOgejaw1rBhugQ.ttf", "700italic" => "http://fonts.gstatic.com/s/cambay/v1/j-5v_uUr0NXTumWN0siOiaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Cambo", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cambo/v5/PnwpRuTdkYCf8qk4ajmNRA.ttf")), array("kind" => "webfonts#webfont", "family" => "Candal", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/candal/v6/x44dDW28zK7GR1gGDBmj9g.ttf")), array("kind" => "webfonts#webfont", "family" => "Cantarell", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cantarell/v6/Yir4ZDsCn4g1kWopdg-ehC3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/cantarell/v6/p5ydP_uWQ5lsFzcP_XVMEw.ttf", "italic" => "http://fonts.gstatic.com/s/cantarell/v6/DTCLtOSqP-7dgM-V_xKUjqCWcynf_cDxXwCLxiixG1c.ttf", "700italic" => "http://fonts.gstatic.com/s/cantarell/v6/weehrwMeZBXb0QyrWnRwFXe1Pd76Vl7zRpE7NLJQ7XU.ttf")), array("kind" => "webfonts#webfont", "family" => "Cantata One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-03-22", "files" => array("regular" => "http://fonts.gstatic.com/s/cantataone/v6/-a5FDvnBqaBMDaGgZYnEfqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Cantora One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cantoraone/v5/oI-DS62RbHI8ZREjp73ehqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Capriola", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/capriola/v4/JxXPlkdzWwF9Cwelbvi9jA.ttf")), array("kind" => "webfonts#webfont", "family" => "Cardo", "category" => "serif", "variants" => array("regular", "italic", "700"), "subsets" => array("greek", "latin-ext", "latin", "greek-ext"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cardo/v8/lQN30weILimrKvp8rZhF1w.ttf", "regular" => "http://fonts.gstatic.com/s/cardo/v8/jbkF2_R0FKUEZTq5dwSknQ.ttf", "italic" => "http://fonts.gstatic.com/s/cardo/v8/pcv4Np9tUkq0YREYUcEEJQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Carme", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/carme/v7/08E0NP1eRBEyFRUadmMfgA.ttf")), array("kind" => "webfonts#webfont", "family" => "Carrois Gothic", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/carroisgothic/v4/GCgb7bssGpwp7V5ynxmWy2x3d0cwUleGuRTmCYfCUaM.ttf")), array("kind" => "webfonts#webfont", "family" => "Carrois Gothic SC", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/carroisgothicsc/v4/bVp4nhwFIXU-r3LqUR8DSJTdPW1ioadGi2uRiKgJVCY.ttf")), array("kind" => "webfonts#webfont", "family" => "Carter One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/carterone/v8/5X_LFvdbcB7OBG7hBgZ7fPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Catamaran", "category" => "sans-serif", "variants" => array("100", "200", "300", "regular", "500", "600", "700", "800", "900"), "subsets" => array("tamil", "latin-ext", "latin"), "version" => "v1", "lastModified" => "2015-08-06", "files" => array("100" => "http://fonts.gstatic.com/s/catamaran/v1/ilWHBiy0krUPdlmYxDuqC6CWcynf_cDxXwCLxiixG1c.ttf", "200" => "http://fonts.gstatic.com/s/catamaran/v1/hFc-HKSsGk6M-psujei1MC3USBnSvpkopQaUR-2r7iU.ttf", "300" => "http://fonts.gstatic.com/s/catamaran/v1/Aaag4ccR7Oh_4eai-jbrYC3USBnSvpkopQaUR-2r7iU.ttf", "500" => "http://fonts.gstatic.com/s/catamaran/v1/83WSX3F86qsvj1Z4EI0tQi3USBnSvpkopQaUR-2r7iU.ttf", "600" => "http://fonts.gstatic.com/s/catamaran/v1/a9PlHHnuBWiGGk0TwuFKTi3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/catamaran/v1/PpgVtUHUdnBZYNpnzGbScy3USBnSvpkopQaUR-2r7iU.ttf", "800" => "http://fonts.gstatic.com/s/catamaran/v1/6VjB_uSfn3DZ93IQv58CmC3USBnSvpkopQaUR-2r7iU.ttf", "900" => "http://fonts.gstatic.com/s/catamaran/v1/5ys9TqpQc9Q6gHqbSox6py3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/catamaran/v1/MdNkM-DU8f6R-25Nxpr_XA.ttf")), array("kind" => "webfonts#webfont", "family" => "Caudex", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("greek", "latin-ext", "latin", "greek-ext"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/caudex/v6/PetCI4GyQ5Q3LiOzUu_mMg.ttf", "regular" => "http://fonts.gstatic.com/s/caudex/v6/PWEexiHLDmQbn2b1OPZWfg.ttf", "italic" => "http://fonts.gstatic.com/s/caudex/v6/XjMZF6XCisvV3qapD4oJdw.ttf", "700italic" => "http://fonts.gstatic.com/s/caudex/v6/yT8YeHLjaJvQXlUEYOA8gqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Caveat", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v1", "lastModified" => "2015-10-05", "files" => array("700" => "http://fonts.gstatic.com/s/caveat/v1/LkaFtQENGJry2eUMwGRTeA.ttf", "regular" => "http://fonts.gstatic.com/s/caveat/v1/8I23b6N-6rRVbh-C_Vx3yA.ttf")), array("kind" => "webfonts#webfont", "family" => "Caveat Brush", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v1", "lastModified" => "2015-10-05", "files" => array("regular" => "http://fonts.gstatic.com/s/caveatbrush/v1/_d7bgsk3hfC4DXnUEeYKsy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Cedarville Cursive", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cedarvillecursive/v7/cuCe6HrkcqrWTWTUE7dw-41zwq9-z_Lf44CzRAA0d0Y.ttf")), array("kind" => "webfonts#webfont", "family" => "Ceviche One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/cevicheone/v7/WOaXIMBD4VYMy39MsobJhKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Changa One", "category" => "display", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/changaone/v9/dr4qjce4W3kxFrZRkVD87fesZW2xOQ-xsNqO47m55DA.ttf", "italic" => "http://fonts.gstatic.com/s/changaone/v9/wJVQlUs1lAZel-WdTo2U9y3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Chango", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/chango/v5/3W3AeMMtRTH08t5qLOjBmg.ttf")), array("kind" => "webfonts#webfont", "family" => "Chau Philomene One", "category" => "sans-serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/chauphilomeneone/v4/KKc5egCL-a2fFVoOA2x6tBFi5dxgSTdxqnMJgWkBJcg.ttf", "italic" => "http://fonts.gstatic.com/s/chauphilomeneone/v4/eJj1PY_iN4KiIuyOvtMHJP6uyLkxyiC4WcYA74sfquE.ttf")), array("kind" => "webfonts#webfont", "family" => "Chela One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/chelaone/v5/h5O0dEnpnIq6jQnWxZybrA.ttf")), array("kind" => "webfonts#webfont", "family" => "Chelsea Market", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/chelseamarket/v4/qSdzwh2A4BbNemy78sJLfAAI1i8fIftCBXsBF2v9UMI.ttf")), array("kind" => "webfonts#webfont", "family" => "Chenla", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/chenla/v9/aLNpdAUDq2MZbWz2U1a16g.ttf")), array("kind" => "webfonts#webfont", "family" => "Cherry Cream Soda", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cherrycreamsoda/v6/OrD-AUnFcZeeKa6F_c0_WxOiHiuAPYA9ry3O1RG2XIU.ttf")), array("kind" => "webfonts#webfont", "family" => "Cherry Swash", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cherryswash/v4/-CfyMyQqfucZPQNB0nvYyED2ttfZwueP-QU272T9-k4.ttf", "regular" => "http://fonts.gstatic.com/s/cherryswash/v4/HqOk7C7J1TZ5i3L-ejF0vi3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Chewy", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/chewy/v7/hcDN5cvQdIu6Bx4mg_TSyw.ttf")), array("kind" => "webfonts#webfont", "family" => "Chicle", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/chicle/v5/xg4q57Ut9ZmyFwLp51JLgg.ttf")), array("kind" => "webfonts#webfont", "family" => "Chivo", "category" => "sans-serif", "variants" => array("regular", "italic", "900", "900italic"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("900" => "http://fonts.gstatic.com/s/chivo/v7/JAdkiWd46QCW4vOsj3dzTA.ttf", "regular" => "http://fonts.gstatic.com/s/chivo/v7/L88PEuzS9eRfHRZhAPhZyw.ttf", "italic" => "http://fonts.gstatic.com/s/chivo/v7/Oe3-Q-a2kBzPnhHck_baMg.ttf", "900italic" => "http://fonts.gstatic.com/s/chivo/v7/LoszYnE86q2wJEOjCigBQ_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Chonburi", "category" => "display", "variants" => array("regular"), "subsets" => array("vietnamese", "latin-ext", "thai", "latin"), "version" => "v1", "lastModified" => "2015-08-06", "files" => array("regular" => "http://fonts.gstatic.com/s/chonburi/v1/jd9PfbW0x_8Myt_XeUxvSQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Cinzel", "category" => "serif", "variants" => array("regular", "700", "900"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cinzel/v4/nYcFQ6_3pf_6YDrOFjBR8Q.ttf", "900" => "http://fonts.gstatic.com/s/cinzel/v4/FTBj72ozM2cEOSxiVsRb3A.ttf", "regular" => "http://fonts.gstatic.com/s/cinzel/v4/GF7dy_Nc-a6EaHYSyGd-EA.ttf")), array("kind" => "webfonts#webfont", "family" => "Cinzel Decorative", "category" => "display", "variants" => array("regular", "700", "900"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cinzeldecorative/v4/pXhIVnhFtL_B9Vb1wq2F95-YYVDmZkJErg0zgx9XuZI.ttf", "900" => "http://fonts.gstatic.com/s/cinzeldecorative/v4/pXhIVnhFtL_B9Vb1wq2F97Khqbv0zQZa0g-9HOXAalU.ttf", "regular" => "http://fonts.gstatic.com/s/cinzeldecorative/v4/fmgK7oaJJIXAkhd9798yQgT5USbJx2F82lQbogPy2bY.ttf")), array("kind" => "webfonts#webfont", "family" => "Clicker Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/clickerscript/v4/Zupmk8XwADjufGxWB9KThBnpV0hQCek3EmWnCPrvGRM.ttf")), array("kind" => "webfonts#webfont", "family" => "Coda", "category" => "display", "variants" => array("regular", "800"), "subsets" => array("latin-ext", "latin"), "version" => "v11", "lastModified" => "2016-02-23", "files" => array("800" => "http://fonts.gstatic.com/s/coda/v11/6ZIw0sbALY0KTMWllZB3hQ.ttf", "regular" => "http://fonts.gstatic.com/s/coda/v11/yHDvulhg-P-p2KRgRrnUYw.ttf")), array("kind" => "webfonts#webfont", "family" => "Coda Caption", "category" => "sans-serif", "variants" => array("800"), "subsets" => array("latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("800" => "http://fonts.gstatic.com/s/codacaption/v9/YDl6urZh-DUFhiMBTgAnz_qsay_1ZmRGmC8pVRdIfAg.ttf")), array("kind" => "webfonts#webfont", "family" => "Codystar", "category" => "display", "variants" => array("300", "regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/codystar/v4/EVaUzfJkcb8Zqx9kzQLXqqCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/codystar/v4/EN-CPFKYowSI7SuR7-0cZA.ttf")), array("kind" => "webfonts#webfont", "family" => "Combo", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/combo/v5/Nab98KjR3JZSSPGtzLyXNw.ttf")), array("kind" => "webfonts#webfont", "family" => "Comfortaa", "category" => "display", "variants" => array("300", "regular", "700"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/comfortaa/v7/r_tUZNl0G8xCoOmp_JkSCi3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/comfortaa/v7/fND5XPYKrF2tQDwwfWZJIy3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/comfortaa/v7/lZx6C1VViPgSOhCBUP7hXA.ttf")), array("kind" => "webfonts#webfont", "family" => "Coming Soon", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/comingsoon/v6/Yz2z3IAe2HSQAOWsSG8COKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Concert One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/concertone/v7/N5IWCIGhUNdPZn_efTxKN6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Condiment", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/condiment/v4/CstmdiPpgFSV0FUNL5LrJA.ttf")), array("kind" => "webfonts#webfont", "family" => "Content", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-06", "files" => array("700" => "http://fonts.gstatic.com/s/content/v8/7PivP8Zvs2qn6F6aNbSQe_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/content/v8/l8qaLjygvOkDEU2G6-cjfQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Contrail One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/contrailone/v6/b41KxjgiyqX-hkggANDU6C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Convergence", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/convergence/v5/eykrGz1NN_YpQmkAZjW-qKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Cookie", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cookie/v7/HxeUC62y_YdDbiFlze357A.ttf")), array("kind" => "webfonts#webfont", "family" => "Copse", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/copse/v6/wikLrtPGjZDvZ5w2i5HLWg.ttf")), array("kind" => "webfonts#webfont", "family" => "Corben", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/corben/v9/lirJaFSQWdGQuV--fksg5g.ttf", "regular" => "http://fonts.gstatic.com/s/corben/v9/tTysMZkt-j8Y5yhkgsoajQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Courgette", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/courgette/v4/2YO0EYtyE9HUPLZprahpZA.ttf")), array("kind" => "webfonts#webfont", "family" => "Cousine", "category" => "monospace", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext", "hebrew"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cousine/v10/FXEOnNUcCzhdtoBxiq-lovesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/cousine/v10/GYX4bPXObJNJo63QJEUnLg.ttf", "italic" => "http://fonts.gstatic.com/s/cousine/v10/1WtIuajLoo8vjVwsrZ3eOg.ttf", "700italic" => "http://fonts.gstatic.com/s/cousine/v10/y_AZ5Sz-FwL1lux2xLSTZS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Coustard", "category" => "serif", "variants" => array("regular", "900"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("900" => "http://fonts.gstatic.com/s/coustard/v6/W02OCWO6OfMUHz6aVyegQ6CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/coustard/v6/iO2Rs5PmqAEAXoU3SkMVBg.ttf")), array("kind" => "webfonts#webfont", "family" => "Covered By Your Grace", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/coveredbyyourgrace/v6/6ozZp4BPlrbDRWPe3EBGA6CVUMdvnk-GcAiZQrX9Gek.ttf")), array("kind" => "webfonts#webfont", "family" => "Crafty Girls", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/craftygirls/v5/0Sv8UWFFdhQmesHL32H8oy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Creepster", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/creepster/v5/0vdr5kWJ6aJlOg5JvxnXzQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Crete Round", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/creteround/v5/B8EwN421qqOCCT8vOH4wJ6CWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/creteround/v5/5xAt7XK2vkUdjhGtt98unUeOrDcLawS7-ssYqLr2Xp4.ttf")), array("kind" => "webfonts#webfont", "family" => "Crimson Text", "category" => "serif", "variants" => array("regular", "italic", "600", "600italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("600" => "http://fonts.gstatic.com/s/crimsontext/v6/rEy5tGc5HdXy56Xvd4f3I2v8CylhIUtwUiYO7Z2wXbE.ttf", "700" => "http://fonts.gstatic.com/s/crimsontext/v6/rEy5tGc5HdXy56Xvd4f3I0D2ttfZwueP-QU272T9-k4.ttf", "regular" => "http://fonts.gstatic.com/s/crimsontext/v6/3IFMwfRa07i-auYR-B-zNS3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/crimsontext/v6/a5QZnvmn5amyNI-t2BMkWPMZXuCXbOrAvx5R0IT5Oyo.ttf", "600italic" => "http://fonts.gstatic.com/s/crimsontext/v6/4j4TR-EfnvCt43InYpUNDIR-5-urNOGAobhAyctHvW8.ttf", "700italic" => "http://fonts.gstatic.com/s/crimsontext/v6/4j4TR-EfnvCt43InYpUNDPAs9-1nE9qOqhChW0m4nDE.ttf")), array("kind" => "webfonts#webfont", "family" => "Croissant One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/croissantone/v4/mPjsOObnC77fp1cvZlOfIYjjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Crushed", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/crushed/v6/aHwSejs3Kt0Lg95u7j32jA.ttf")), array("kind" => "webfonts#webfont", "family" => "Cuprum", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/cuprum/v7/6tl3_FkDeXSD72oEHuJh4w.ttf", "regular" => "http://fonts.gstatic.com/s/cuprum/v7/JgXs0F_UiaEdAS74msmFNg.ttf", "italic" => "http://fonts.gstatic.com/s/cuprum/v7/cLEz0KV6OxInnktSzpk58g.ttf", "700italic" => "http://fonts.gstatic.com/s/cuprum/v7/bnkXaBfoYvaJ75axRPSwVKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Cutive", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cutive/v8/G2bW-ImyOCwKxBkLyz39YQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Cutive Mono", "category" => "monospace", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/cutivemono/v4/ncWQtFVKcSs8OW798v30k6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Damion", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/damion/v6/13XtECwKxhD_VrOqXL4SiA.ttf")), array("kind" => "webfonts#webfont", "family" => "Dancing Script", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/dancingscript/v6/KGBfwabt0ZRLA5W1ywjowb_dAmXiKjTPGCuO6G2MbfA.ttf", "regular" => "http://fonts.gstatic.com/s/dancingscript/v6/DK0eTGXiZjN6yA8zAEyM2RnpV0hQCek3EmWnCPrvGRM.ttf")), array("kind" => "webfonts#webfont", "family" => "Dangrek", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/dangrek/v8/LOaFhBT-EHNxZjV8DAW_ew.ttf")), array("kind" => "webfonts#webfont", "family" => "Dawning of a New Day", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/dawningofanewday/v7/JiDsRhiKZt8uz3NJ5xA06gXLnohmOYWQZqo_sW8GLTk.ttf")), array("kind" => "webfonts#webfont", "family" => "Days One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/daysone/v6/kzwZjNhc1iabMsrc_hKBIA.ttf")), array("kind" => "webfonts#webfont", "family" => "Dekko", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/dekko/v2/AKtgABKC1rUxgIgS-bpojw.ttf")), array("kind" => "webfonts#webfont", "family" => "Delius", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/delius/v6/TQA163qafki2-gV-B6F_ag.ttf")), array("kind" => "webfonts#webfont", "family" => "Delius Swash Caps", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/deliusswashcaps/v8/uXyrEUnoWApxIOICunRq7yIrxb5zDVgU2N3VzXm7zq4.ttf")), array("kind" => "webfonts#webfont", "family" => "Delius Unicase", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/deliusunicase/v9/7FTMTITcb4dxUp99FAdTqNy5weKXdcrx-wE0cgECMq8.ttf", "regular" => "http://fonts.gstatic.com/s/deliusunicase/v9/b2sKujV3Q48RV2PQ0k1vqu6rPKfVZo7L2bERcf0BDns.ttf")), array("kind" => "webfonts#webfont", "family" => "Della Respira", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/dellarespira/v4/F4E6Lo_IZ6L9AJCcbqtDVeDcg5akpSnIcsPhLOFv7l8.ttf")), array("kind" => "webfonts#webfont", "family" => "Denk One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/denkone/v4/TdXOeA4eA_hEx4W8Sh9wPw.ttf")), array("kind" => "webfonts#webfont", "family" => "Devonshire", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/devonshire/v5/I3ct_2t12SYizP8ZC-KFi_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Dhurjati", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/dhurjati/v4/uV6jO5e2iFMbGB0z79Cy5g.ttf")), array("kind" => "webfonts#webfont", "family" => "Didact Gothic", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/didactgothic/v7/v8_72sD3DYMKyM0dn3LtWotBLojGU5Qdl8-5NL4v70w.ttf")), array("kind" => "webfonts#webfont", "family" => "Diplomata", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-03-14", "files" => array("regular" => "http://fonts.gstatic.com/s/diplomata/v7/u-ByBiKgN6rTMA36H3kcKg.ttf")), array("kind" => "webfonts#webfont", "family" => "Diplomata SC", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/diplomatasc/v5/JdVwAwfE1a_pahXjk5qpNi3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Domine", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/domine/v4/phBcG1ZbQFxUIt18hPVxnw.ttf", "regular" => "http://fonts.gstatic.com/s/domine/v4/wfVIgamVFjMNQAEWurCiHA.ttf")), array("kind" => "webfonts#webfont", "family" => "Donegal One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/donegalone/v4/6kN4-fDxz7T9s5U61HwfF6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Doppio One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/doppioone/v4/WHZ3HJQotpk_4aSMNBo_t_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Dorsa", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/dorsa/v7/wCc3cUe6XrmG2LQE6GlIrw.ttf")), array("kind" => "webfonts#webfont", "family" => "Dosis", "category" => "sans-serif", "variants" => array("200", "300", "regular", "500", "600", "700", "800"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/dosis/v4/ztftab0r6hcd7AeurUGrSQ.ttf", "300" => "http://fonts.gstatic.com/s/dosis/v4/awIB6L0h5mb0plIKorXmuA.ttf", "500" => "http://fonts.gstatic.com/s/dosis/v4/ruEXDOFMxDPGnjCBKRqdAQ.ttf", "600" => "http://fonts.gstatic.com/s/dosis/v4/KNAswRNwm3tfONddYyidxg.ttf", "700" => "http://fonts.gstatic.com/s/dosis/v4/AEEAj0ONidK8NQQMBBlSig.ttf", "800" => "http://fonts.gstatic.com/s/dosis/v4/nlrKd8E69vvUU39XGsvR7Q.ttf", "regular" => "http://fonts.gstatic.com/s/dosis/v4/rJRlixu-w0JZ1MyhJpao_Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Dr Sugiyama", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/drsugiyama/v5/S5Yx3MIckgoyHhhS4C9Tv6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Droid Sans", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/droidsans/v6/EFpQQyG9GqCrobXxL-KRMQJKKGfqHaYFsRG-T3ceEVo.ttf", "regular" => "http://fonts.gstatic.com/s/droidsans/v6/rS9BT6-asrfjpkcV3DXf__esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Droid Sans Mono", "category" => "monospace", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/droidsansmono/v7/ns-m2xQYezAtqh7ai59hJcwD6PD0c3_abh9zHKQtbGU.ttf")), array("kind" => "webfonts#webfont", "family" => "Droid Serif", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/droidserif/v6/QQt14e8dY39u-eYBZmppwXe1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/droidserif/v6/DgAtPy6rIVa2Zx3Xh9KaNaCWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5890eOrDcLawS7-ssYqLr2Xp4.ttf", "700italic" => "http://fonts.gstatic.com/s/droidserif/v6/c92rD_x0V1LslSFt3-QEps_zJjSACmk0BRPxQqhnNLU.ttf")), array("kind" => "webfonts#webfont", "family" => "Duru Sans", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/durusans/v9/xn7iYH8xwmSyTvEV_HOxTw.ttf")), array("kind" => "webfonts#webfont", "family" => "Dynalight", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/dynalight/v5/-CWsIe8OUDWTIHjSAh41kA.ttf")), array("kind" => "webfonts#webfont", "family" => "EB Garamond", "category" => "serif", "variants" => array("regular"), "subsets" => array("cyrillic", "vietnamese", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ebgaramond/v7/CDR0kuiFK7I1OZ2hSdR7G6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Eagle Lake", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/eaglelake/v4/ZKlYin7caemhx9eSg6RvPfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Eater", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/eater/v5/gm6f3OmYEdbs3lPQtUfBkA.ttf")), array("kind" => "webfonts#webfont", "family" => "Economica", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/economica/v4/UK4l2VEpwjv3gdcwbwXE9C3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/economica/v4/G4rJRujzZbq9Nxngu9l3hg.ttf", "italic" => "http://fonts.gstatic.com/s/economica/v4/p5O9AVeUqx_n35xQRinNYaCWcynf_cDxXwCLxiixG1c.ttf", "700italic" => "http://fonts.gstatic.com/s/economica/v4/ac5dlUsedQ03RqGOeay-3Xe1Pd76Vl7zRpE7NLJQ7XU.ttf")), array("kind" => "webfonts#webfont", "family" => "Eczar", "category" => "serif", "variants" => array("regular", "500", "600", "700", "800"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v4", "lastModified" => "2016-02-24", "files" => array("500" => "http://fonts.gstatic.com/s/eczar/v4/Ooe4KaPp2594tF8TbMfdlQ.ttf", "600" => "http://fonts.gstatic.com/s/eczar/v4/IjQsWW0bmgkZ6lnN72cnTQ.ttf", "700" => "http://fonts.gstatic.com/s/eczar/v4/ELC8RVXfBMb3VuuHtMwBOA.ttf", "800" => "http://fonts.gstatic.com/s/eczar/v4/9Uyt6nTZLx_Qj5_WRah-iQ.ttf", "regular" => "http://fonts.gstatic.com/s/eczar/v4/uKZcAQ5JBBs1UbeXFRbBRg.ttf")), array("kind" => "webfonts#webfont", "family" => "Ek Mukta", "category" => "sans-serif", "variants" => array("200", "300", "regular", "500", "600", "700", "800"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/ekmukta/v7/crtkNHh5JcM3VJKG0E-B36CWcynf_cDxXwCLxiixG1c.ttf", "300" => "http://fonts.gstatic.com/s/ekmukta/v7/mpaAv7CIyk0VnZlqSneVxKCWcynf_cDxXwCLxiixG1c.ttf", "500" => "http://fonts.gstatic.com/s/ekmukta/v7/PZ1y2MstFczWvBlFSgzMyaCWcynf_cDxXwCLxiixG1c.ttf", "600" => "http://fonts.gstatic.com/s/ekmukta/v7/Z5Mfzeu6M3emakcJO2QeTqCWcynf_cDxXwCLxiixG1c.ttf", "700" => "http://fonts.gstatic.com/s/ekmukta/v7/4ugcOGR28Jn-oBIn0-qLYaCWcynf_cDxXwCLxiixG1c.ttf", "800" => "http://fonts.gstatic.com/s/ekmukta/v7/O68TH5OjEhVmn9_gIrcfS6CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/ekmukta/v7/aFcjXdC5jyJ1p8w54wIIrg.ttf")), array("kind" => "webfonts#webfont", "family" => "Electrolize", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/electrolize/v5/yFVu5iokC-nt4B1Cyfxb9aCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Elsie", "category" => "display", "variants" => array("regular", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("900" => "http://fonts.gstatic.com/s/elsie/v5/1t-9f0N2NFYwAgN7oaISqg.ttf", "regular" => "http://fonts.gstatic.com/s/elsie/v5/gwspePauE45BJu6Ok1QrfQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Elsie Swash Caps", "category" => "display", "variants" => array("regular", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("900" => "http://fonts.gstatic.com/s/elsieswashcaps/v4/iZnus9qif0tR5pGaDv5zdKoKBWBozTtxi30NfZDOXXU.ttf", "regular" => "http://fonts.gstatic.com/s/elsieswashcaps/v4/9L3hIJMPCf6sxCltnxd6X2YeFSdnSpRYv5h9gpdlD1g.ttf")), array("kind" => "webfonts#webfont", "family" => "Emblema One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/emblemaone/v5/7IlBUjBWPIiw7cr_O2IfSaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Emilys Candy", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/emilyscandy/v4/PofLVm6v1SwZGOzC8s-I3S3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Engagement", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/engagement/v5/4Uz0Jii7oVPcaFRYmbpU6vesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Englebert", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/englebert/v4/sll38iOvOuarDTYBchlP3Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Enriqueta", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/enriqueta/v5/I27Pb-wEGH2ajLYP0QrtSC3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/enriqueta/v5/_p90TrIwR1SC-vDKtmrv6A.ttf")), array("kind" => "webfonts#webfont", "family" => "Erica One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/ericaone/v7/cIBnH2VAqQMIGYAcE4ufvQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Esteban", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/esteban/v4/ESyhLgqDDyK5JcFPp2svDw.ttf")), array("kind" => "webfonts#webfont", "family" => "Euphoria Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/euphoriascript/v4/c4XB4Iijj_NvSsCF4I0O2MxLhO8OSNnfAp53LK1_iRs.ttf")), array("kind" => "webfonts#webfont", "family" => "Ewert", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ewert/v4/Em8hrzuzSbfHcTVqMjbAQg.ttf")), array("kind" => "webfonts#webfont", "family" => "Exo", "category" => "sans-serif", "variants" => array("100", "100italic", "200", "200italic", "300", "300italic", "regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic", "800", "800italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/exo/v4/RI7A9uwjRmPbVp0n8e-Jvg.ttf", "200" => "http://fonts.gstatic.com/s/exo/v4/F8OfC_swrRRxpFt-tlXZQg.ttf", "300" => "http://fonts.gstatic.com/s/exo/v4/SBrN7TKUqgGUvfxqHqsnNw.ttf", "500" => "http://fonts.gstatic.com/s/exo/v4/jCg6DmGGXt_OVyp5ofQHPw.ttf", "600" => "http://fonts.gstatic.com/s/exo/v4/q_SG5kXUmOcIvFpgtdZnlw.ttf", "700" => "http://fonts.gstatic.com/s/exo/v4/3_jwsL4v9uHjl5Q37G57mw.ttf", "800" => "http://fonts.gstatic.com/s/exo/v4/yLPuxBuV0lzqibRJyooOJg.ttf", "900" => "http://fonts.gstatic.com/s/exo/v4/97d0nd6Yv4-SA_X92xAuZA.ttf", "100italic" => "http://fonts.gstatic.com/s/exo/v4/qtGyZZlWb2EEvby3ZPosxw.ttf", "200italic" => "http://fonts.gstatic.com/s/exo/v4/fr4HBfXHYiIngW2_bhlgRw.ttf", "300italic" => "http://fonts.gstatic.com/s/exo/v4/3gmiLjBegIfcDLISjTGA1g.ttf", "regular" => "http://fonts.gstatic.com/s/exo/v4/eUEzTFueNXRVhbt4PEB8kQ.ttf", "italic" => "http://fonts.gstatic.com/s/exo/v4/cfgolWisMSURhpQeVHl_NA.ttf", "500italic" => "http://fonts.gstatic.com/s/exo/v4/lo5eTdCNJZQVN08p8RnzAQ.ttf", "600italic" => "http://fonts.gstatic.com/s/exo/v4/0cExa8K_pxS2lTuMr68XUA.ttf", "700italic" => "http://fonts.gstatic.com/s/exo/v4/0me55yJIxd5vyQ9bF7SsiA.ttf", "800italic" => "http://fonts.gstatic.com/s/exo/v4/n3LejeKVj_8gtZq5fIgNYw.ttf", "900italic" => "http://fonts.gstatic.com/s/exo/v4/JHTkQVhzyLtkY13Ye95TJQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Exo 2", "category" => "sans-serif", "variants" => array("100", "100italic", "200", "200italic", "300", "300italic", "regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic", "800", "800italic", "900", "900italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/exo2/v3/oVOtQy53isv97g4UhBUDqg.ttf", "200" => "http://fonts.gstatic.com/s/exo2/v3/qa-Ci2pBwJdCxciE1ErifQ.ttf", "300" => "http://fonts.gstatic.com/s/exo2/v3/nLUBdz_lHHoVIPor05Byhw.ttf", "500" => "http://fonts.gstatic.com/s/exo2/v3/oM0rzUuPqVJpW-VEIpuW5w.ttf", "600" => "http://fonts.gstatic.com/s/exo2/v3/YnSn3HsyvyI1feGSdRMYqA.ttf", "700" => "http://fonts.gstatic.com/s/exo2/v3/2DiK4XkdTckfTk6we73-bQ.ttf", "800" => "http://fonts.gstatic.com/s/exo2/v3/IVYl_7dJruOg8zKRpC8Hrw.ttf", "900" => "http://fonts.gstatic.com/s/exo2/v3/e8csG8Wnu87AF6uCndkFRQ.ttf", "100italic" => "http://fonts.gstatic.com/s/exo2/v3/LNYVgsJcaCxoKFHmd4AZcg.ttf", "200italic" => "http://fonts.gstatic.com/s/exo2/v3/DCrVxDVvS69n50O-5erZVvesZW2xOQ-xsNqO47m55DA.ttf", "300italic" => "http://fonts.gstatic.com/s/exo2/v3/iSy9VTeUTiqiurQg2ywtu_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/exo2/v3/Pf_kZuIH5c5WKVkQUaeSWQ.ttf", "italic" => "http://fonts.gstatic.com/s/exo2/v3/xxA5ZscX9sTU6U0lZJUlYA.ttf", "500italic" => "http://fonts.gstatic.com/s/exo2/v3/amzRVCB-gipwdihZZ2LtT_esZW2xOQ-xsNqO47m55DA.ttf", "600italic" => "http://fonts.gstatic.com/s/exo2/v3/Vmo58BiptGwfVFb0teU5gPesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/exo2/v3/Sdo-zW-4_--pDkTg6bYrY_esZW2xOQ-xsNqO47m55DA.ttf", "800italic" => "http://fonts.gstatic.com/s/exo2/v3/p0TA6KeOz1o4rySEbvUxI_esZW2xOQ-xsNqO47m55DA.ttf", "900italic" => "http://fonts.gstatic.com/s/exo2/v3/KPhsGCoT2-7Uj6pMlRscH_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Expletus Sans", "category" => "display", "variants" => array("regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/expletussans/v9/cl6rhMY77Ilk8lB_uYRRwAqQmZ7VjhwksfpNVG0pqGc.ttf", "600" => "http://fonts.gstatic.com/s/expletussans/v9/cl6rhMY77Ilk8lB_uYRRwCvj1tU7IJMS3CS9kCx2B3U.ttf", "700" => "http://fonts.gstatic.com/s/expletussans/v9/cl6rhMY77Ilk8lB_uYRRwFCbmAUID8LN-q3pJpOk3Ys.ttf", "regular" => "http://fonts.gstatic.com/s/expletussans/v9/gegTSDBDs5le3g6uxU1ZsX8f0n03UdmQgF_CLvNR2vg.ttf", "italic" => "http://fonts.gstatic.com/s/expletussans/v9/Y-erXmY0b6DU_i2Qu0hTJj4G9C9ttb0Oz5Cvf0qOitE.ttf", "500italic" => "http://fonts.gstatic.com/s/expletussans/v9/sRBNtc46w65uJE451UYmW87DCVO6wo6i5LKIyZDzK40.ttf", "600italic" => "http://fonts.gstatic.com/s/expletussans/v9/sRBNtc46w65uJE451UYmW8yKH23ZS6zCKOFHG0e_4JE.ttf", "700italic" => "http://fonts.gstatic.com/s/expletussans/v9/sRBNtc46w65uJE451UYmW5F66r9C4AnxxlBlGd7xY4g.ttf")), array("kind" => "webfonts#webfont", "family" => "Fanwood Text", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fanwoodtext/v6/hDNDHUlsSb8bgnEmDp4T_i3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/fanwoodtext/v6/0J3SBbkMZqBV-3iGxs5E9_MZXuCXbOrAvx5R0IT5Oyo.ttf")), array("kind" => "webfonts#webfont", "family" => "Fascinate", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fascinate/v5/ZE0637WWkBPKt1AmFaqD3Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Fascinate Inline", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fascinateinline/v6/lRguYfMfWArflkm5aOQ5QJmp8DTZ6iHear7UV05iykg.ttf")), array("kind" => "webfonts#webfont", "family" => "Faster One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fasterone/v6/YxTOW2sf56uxD1T7byP5K_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Fasthand", "category" => "serif", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v7", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/fasthand/v7/6XAagHH_KmpZL67wTvsETQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Fauna One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/faunaone/v4/8kL-wpAPofcAMELI_5NRnQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Federant", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/federant/v8/tddZFSiGvxICNOGra0i5aA.ttf")), array("kind" => "webfonts#webfont", "family" => "Federo", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/federo/v8/JPhe1S2tujeyaR79gXBLeQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Felipa", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/felipa/v4/SeyfyFZY7abAQXGrOIYnYg.ttf")), array("kind" => "webfonts#webfont", "family" => "Fenix", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fenix/v4/Ak8wR3VSlAN7VN_eMeJj7Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Finger Paint", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fingerpaint/v4/m_ZRbiY-aPb13R3DWPBGXy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Fira Mono", "category" => "monospace", "variants" => array("regular", "700"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin"), "version" => "v3", "lastModified" => "2015-04-06", "files" => array("700" => "http://fonts.gstatic.com/s/firamono/v3/l24Wph3FsyKAbJ8dfExTZy3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/firamono/v3/WQOm1D4RO-yvA9q9trJc8g.ttf")), array("kind" => "webfonts#webfont", "family" => "Fira Sans", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/firasans/v5/VTBnrK42EiOBncVyQXZ7jy3USBnSvpkopQaUR-2r7iU.ttf", "500" => "http://fonts.gstatic.com/s/firasans/v5/zM2u8V3CuPVwAAXFQcDi4C3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/firasans/v5/DugPdSljmOTocZOR2CItOi3USBnSvpkopQaUR-2r7iU.ttf", "300italic" => "http://fonts.gstatic.com/s/firasans/v5/6s0YCA9oCTF6hM60YM-qTS9-WlPSxbfiI49GsXo3q0g.ttf", "regular" => "http://fonts.gstatic.com/s/firasans/v5/nsT0isDy56OkSX99sFQbXw.ttf", "italic" => "http://fonts.gstatic.com/s/firasans/v5/cPT_2ddmoxsUuMtQqa8zGqCWcynf_cDxXwCLxiixG1c.ttf", "500italic" => "http://fonts.gstatic.com/s/firasans/v5/6s0YCA9oCTF6hM60YM-qTcCNfqCYlB_eIx7H1TVXe60.ttf", "700italic" => "http://fonts.gstatic.com/s/firasans/v5/6s0YCA9oCTF6hM60YM-qTXe1Pd76Vl7zRpE7NLJQ7XU.ttf")), array("kind" => "webfonts#webfont", "family" => "Fjalla One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fjallaone/v4/3b7vWCfOZsU53vMa8LWsf_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Fjord One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fjordone/v5/R_YHK8au2uFPw5tNu5N7zw.ttf")), array("kind" => "webfonts#webfont", "family" => "Flamenco", "category" => "display", "variants" => array("300", "regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/flamenco/v6/x9iI5CogvuZVCGoRHwXuo6CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/flamenco/v6/HC0ugfLLgt26I5_BWD1PZA.ttf")), array("kind" => "webfonts#webfont", "family" => "Flavors", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/flavors/v5/SPJi5QclATvon8ExcKGRvQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Fondamento", "category" => "handwriting", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fondamento/v5/6LWXcjT1B7bnWluAOSNfMPesZW2xOQ-xsNqO47m55DA.ttf", "italic" => "http://fonts.gstatic.com/s/fondamento/v5/y6TmwhSbZ8rYq7OTFyo7OS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Fontdiner Swanky", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fontdinerswanky/v6/8_GxIO5ixMtn5P6COsF3TlBjMPLzPAFJwRBn-s1U7kA.ttf")), array("kind" => "webfonts#webfont", "family" => "Forum", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/forum/v7/MZUpsq1VfLrqv8eSDcbrrQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Francois One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/francoisone/v9/bYbkq2nU2TSx4SwFbz5sCC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Freckle Face", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/freckleface/v4/7-B8j9BPJgazdHIGqPNv8y3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Fredericka the Great", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/frederickathegreat/v5/7Es8Lxoku-e5eOZWpxw18nrnet6gXN1McwdQxS1dVrI.ttf")), array("kind" => "webfonts#webfont", "family" => "Fredoka One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fredokaone/v4/QKfwXi-z-KtJAlnO2ethYqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Freehand", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/freehand/v8/uEBQxvA0lnn_BrD6krlxMw.ttf")), array("kind" => "webfonts#webfont", "family" => "Fresca", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fresca/v5/2q7Qm9sCo1tWvVgSDVWNIw.ttf")), array("kind" => "webfonts#webfont", "family" => "Frijole", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/frijole/v5/L2MfZse-2gCascuD-nLhWg.ttf")), array("kind" => "webfonts#webfont", "family" => "Fruktur", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fruktur/v8/PnQvfEi1LssAvhJsCwH__w.ttf")), array("kind" => "webfonts#webfont", "family" => "Fugaz One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/fugazone/v6/5tteVDCwxsr8-5RuSiRWOw.ttf")), array("kind" => "webfonts#webfont", "family" => "GFS Didot", "category" => "serif", "variants" => array("regular"), "subsets" => array("greek"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gfsdidot/v6/jQKxZy2RU-h9tkPZcRVluA.ttf")), array("kind" => "webfonts#webfont", "family" => "GFS Neohellenic", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("greek"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/gfsneohellenic/v7/7HwjPQa7qNiOsnUce2h4448_BwCLZY3eDSV6kppAwI8.ttf", "regular" => "http://fonts.gstatic.com/s/gfsneohellenic/v7/B4xRqbn-tANVqVgamMsSDiayCZa0z7CpFzlkqoCHztc.ttf", "italic" => "http://fonts.gstatic.com/s/gfsneohellenic/v7/KnaWrO4awITAqigQIIYXKkCTdomiyJpIzPbEbIES3rU.ttf", "700italic" => "http://fonts.gstatic.com/s/gfsneohellenic/v7/FwWjoX6XqT-szJFyqsu_GYFF0fM4h-krcpQk7emtCpE.ttf")), array("kind" => "webfonts#webfont", "family" => "Gabriela", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gabriela/v4/B-2ZfbAO3HDrxqV6lR5tdA.ttf")), array("kind" => "webfonts#webfont", "family" => "Gafata", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gafata/v5/aTFqlki_3Dc3geo-FxHTvQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Galdeano", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/galdeano/v6/ZKFMQI6HxEG1jOT0UGSZUg.ttf")), array("kind" => "webfonts#webfont", "family" => "Galindo", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/galindo/v4/2lafAS_ZEfB33OJryhXDUg.ttf")), array("kind" => "webfonts#webfont", "family" => "Gentium Basic", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/gentiumbasic/v8/2qL6yulgGf0wwgOp-UqGyLNuTeOOLg3nUymsEEGmdO0.ttf", "regular" => "http://fonts.gstatic.com/s/gentiumbasic/v8/KCktj43blvLkhOTolFn-MYtBLojGU5Qdl8-5NL4v70w.ttf", "italic" => "http://fonts.gstatic.com/s/gentiumbasic/v8/qoFz4NSMaYC2UmsMAG3lyTj3mvXnCeAk09uTtmkJGRc.ttf", "700italic" => "http://fonts.gstatic.com/s/gentiumbasic/v8/8N9-c_aQDJ8LbI1NGVMrwtswO1vWwP9exiF8s0wqW10.ttf")), array("kind" => "webfonts#webfont", "family" => "Gentium Book Basic", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/gentiumbookbasic/v7/T2vUYmWzlqUtgLYdlemGnaWESMHIjnSjm9UUxYtEOko.ttf", "regular" => "http://fonts.gstatic.com/s/gentiumbookbasic/v7/IRFxB2matTxrjZt6a3FUnrWDjKAyldGEr6eEi2MBNeY.ttf", "italic" => "http://fonts.gstatic.com/s/gentiumbookbasic/v7/qHqW2lwKO8-uTfIkh8FsUfXfjMwrYnmPVsQth2IcAPY.ttf", "700italic" => "http://fonts.gstatic.com/s/gentiumbookbasic/v7/632u7TMIoFDWQYUaHFUp5PA2A9KyRZEkn4TZVuhsWRM.ttf")), array("kind" => "webfonts#webfont", "family" => "Geo", "category" => "sans-serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/geo/v8/mJuJYk5Pww84B4uHAQ1XaA.ttf", "italic" => "http://fonts.gstatic.com/s/geo/v8/8_r1wToF7nPdDuX1qxel6Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Geostar", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/geostar/v6/A8WQbhQbpYx3GWWaShJ9GA.ttf")), array("kind" => "webfonts#webfont", "family" => "Geostar Fill", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/geostarfill/v6/Y5ovXPPOHYTfQzK2aM-hui3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Germania One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/germaniaone/v4/3_6AyUql_-FbDi1e68jHdC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Gidugu", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gidugu/v3/Ey6Eq3hrT6MM58iFItFcgw.ttf")), array("kind" => "webfonts#webfont", "family" => "Gilda Display", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gildadisplay/v4/8yAVUZLLZ3wb7dSsjix0CADHmap7fRWINAsw8-RaxNg.ttf")), array("kind" => "webfonts#webfont", "family" => "Give You Glory", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/giveyouglory/v6/DFEWZFgGmfseyIdGRJAxuBwwkpSPZdvjnMtysdqprfI.ttf")), array("kind" => "webfonts#webfont", "family" => "Glass Antiqua", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/glassantiqua/v4/0yLrXKplgdUDIMz5TnCHNODcg5akpSnIcsPhLOFv7l8.ttf")), array("kind" => "webfonts#webfont", "family" => "Glegoo", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/glegoo/v5/TlLolbauH0-0Aiz1LUH5og.ttf", "regular" => "http://fonts.gstatic.com/s/glegoo/v5/2tf-h3n2A_SNYXEO0C8bKw.ttf")), array("kind" => "webfonts#webfont", "family" => "Gloria Hallelujah", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gloriahallelujah/v8/CA1k7SlXcY5kvI81M_R28Q3RdPdyebSUyJECJouPsvA.ttf")), array("kind" => "webfonts#webfont", "family" => "Goblin One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/goblinone/v6/331XtzoXgpVEvNTVcBJ_C_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Gochi Hand", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gochihand/v7/KT1-WxgHsittJ34_20IfAPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Gorditas", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/gorditas/v4/6-XCeknmxaon8AUqVkMnHaCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/gorditas/v4/uMgZhXUyH6qNGF3QsjQT5Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Goudy Bookletter 1911", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/goudybookletter1911/v6/l5lwlGTN3pEY5Bf-rQEuIIjNDsyURsIKu4GSfvSE4mA.ttf")), array("kind" => "webfonts#webfont", "family" => "Graduate", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/graduate/v4/JpAmYLHqcIh9_Ff35HHwiA.ttf")), array("kind" => "webfonts#webfont", "family" => "Grand Hotel", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/grandhotel/v4/C_A8HiFZjXPpnMt38XnK7qCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Gravitas One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gravitasone/v6/nBHdBv6zVNU8MtP6w9FwTS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Great Vibes", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/greatvibes/v4/4Mi5RG_9LjQYrTU55GN_L6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Griffy", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/griffy/v4/vWkyYGBSyE5xjnShNtJtzw.ttf")), array("kind" => "webfonts#webfont", "family" => "Gruppo", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gruppo/v7/pS_JM0cK_piBZve-lfUq9w.ttf")), array("kind" => "webfonts#webfont", "family" => "Gudea", "category" => "sans-serif", "variants" => array("regular", "italic", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/gudea/v4/lsip4aiWhJ9bx172Y9FN_w.ttf", "regular" => "http://fonts.gstatic.com/s/gudea/v4/S-4QqBlkMPiiA3jNeCR5yw.ttf", "italic" => "http://fonts.gstatic.com/s/gudea/v4/7mNgsGw_vfS-uUgRVXNDSw.ttf")), array("kind" => "webfonts#webfont", "family" => "Gurajada", "category" => "serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/gurajada/v4/6Adfkl4PCRyq6XTENACEyA.ttf")), array("kind" => "webfonts#webfont", "family" => "Habibi", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/habibi/v5/YYyqXF6pWpL7kmKgS_2iUA.ttf")), array("kind" => "webfonts#webfont", "family" => "Halant", "category" => "serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2016-03-14", "files" => array("300" => "http://fonts.gstatic.com/s/halant/v2/dM3ItAOWNNod_Cf3MnLlEg.ttf", "500" => "http://fonts.gstatic.com/s/halant/v2/tlsNj3K-hJKtiirTDtUbkQ.ttf", "600" => "http://fonts.gstatic.com/s/halant/v2/zNR2WvI_V8o652vIZp3X4Q.ttf", "700" => "http://fonts.gstatic.com/s/halant/v2/D9FN7OH89AuCmZDLHbPQfA.ttf", "regular" => "http://fonts.gstatic.com/s/halant/v2/rEs7Jk3SVyt3cTx6DoTu1w.ttf")), array("kind" => "webfonts#webfont", "family" => "Hammersmith One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/hammersmithone/v7/FWNn6ITYqL6or7ZTmBxRhjjVlsJB_M_Q_LtZxsoxvlw.ttf")), array("kind" => "webfonts#webfont", "family" => "Hanalei", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/hanalei/v6/Sx8vVMBnXSQyK6Cn0CBJ3A.ttf")), array("kind" => "webfonts#webfont", "family" => "Hanalei Fill", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/hanaleifill/v5/5uPeWLnaDdtm4UBG26Ds6C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Handlee", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/handlee/v5/6OfkXkyC0E5NZN80ED8u3A.ttf")), array("kind" => "webfonts#webfont", "family" => "Hanuman", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/hanuman/v9/lzzXZ2l84x88giDrbfq76vesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/hanuman/v9/hRhwOGGmElJSl6KSPvEnOQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Happy Monkey", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/happymonkey/v5/c2o0ps8nkBmaOYctqBq1rS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Headland One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/headlandone/v4/iGmBeOvQGfq9DSbjJ8jDVy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Henny Penny", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/hennypenny/v4/XRgo3ogXyi3tpsFfjImRF6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Herr Von Muellerhoff", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/herrvonmuellerhoff/v6/mmy24EUmk4tjm4gAEjUd7NLGIYrUsBdh-JWHYgiDiMU.ttf")), array("kind" => "webfonts#webfont", "family" => "Hind", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/hind/v5/qa346Adgv9kPDXoD1my4kA.ttf", "500" => "http://fonts.gstatic.com/s/hind/v5/2cs8RCVcYtiv4iNDH1UsQQ.ttf", "600" => "http://fonts.gstatic.com/s/hind/v5/TUKUmFMXSoxloBP1ni08oA.ttf", "700" => "http://fonts.gstatic.com/s/hind/v5/cXJJavLdUbCfjxlsA6DqTw.ttf", "regular" => "http://fonts.gstatic.com/s/hind/v5/mktFHh5Z5P9YjGKSslSUtA.ttf")), array("kind" => "webfonts#webfont", "family" => "Hind Siliguri", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("bengali", "latin-ext", "latin"), "version" => "v1", "lastModified" => "2015-09-09", "files" => array("300" => "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJnzoJ52uD-1fmXmi8u0n_zsc.ttf", "500" => "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJn__2zpxNHQ3utWt_82o9dAo.ttf", "600" => "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJn-x91FDzFvnud68bXrNkpDA.ttf", "700" => "http://fonts.gstatic.com/s/hindsiliguri/v1/fBpmjMpv5Rh6S25yVfWJn6iiXuG_rGcOxkuidirlnJE.ttf", "regular" => "http://fonts.gstatic.com/s/hindsiliguri/v1/f2eEi2pbIa8eBfNwpUl0Am_MnNA9OgK8I1F23mNWOpE.ttf")), array("kind" => "webfonts#webfont", "family" => "Hind Vadodara", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "gujarati", "latin"), "version" => "v1", "lastModified" => "2015-09-09", "files" => array("300" => "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTbDwfZ__Dotj_J8NiWv76DQ.ttf", "500" => "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTZzEKvFIU9WyojfbAkhDb6c.ttf", "600" => "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTfgXs2VXrZsRiQ1c96pXZKI.ttf", "700" => "http://fonts.gstatic.com/s/hindvadodara/v1/KrZ6f_YevRawHvh0qDBkTYGjoH95IEFGA7BjhXnx_eg.ttf", "regular" => "http://fonts.gstatic.com/s/hindvadodara/v1/9c6KKeibr6NtFqknnNxZB-Dcg5akpSnIcsPhLOFv7l8.ttf")), array("kind" => "webfonts#webfont", "family" => "Holtwood One SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/holtwoodonesc/v7/sToOq3cIxbfnhbEkgYNuBbAgSRh1LpJXlLfl8IbsmHg.ttf")), array("kind" => "webfonts#webfont", "family" => "Homemade Apple", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/homemadeapple/v6/yg3UMEsefgZ8IHz_ryz86BiPOmFWYV1WlrJkRafc4c0.ttf")), array("kind" => "webfonts#webfont", "family" => "Homenaje", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/homenaje/v5/v0YBU0iBRrGdVjDNQILxtA.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell DW Pica", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfelldwpica/v6/W81bfaWiUicLSPbJhW-ATsA5qm663gJGVdtpamafG5A.ttf", "italic" => "http://fonts.gstatic.com/s/imfelldwpica/v6/alQJ8SK5aSOZVaelYoyT4PL2asmh5DlYQYCosKo6yQs.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell DW Pica SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfelldwpicasc/v6/xBKKJV4z2KsrtQnmjGO17JZ9RBdEL0H9o5qzT1Rtof4.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell Double Pica", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfelldoublepica/v6/yN1wY_01BkQnO0LYAhXdUol14jEdVOhEmvtCMCVwYak.ttf", "italic" => "http://fonts.gstatic.com/s/imfelldoublepica/v6/64odUh2hAw8D9dkFKTlWYq0AWwkgdQfsRHec8TYi4mI.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell Double Pica SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfelldoublepicasc/v6/jkrUtrLFpMw4ZazhfkKsGwc4LoC4OJUqLw9omnT3VOU.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell English", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfellenglish/v6/xwIisCqGFi8pff-oa9uSVHGNmx1fDm-u2eBJHQkdrmk.ttf", "italic" => "http://fonts.gstatic.com/s/imfellenglish/v6/Z3cnIAI_L3XTRfz4JuZKbuewladMPCWTthtMv9cPS-c.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell English SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfellenglishsc/v6/h3Tn6yWfw4b5qaLD1RWvz5ATixNthKRRR1XVH3rJNiw.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell French Canon", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/iKB0WL1BagSpNPz3NLMdsJ3V2FNpBrlLSvqUnERhBP8.ttf", "italic" => "http://fonts.gstatic.com/s/imfellfrenchcanon/v6/owCuNQkLLFW7TBBPJbMnhRa-QL94KdW80H29tcyld2A.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell French Canon SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v6/kA3bS19-tQbeT_iG32EZmaiyyzHwYrAbmNulTz423iM.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell Great Primer", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfellgreatprimer/v6/AL8ALGNthei20f9Cu3e93rgeX3ROgtTz44CitKAxzKI.ttf", "italic" => "http://fonts.gstatic.com/s/imfellgreatprimer/v6/1a-artkXMVg682r7TTxVY1_YG2SFv8Ma7CxRl1S3o7g.ttf")), array("kind" => "webfonts#webfont", "family" => "IM Fell Great Primer SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imfellgreatprimersc/v6/A313vRj97hMMGFjt6rgSJtRg-ciw1Y27JeXb2Zv4lZQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Iceberg", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/iceberg/v4/p2XVm4M-N0AOEEOymFKC5w.ttf")), array("kind" => "webfonts#webfont", "family" => "Iceland", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/iceland/v5/kq3uTMGgvzWGNi39B_WxGA.ttf")), array("kind" => "webfonts#webfont", "family" => "Imprima", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/imprima/v4/eRjquWLjwLGnTEhLH7u3kA.ttf")), array("kind" => "webfonts#webfont", "family" => "Inconsolata", "category" => "monospace", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v12", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/inconsolata/v12/AIed271kqQlcIRSOnQH0yXe1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/inconsolata/v12/7bMKuoy6Nh0ft0SHnIGMuaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Inder", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/inder/v5/C38TwecLTfKxIHDc_Adcrw.ttf")), array("kind" => "webfonts#webfont", "family" => "Indie Flower", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/indieflower/v8/10JVD_humAd5zP2yrFqw6i3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Inika", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/inika/v4/bl3ZoTyrWsFun2zYbsgJrA.ttf", "regular" => "http://fonts.gstatic.com/s/inika/v4/eZCrULQGaIxkrRoGz_DjhQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Inknut Antiqua", "category" => "serif", "variants" => array("300", "regular", "500", "600", "700", "800", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIg6hmPNSXwHGnJQCeQHKUMo.ttf", "500" => "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIiYCDvi1XFzRnTV7qUFsNgk.ttf", "600" => "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIjLEgY6PI0GrY6L00mykcEQ.ttf", "700" => "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIlRhfXn9P4_QueZ7VkUHUNc.ttf", "800" => "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVInARjXVu2t2krcNTHiCb1qY.ttf", "900" => "http://fonts.gstatic.com/s/inknutantiqua/v1/CagoW52rBcslcXzHh6tVIrTsNy1JrFNT1qKy8j7W3CU.ttf", "regular" => "http://fonts.gstatic.com/s/inknutantiqua/v1/VlmmTfOrxr3HfcnhMueX9arFJ4O13IHVxZbM6yoslpo.ttf")), array("kind" => "webfonts#webfont", "family" => "Irish Grover", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/irishgrover/v6/kUp7uUPooL-KsLGzeVJbBC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Istok Web", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/istokweb/v10/2koEo4AKFSvK4B52O_Mwai3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/istokweb/v10/RYLSjEXQ0nNtLLc4n7--dQ.ttf", "italic" => "http://fonts.gstatic.com/s/istokweb/v10/kvcT2SlTjmGbC3YlZxmrl6CWcynf_cDxXwCLxiixG1c.ttf", "700italic" => "http://fonts.gstatic.com/s/istokweb/v10/ycQ3g52ELrh3o_HYCNNUw3e1Pd76Vl7zRpE7NLJQ7XU.ttf")), array("kind" => "webfonts#webfont", "family" => "Italiana", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/italiana/v4/dt95fkCSTOF-c6QNjwSycA.ttf")), array("kind" => "webfonts#webfont", "family" => "Italianno", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/italianno/v6/HsyHnLpKf8uP7aMpDQHZmg.ttf")), array("kind" => "webfonts#webfont", "family" => "Itim", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("vietnamese", "latin-ext", "thai", "latin"), "version" => "v1", "lastModified" => "2015-08-06", "files" => array("regular" => "http://fonts.gstatic.com/s/itim/v1/HHV9WK2x5lUkc5bxMXG8Tw.ttf")), array("kind" => "webfonts#webfont", "family" => "Jacques Francois", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/jacquesfrancois/v4/_-0XWPQIW6tOzTHg4KaJ_M13D_4KM32Q4UmTSjpuNGQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Jacques Francois Shadow", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v4/V14y0H3vq56fY9SV4OL_FASt0D_oLVawA8L8b9iKjbs.ttf")), array("kind" => "webfonts#webfont", "family" => "Jaldi", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2015-06-10", "files" => array("700" => "http://fonts.gstatic.com/s/jaldi/v2/OIbtgjjEp3aVWtjF6WY8mA.ttf", "regular" => "http://fonts.gstatic.com/s/jaldi/v2/x1vR-bPW9a1EB-BUVqttCw.ttf")), array("kind" => "webfonts#webfont", "family" => "Jim Nightshade", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/jimnightshade/v4/_n43lYHXVWNgXegdYRIK9CF1W_bo0EdycfH0kHciIic.ttf")), array("kind" => "webfonts#webfont", "family" => "Jockey One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/jockeyone/v6/cAucnOZLvFo07w2AbufBCfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Jolly Lodger", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/jollylodger/v4/RX8HnkBgaEKQSHQyP9itiS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Josefin Sans", "category" => "sans-serif", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "600", "600italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/josefinsans/v9/q9w3H4aeBxj0hZ8Osfi3d8SVQ0giZ-l_NELu3lgGyYw.ttf", "300" => "http://fonts.gstatic.com/s/josefinsans/v9/C6HYlRF50SGJq1XyXj04z6cQoVhARpoaILP7amxE_8g.ttf", "600" => "http://fonts.gstatic.com/s/josefinsans/v9/C6HYlRF50SGJq1XyXj04z2v8CylhIUtwUiYO7Z2wXbE.ttf", "700" => "http://fonts.gstatic.com/s/josefinsans/v9/C6HYlRF50SGJq1XyXj04z0D2ttfZwueP-QU272T9-k4.ttf", "100italic" => "http://fonts.gstatic.com/s/josefinsans/v9/s7-P1gqRNRNn-YWdOYnAOXXcj1rQwlNLIS625o-SrL0.ttf", "300italic" => "http://fonts.gstatic.com/s/josefinsans/v9/ppse0J9fKSaoxCIIJb33Gyna0FLWfcB-J_SAYmcAXaI.ttf", "regular" => "http://fonts.gstatic.com/s/josefinsans/v9/xgzbb53t8j-Mo-vYa23n5i3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/josefinsans/v9/q9w3H4aeBxj0hZ8Osfi3d_MZXuCXbOrAvx5R0IT5Oyo.ttf", "600italic" => "http://fonts.gstatic.com/s/josefinsans/v9/ppse0J9fKSaoxCIIJb33G4R-5-urNOGAobhAyctHvW8.ttf", "700italic" => "http://fonts.gstatic.com/s/josefinsans/v9/ppse0J9fKSaoxCIIJb33G_As9-1nE9qOqhChW0m4nDE.ttf")), array("kind" => "webfonts#webfont", "family" => "Josefin Slab", "category" => "serif", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "600", "600italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/josefinslab/v6/etsUjZYO8lTLU85lDhZwUsSVQ0giZ-l_NELu3lgGyYw.ttf", "300" => "http://fonts.gstatic.com/s/josefinslab/v6/NbE6ykYuM2IyEwxQxOIi2KcQoVhARpoaILP7amxE_8g.ttf", "600" => "http://fonts.gstatic.com/s/josefinslab/v6/NbE6ykYuM2IyEwxQxOIi2Gv8CylhIUtwUiYO7Z2wXbE.ttf", "700" => "http://fonts.gstatic.com/s/josefinslab/v6/NbE6ykYuM2IyEwxQxOIi2ED2ttfZwueP-QU272T9-k4.ttf", "100italic" => "http://fonts.gstatic.com/s/josefinslab/v6/8BjDChqLgBF3RJKfwHIYh3Xcj1rQwlNLIS625o-SrL0.ttf", "300italic" => "http://fonts.gstatic.com/s/josefinslab/v6/af9sBoKGPbGO0r21xJulyyna0FLWfcB-J_SAYmcAXaI.ttf", "regular" => "http://fonts.gstatic.com/s/josefinslab/v6/46aYWdgz-1oFX11flmyEfS3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/josefinslab/v6/etsUjZYO8lTLU85lDhZwUvMZXuCXbOrAvx5R0IT5Oyo.ttf", "600italic" => "http://fonts.gstatic.com/s/josefinslab/v6/af9sBoKGPbGO0r21xJuly4R-5-urNOGAobhAyctHvW8.ttf", "700italic" => "http://fonts.gstatic.com/s/josefinslab/v6/af9sBoKGPbGO0r21xJuly_As9-1nE9qOqhChW0m4nDE.ttf")), array("kind" => "webfonts#webfont", "family" => "Joti One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/jotione/v4/P3r_Th0ESHJdzunsvWgUfQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Judson", "category" => "serif", "variants" => array("regular", "italic", "700"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/judson/v9/he4a2LwiPJc7r8x0oKCKiA.ttf", "regular" => "http://fonts.gstatic.com/s/judson/v9/znM1AAs0eytUaJzf1CrYZQ.ttf", "italic" => "http://fonts.gstatic.com/s/judson/v9/GVqQW9P52ygW-ySq-CLwAA.ttf")), array("kind" => "webfonts#webfont", "family" => "Julee", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/julee/v6/CAib-jsUsSO8SvVRnE9fHA.ttf")), array("kind" => "webfonts#webfont", "family" => "Julius Sans One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/juliussansone/v5/iU65JP9acQHPDLkdalCF7jjVlsJB_M_Q_LtZxsoxvlw.ttf")), array("kind" => "webfonts#webfont", "family" => "Junge", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/junge/v4/j4IXCXtxrw9qIBheercp3A.ttf")), array("kind" => "webfonts#webfont", "family" => "Jura", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/jura/v7/Rqx_xy1UnN0C7wD3FUSyPQ.ttf", "500" => "http://fonts.gstatic.com/s/jura/v7/16xhfjHCiaLj3tsqqgmtGg.ttf", "600" => "http://fonts.gstatic.com/s/jura/v7/iwseduOwJSdY8wQ1Y6CJdA.ttf", "regular" => "http://fonts.gstatic.com/s/jura/v7/YAWMwF3sN0KCbynMq-Yr_Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Just Another Hand", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/justanotherhand/v7/fKV8XYuRNNagXr38eqbRf99BnJIEGrvoojniP57E51c.ttf")), array("kind" => "webfonts#webfont", "family" => "Just Me Again Down Here", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/justmeagaindownhere/v8/sN06iTc9ITubLTgXoG-kc3M9eVLpVTSK6TqZTIgBrWQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Kadwa", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-17", "files" => array("700" => "http://fonts.gstatic.com/s/kadwa/v1/NFPZaBfekj_Io-7vUMz4Ww.ttf", "regular" => "http://fonts.gstatic.com/s/kadwa/v1/VwEN8oKGqaa0ug9kRpvSSg.ttf")), array("kind" => "webfonts#webfont", "family" => "Kalam", "category" => "handwriting", "variants" => array("300", "regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/kalam/v7/MgQQlk1SgPEHdlkWMNh7Jg.ttf", "700" => "http://fonts.gstatic.com/s/kalam/v7/95nLItUGyWtNLZjSckluLQ.ttf", "regular" => "http://fonts.gstatic.com/s/kalam/v7/hNEJkp2K-aql7e5WQish4Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Kameron", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/kameron/v7/rabVVbzlflqvmXJUFlKnu_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/kameron/v7/9r8HYhqDSwcq9WMjupL82A.ttf")), array("kind" => "webfonts#webfont", "family" => "Kanit", "category" => "sans-serif", "variants" => array("100", "100italic", "200", "200italic", "300", "300italic", "regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic", "800", "800italic", "900", "900italic"), "subsets" => array("vietnamese", "latin-ext", "thai", "latin"), "version" => "v1", "lastModified" => "2015-12-10", "files" => array("100" => "http://fonts.gstatic.com/s/kanit/v1/CYl4qOK-NWwZp3iTKW1eIA.ttf", "200" => "http://fonts.gstatic.com/s/kanit/v1/wfLWkj1C4tYl7MoiFWS3bA.ttf", "300" => "http://fonts.gstatic.com/s/kanit/v1/SM5qHynYGdOmMKEwGUFIPA.ttf", "500" => "http://fonts.gstatic.com/s/kanit/v1/GxoU_USIJyIy8WIcYSUO2g.ttf", "600" => "http://fonts.gstatic.com/s/kanit/v1/n_qoIVxojeQY0D1pvoNDhA.ttf", "700" => "http://fonts.gstatic.com/s/kanit/v1/kEGmYvO8My36j5ILmbUPRg.ttf", "800" => "http://fonts.gstatic.com/s/kanit/v1/YTp-zAuKXxwnA1YnJIF1rg.ttf", "900" => "http://fonts.gstatic.com/s/kanit/v1/1NIEkusi3bG3GgO9Hor3fQ.ttf", "100italic" => "http://fonts.gstatic.com/s/kanit/v1/NLNtc56MpXmHl1yOrop8oQ.ttf", "200italic" => "http://fonts.gstatic.com/s/kanit/v1/D8gkrAAM2bvNJ-1i4ot-1_esZW2xOQ-xsNqO47m55DA.ttf", "300italic" => "http://fonts.gstatic.com/s/kanit/v1/IePislKOKy3Bqfpb9V5VM_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/kanit/v1/L6VKvM17ZmevDynOiw7H9w.ttf", "italic" => "http://fonts.gstatic.com/s/kanit/v1/sHLq5U0-T0oSMTnwTKgv-A.ttf", "500italic" => "http://fonts.gstatic.com/s/kanit/v1/hrCiWCaNv9AaF0mDY1F2zPesZW2xOQ-xsNqO47m55DA.ttf", "600italic" => "http://fonts.gstatic.com/s/kanit/v1/9BkP85yRDoVayTWQwdGLqPesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/kanit/v1/WNo3ZZ9xtOZJknNlvHAFWfesZW2xOQ-xsNqO47m55DA.ttf", "800italic" => "http://fonts.gstatic.com/s/kanit/v1/qiTGrW5sCa9UQp841fWjc_esZW2xOQ-xsNqO47m55DA.ttf", "900italic" => "http://fonts.gstatic.com/s/kanit/v1/ogN5dFD1r4BfxNV4Nb-TXfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Kantumruy", "category" => "sans-serif", "variants" => array("300", "regular", "700"), "subsets" => array("khmer"), "version" => "v3", "lastModified" => "2015-04-03", "files" => array("300" => "http://fonts.gstatic.com/s/kantumruy/v3/ERRwQE0WG5uanaZWmOFXNi3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/kantumruy/v3/gie_zErpGf_rNzs920C2Ji3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/kantumruy/v3/kQfXNYElQxr5dS8FyjD39Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Karla", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/karla/v5/JS501sZLxZ4zraLQdncOUA.ttf", "regular" => "http://fonts.gstatic.com/s/karla/v5/78UgGRwJFkhqaoFimqoKpQ.ttf", "italic" => "http://fonts.gstatic.com/s/karla/v5/51UBKly9RQOnOkj95ZwEFw.ttf", "700italic" => "http://fonts.gstatic.com/s/karla/v5/3YDyi09gQjCRh-5-SVhTTvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Karma", "category" => "serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/karma/v5/lH6ijJnguWR2Sz7tEl6MQQ.ttf", "500" => "http://fonts.gstatic.com/s/karma/v5/9YGjxi6Hcvz2Kh-rzO_cAw.ttf", "600" => "http://fonts.gstatic.com/s/karma/v5/h_CVzXXtqSxjfS2sIwaejA.ttf", "700" => "http://fonts.gstatic.com/s/karma/v5/smuSM08oApsQPPVYbHd1CA.ttf", "regular" => "http://fonts.gstatic.com/s/karma/v5/wvqTxAGBUrTqU0urTEoPIw.ttf")), array("kind" => "webfonts#webfont", "family" => "Kaushan Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kaushanscript/v4/qx1LSqts-NtiKcLw4N03IBnpV0hQCek3EmWnCPrvGRM.ttf")), array("kind" => "webfonts#webfont", "family" => "Kavoon", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/kavoon/v5/382m-6baKXqJFQjEgobt6Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Kdam Thmor", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v3", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/kdamthmor/v3/otCdP6UU-VBIrBfVDWBQJ_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Keania One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/keaniaone/v4/PACrDKZWngXzgo-ucl6buvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Kelly Slab", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kellyslab/v6/F_2oS1e9XdYx1MAi8XEVefesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Kenia", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kenia/v8/OLM9-XfITK9PsTLKbGBrwg.ttf")), array("kind" => "webfonts#webfont", "family" => "Khand", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/khand/v4/072zRl4OU9Pinjjkg174LA.ttf", "500" => "http://fonts.gstatic.com/s/khand/v4/46_p-SqtuMe56nxQdteWxg.ttf", "600" => "http://fonts.gstatic.com/s/khand/v4/zggGWYIiPJyMTgkfxP_kaA.ttf", "700" => "http://fonts.gstatic.com/s/khand/v4/0I0UWaN-X5QBmfexpXKhqg.ttf", "regular" => "http://fonts.gstatic.com/s/khand/v4/HdLdTNFqNIDGJZl1ZEj84w.ttf")), array("kind" => "webfonts#webfont", "family" => "Khmer", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/khmer/v9/vWaBJIbaQuBNz02ALIKJ3A.ttf")), array("kind" => "webfonts#webfont", "family" => "Khula", "category" => "sans-serif", "variants" => array("300", "regular", "600", "700", "800"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/khula/v1/_1LySU5Upq-sc4OZ1b_GIw.ttf", "600" => "http://fonts.gstatic.com/s/khula/v1/4ZH86Hce-aeFDaedTnbkbg.ttf", "700" => "http://fonts.gstatic.com/s/khula/v1/UGVExGl-Jjs-YPpGv-MZ6w.ttf", "800" => "http://fonts.gstatic.com/s/khula/v1/Sccp_oOo8FWgbx5smie7xQ.ttf", "regular" => "http://fonts.gstatic.com/s/khula/v1/izcPIFyCSd16XI1Ak_Wk7Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Kite One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kiteone/v4/8ojWmgUc97m0f_i6sTqLoQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Knewave", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/knewave/v5/KGHM4XWr4iKnBMqzZLkPBg.ttf")), array("kind" => "webfonts#webfont", "family" => "Kotta One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kottaone/v4/AB2Q7hVw6niJYDgLvFXu5w.ttf")), array("kind" => "webfonts#webfont", "family" => "Koulen", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v10", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/koulen/v10/AAYOK8RSRO7FTskTzFuzNw.ttf")), array("kind" => "webfonts#webfont", "family" => "Kranky", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kranky/v6/C8dxxTS99-fZ84vWk8SDrg.ttf")), array("kind" => "webfonts#webfont", "family" => "Kreon", "category" => "serif", "variants" => array("300", "regular", "700"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/kreon/v9/HKtJRiq5C2zbq5N1IX32sA.ttf", "700" => "http://fonts.gstatic.com/s/kreon/v9/jh0dSmaPodjxISiblIUTkw.ttf", "regular" => "http://fonts.gstatic.com/s/kreon/v9/zA_IZt0u0S3cvHJu-n1oEg.ttf")), array("kind" => "webfonts#webfont", "family" => "Kristi", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kristi/v7/aRsgBQrkQkMlu4UPSnJyOQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Krona One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/kronaone/v4/zcQj4ljqTo166AdourlF9w.ttf")), array("kind" => "webfonts#webfont", "family" => "Kurale", "category" => "serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-05-14", "files" => array("regular" => "http://fonts.gstatic.com/s/kurale/v1/rxeyIcvQlT4XAWwNbXFCfw.ttf")), array("kind" => "webfonts#webfont", "family" => "La Belle Aurore", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/labelleaurore/v7/Irdbc4ASuUoWDjd_Wc3md123K2iuuhwZgaKapkyRTY8.ttf")), array("kind" => "webfonts#webfont", "family" => "Laila", "category" => "serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2016-03-14", "files" => array("300" => "http://fonts.gstatic.com/s/laila/v2/bLbIVEZF3IWSZ-in72GJvA.ttf", "500" => "http://fonts.gstatic.com/s/laila/v2/tkf8VtFvW9g3VsxQCA6WOQ.ttf", "600" => "http://fonts.gstatic.com/s/laila/v2/3EMP2L6JRQ4GaHIxCldCeA.ttf", "700" => "http://fonts.gstatic.com/s/laila/v2/R7P4z1xjcjecmjZ9GyhqHQ.ttf", "regular" => "http://fonts.gstatic.com/s/laila/v2/6iYor3edprH7360qtBGoag.ttf")), array("kind" => "webfonts#webfont", "family" => "Lakki Reddy", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lakkireddy/v3/Q5EpFa91FjW37t0FCnedaKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Lancelot", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lancelot/v6/XMT7T_oo_MQUGAnU2v-sdA.ttf")), array("kind" => "webfonts#webfont", "family" => "Lateef", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("arabic", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lateef/v10/PAsKCgi1qc7XPwvzo_I-DQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Lato", "category" => "sans-serif", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v11", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/lato/v11/Upp-ka9rLQmHYCsFgwL-eg.ttf", "300" => "http://fonts.gstatic.com/s/lato/v11/Ja02qOppOVq9jeRjWekbHg.ttf", "700" => "http://fonts.gstatic.com/s/lato/v11/iX_QxBBZLhNj5JHlTzHQzg.ttf", "900" => "http://fonts.gstatic.com/s/lato/v11/8TPEV6NbYWZlNsXjbYVv7w.ttf", "100italic" => "http://fonts.gstatic.com/s/lato/v11/zLegi10uS_9-fnUDISl0KA.ttf", "300italic" => "http://fonts.gstatic.com/s/lato/v11/dVebFcn7EV7wAKwgYestUg.ttf", "regular" => "http://fonts.gstatic.com/s/lato/v11/h7rISIcQapZBpei-sXwIwg.ttf", "italic" => "http://fonts.gstatic.com/s/lato/v11/P_dJOFJylV3A870UIOtr0w.ttf", "700italic" => "http://fonts.gstatic.com/s/lato/v11/WFcZakHrrCKeUJxHA4T_gw.ttf", "900italic" => "http://fonts.gstatic.com/s/lato/v11/draWperrI7n2xi35Cl08fA.ttf")), array("kind" => "webfonts#webfont", "family" => "League Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/leaguescript/v7/wnRFLvfabWK_DauqppD6vSeUSrabuTpOsMEiRLtKwk0.ttf")), array("kind" => "webfonts#webfont", "family" => "Leckerli One", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/leckerlione/v7/S2Y_iLrItTu8kIJTkS7DrC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Ledger", "category" => "serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ledger/v4/G432jp-tahOfWHbCYkI0jw.ttf")), array("kind" => "webfonts#webfont", "family" => "Lekton", "category" => "sans-serif", "variants" => array("regular", "italic", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/lekton/v7/WZw-uL8WTkx3SBVfTlevXQ.ttf", "regular" => "http://fonts.gstatic.com/s/lekton/v7/r483JYmxf5PjIm4jVAm8Yg.ttf", "italic" => "http://fonts.gstatic.com/s/lekton/v7/_UbDIPBA1wDqSbhp-OED7A.ttf")), array("kind" => "webfonts#webfont", "family" => "Lemon", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lemon/v5/wed1nNu4LNSu-3RoRVUhUw.ttf")), array("kind" => "webfonts#webfont", "family" => "Libre Baskerville", "category" => "serif", "variants" => array("regular", "italic", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/librebaskerville/v4/kH7K4InNTm7mmOXXjrA5v-xuswJKUVpBRfYFpz0W3Iw.ttf", "regular" => "http://fonts.gstatic.com/s/librebaskerville/v4/pR0sBQVcY0JZc_ciXjFsKyyZRYCSvpCzQKuMWnP5NDY.ttf", "italic" => "http://fonts.gstatic.com/s/librebaskerville/v4/QHIOz1iKF3bIEzRdDFaf5QnhapNS5Oi8FPrBRDLbsW4.ttf")), array("kind" => "webfonts#webfont", "family" => "Life Savers", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/lifesavers/v6/THQKqChyYUm97rNPVFdGGXe1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/lifesavers/v6/g49cUDk4Y1P0G5NMkMAm7qCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Lilita One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lilitaone/v4/vTxJQjbNV6BCBHx8sGDCVvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Lily Script One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lilyscriptone/v4/uPWsLVW8uiXqIBnE8ZwGPDjVlsJB_M_Q_LtZxsoxvlw.ttf")), array("kind" => "webfonts#webfont", "family" => "Limelight", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/limelight/v7/5dTfN6igsXjLjOy8QQShcg.ttf")), array("kind" => "webfonts#webfont", "family" => "Linden Hill", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lindenhill/v6/UgsC0txqd-E1yjvjutwm_KCWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/lindenhill/v6/OcS3bZcu8vJvIDH8Zic83keOrDcLawS7-ssYqLr2Xp4.ttf")), array("kind" => "webfonts#webfont", "family" => "Lobster", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "vietnamese", "latin-ext", "latin"), "version" => "v16", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lobster/v16/9LpJGtNuM1D8FAZ2BkJH2Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Lobster Two", "category" => "display", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/lobstertwo/v8/bmdxOflBqMqjEC0-kGsIiHe1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/lobstertwo/v8/xb9aY4w9ceh8JRzobID1naCWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/lobstertwo/v8/Ul_16MSbfayQv1I4QhLEoEeOrDcLawS7-ssYqLr2Xp4.ttf", "700italic" => "http://fonts.gstatic.com/s/lobstertwo/v8/LEkN2_no_6kFvRfiBZ8xpM_zJjSACmk0BRPxQqhnNLU.ttf")), array("kind" => "webfonts#webfont", "family" => "Londrina Outline", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/londrinaoutline/v5/lls08GOa1eT74p072l1AWJmp8DTZ6iHear7UV05iykg.ttf")), array("kind" => "webfonts#webfont", "family" => "Londrina Shadow", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/londrinashadow/v4/dNYuzPS_7eYgXFJBzMoKdbw6Z3rVA5KDSi7aQxS92Nk.ttf")), array("kind" => "webfonts#webfont", "family" => "Londrina Sketch", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/londrinasketch/v4/p7Ai06aT1Ycp_D2fyE3z69d6z_uhFGnpCOifUY1fJQo.ttf")), array("kind" => "webfonts#webfont", "family" => "Londrina Solid", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/londrinasolid/v4/yysorIEiYSBb0ylZjg791MR125CwGqh8XBqkBzea0LA.ttf")), array("kind" => "webfonts#webfont", "family" => "Lora", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/lora/v9/enKND5SfzQKkggBA_VnT1A.ttf", "regular" => "http://fonts.gstatic.com/s/lora/v9/aXJ7KVIGcejEy1abawZazg.ttf", "italic" => "http://fonts.gstatic.com/s/lora/v9/AN2EZaj2tFRpyveuNn9BOg.ttf", "700italic" => "http://fonts.gstatic.com/s/lora/v9/ivs9j3kYU65pR9QD9YFdzQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Love Ya Like A Sister", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/loveyalikeasister/v7/LzkxWS-af0Br2Sk_YgSJY-ad1xEP8DQfgfY8MH9aBUg.ttf")), array("kind" => "webfonts#webfont", "family" => "Loved by the King", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lovedbytheking/v6/wg03xD4cWigj4YDufLBSr8io2AFEwwMpu7y5KyiyAJc.ttf")), array("kind" => "webfonts#webfont", "family" => "Lovers Quarrel", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/loversquarrel/v4/gipdZ8b7pKb89MzQLAtJHLHLxci2ElvNEmOB303HLk0.ttf")), array("kind" => "webfonts#webfont", "family" => "Luckiest Guy", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/luckiestguy/v6/5718gH8nDy3hFVihOpkY5C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Lusitana", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/lusitana/v4/GWtZyUsONxgkdl3Mc1P7FKCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/lusitana/v4/l1h9VDomkwbdzbPdmLcUIw.ttf")), array("kind" => "webfonts#webfont", "family" => "Lustria", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/lustria/v4/gXAk0s4ai0X-TAOhYzZd1w.ttf")), array("kind" => "webfonts#webfont", "family" => "Macondo", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/macondo/v5/G6yPNUscRPQ8ufBXs_8yRQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Macondo Swash Caps", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/macondoswashcaps/v4/SsSR706z-MlvEH7_LS6JAPkkgYRHs6GSG949m-K6x2k.ttf")), array("kind" => "webfonts#webfont", "family" => "Magra", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/magra/v4/6fOM5sq5cIn8D0RjX8Lztw.ttf", "regular" => "http://fonts.gstatic.com/s/magra/v4/hoZ13bwCXBxuGZqAudgc5A.ttf")), array("kind" => "webfonts#webfont", "family" => "Maiden Orange", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/maidenorange/v6/ZhKIA2SPisEwdhW7g0RUWojjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Mako", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mako/v7/z5zSLmfPlv1uTVAdmJBLXg.ttf")), array("kind" => "webfonts#webfont", "family" => "Mallanna", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mallanna/v4/krCTa-CfMbtxqF0689CbuQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Mandali", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mandali/v4/0lF8yJ7fkyjXuqtSi5bWbQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Marcellus", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/marcellus/v4/UjiLZzumxWC9whJ86UtaYw.ttf")), array("kind" => "webfonts#webfont", "family" => "Marcellus SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/marcellussc/v4/_jugwxhkkynrvsfrxVx8gS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Marck Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/marckscript/v7/O_D1NAZVOFOobLbVtW3bci3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Margarine", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/margarine/v5/DJnJwIrcO_cGkjSzY3MERw.ttf")), array("kind" => "webfonts#webfont", "family" => "Marko One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/markoone/v6/hpP7j861sOAco43iDc4n4w.ttf")), array("kind" => "webfonts#webfont", "family" => "Marmelad", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/marmelad/v6/jI0_FBlSOIRLL0ePWOhOwQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Martel", "category" => "serif", "variants" => array("200", "300", "regular", "600", "700", "800", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-04-22", "files" => array("200" => "http://fonts.gstatic.com/s/martel/v1/_wfGdswZbat7P4tupHLA1w.ttf", "300" => "http://fonts.gstatic.com/s/martel/v1/SghoV2F2VPdVU3P0a4fa9w.ttf", "600" => "http://fonts.gstatic.com/s/martel/v1/Kt9uPhH1PvUwuZ5Y6zuAMQ.ttf", "700" => "http://fonts.gstatic.com/s/martel/v1/4OzIiKB5wE36xXL2U0vzWQ.ttf", "800" => "http://fonts.gstatic.com/s/martel/v1/RVF8drcQoRkRL7l_ZkpTlQ.ttf", "900" => "http://fonts.gstatic.com/s/martel/v1/iS0YUpFJoiLRlnyl40rpEA.ttf", "regular" => "http://fonts.gstatic.com/s/martel/v1/9ALu5czkaaf5zsYk6GJEnQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Martel Sans", "category" => "sans-serif", "variants" => array("200", "300", "regular", "600", "700", "800", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2015-12-08", "files" => array("200" => "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQEnzyIngrzGjGh22wPb6cGM.ttf", "300" => "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQC9-WlPSxbfiI49GsXo3q0g.ttf", "600" => "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQJZ7xm-Bj30Bj2KNdXDzSZg.ttf", "700" => "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQHe1Pd76Vl7zRpE7NLJQ7XU.ttf", "800" => "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQA89PwPrYLaRFJ-HNCU9NbA.ttf", "900" => "http://fonts.gstatic.com/s/martelsans/v2/7ajme85aKKx_SCWF59ImQCenaqEuufTBk9XMKnKmgDA.ttf", "regular" => "http://fonts.gstatic.com/s/martelsans/v2/91c8DPDZncMc0RFfhmc2RqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Marvel", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/marvel/v6/WrHDBL1RupWGo2UcdgxB3Q.ttf", "regular" => "http://fonts.gstatic.com/s/marvel/v6/Fg1dO8tWVb-MlyqhsbXEkg.ttf", "italic" => "http://fonts.gstatic.com/s/marvel/v6/HzyjFB-oR5usrc7Lxz9g8w.ttf", "700italic" => "http://fonts.gstatic.com/s/marvel/v6/Gzf5NT09Y6xskdQRj2kz1qCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Mate", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mate/v5/ooFviPcJ6hZP5bAE71Cawg.ttf", "italic" => "http://fonts.gstatic.com/s/mate/v5/5XwW6_cbisGvCX5qmNiqfA.ttf")), array("kind" => "webfonts#webfont", "family" => "Mate SC", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/matesc/v5/-YkIT2TZoPZF6pawKzDpWw.ttf")), array("kind" => "webfonts#webfont", "family" => "Maven Pro", "category" => "sans-serif", "variants" => array("regular", "500", "700", "900"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/mavenpro/v7/SQVfzoJBbj9t3aVcmbspRi3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/mavenpro/v7/uDssvmXgp7Nj3i336k_dSi3USBnSvpkopQaUR-2r7iU.ttf", "900" => "http://fonts.gstatic.com/s/mavenpro/v7/-91TwiFzqeL1F7Kh91APwS3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/mavenpro/v7/sqPJIFG4gqsjl-0q_46Gbw.ttf")), array("kind" => "webfonts#webfont", "family" => "McLaren", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mclaren/v4/OprvTGxaiINBKW_1_U0eoQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Meddon", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2015-08-12", "files" => array("regular" => "http://fonts.gstatic.com/s/meddon/v9/f8zJO98uu2EtSj9p7ci9RA.ttf")), array("kind" => "webfonts#webfont", "family" => "MedievalSharp", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/medievalsharp/v8/85X_PjV6tftJ0-rX7KYQkOe45sJkivqprK7VkUlzfg0.ttf")), array("kind" => "webfonts#webfont", "family" => "Medula One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/medulaone/v6/AasPgDQak81dsTGQHc5zUPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Megrim", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/megrim/v7/e-9jVUC9lv1zxaFQARuftw.ttf")), array("kind" => "webfonts#webfont", "family" => "Meie Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/meiescript/v4/oTIWE5MmPye-rCyVp_6KEqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Merienda", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/merienda/v4/GlwcvRLlgiVE2MBFQ4r0sKCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/merienda/v4/MYY6Og1qZlOQtPW2G95Y3A.ttf")), array("kind" => "webfonts#webfont", "family" => "Merienda One", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/meriendaone/v7/bCA-uDdUx6nTO8SjzCLXvS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Merriweather", "category" => "serif", "variants" => array("300", "300italic", "regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v11", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/merriweather/v11/ZvcMqxEwPfh2qDWBPxn6nqcQoVhARpoaILP7amxE_8g.ttf", "700" => "http://fonts.gstatic.com/s/merriweather/v11/ZvcMqxEwPfh2qDWBPxn6nkD2ttfZwueP-QU272T9-k4.ttf", "900" => "http://fonts.gstatic.com/s/merriweather/v11/ZvcMqxEwPfh2qDWBPxn6nqObDOjC3UL77puoeHsE3fw.ttf", "300italic" => "http://fonts.gstatic.com/s/merriweather/v11/EYh7Vl4ywhowqULgRdYwICna0FLWfcB-J_SAYmcAXaI.ttf", "regular" => "http://fonts.gstatic.com/s/merriweather/v11/RFda8w1V0eDZheqfcyQ4EC3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/merriweather/v11/So5lHxHT37p2SS4-t60SlPMZXuCXbOrAvx5R0IT5Oyo.ttf", "700italic" => "http://fonts.gstatic.com/s/merriweather/v11/EYh7Vl4ywhowqULgRdYwIPAs9-1nE9qOqhChW0m4nDE.ttf", "900italic" => "http://fonts.gstatic.com/s/merriweather/v11/EYh7Vl4ywhowqULgRdYwIBd0_s6jQr9r5s5OZYvtzBY.ttf")), array("kind" => "webfonts#webfont", "family" => "Merriweather Sans", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic", "700", "700italic", "800", "800italic"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/merriweathersans/v7/6LmGj5dOJopQKEkt88Gowan5N8K-_DP0e9e_v51obXQ.ttf", "700" => "http://fonts.gstatic.com/s/merriweathersans/v7/6LmGj5dOJopQKEkt88GowbqxG25nQNOioCZSK4sU-CA.ttf", "800" => "http://fonts.gstatic.com/s/merriweathersans/v7/6LmGj5dOJopQKEkt88GowYufzO2zUYSj5LqoJ3UGkco.ttf", "300italic" => "http://fonts.gstatic.com/s/merriweathersans/v7/nAqt4hiqwq3tzCecpgPmVdytE4nGXk2hYD5nJ740tBw.ttf", "regular" => "http://fonts.gstatic.com/s/merriweathersans/v7/AKu1CjQ4qnV8MUltkAX3sOAj_ty82iuwwDTNEYXGiyQ.ttf", "italic" => "http://fonts.gstatic.com/s/merriweathersans/v7/3Mz4hOHzs2npRMG3B1ascZ32VBCoA_HLsn85tSWZmdo.ttf", "700italic" => "http://fonts.gstatic.com/s/merriweathersans/v7/nAqt4hiqwq3tzCecpgPmVbuqAJxizi8Dk_SK5et7kMg.ttf", "800italic" => "http://fonts.gstatic.com/s/merriweathersans/v7/nAqt4hiqwq3tzCecpgPmVdDmPrYMy3aZO4LmnZsxTQw.ttf")), array("kind" => "webfonts#webfont", "family" => "Metal", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/metal/v9/zA3UOP13ooQcxjv04BZX5g.ttf")), array("kind" => "webfonts#webfont", "family" => "Metal Mania", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/metalmania/v6/isriV_rAUgj6bPWPN6l9QKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Metamorphous", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/metamorphous/v6/wGqUKXRinIYggz-BTRU9ei3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Metrophobic", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/metrophobic/v6/SaglWZWCrrv_D17u1i4v_aCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Michroma", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/michroma/v7/0c2XrW81_QsiKV8T9thumA.ttf")), array("kind" => "webfonts#webfont", "family" => "Milonga", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/milonga/v4/dzNdIUSTGFmy2ahovDRcWg.ttf")), array("kind" => "webfonts#webfont", "family" => "Miltonian", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/miltonian/v9/Z4HrYZyqm0BnNNzcCUfzoQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Miltonian Tattoo", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/miltoniantattoo/v10/1oU_8OGYwW46eh02YHydn2uk0YtI6thZkz1Hmh-odwg.ttf")), array("kind" => "webfonts#webfont", "family" => "Miniver", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/miniver/v5/4yTQohOH_cWKRS5laRFhYg.ttf")), array("kind" => "webfonts#webfont", "family" => "Miss Fajardose", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/missfajardose/v6/WcXjlQPKn6nBfr8LY3ktNu6rPKfVZo7L2bERcf0BDns.ttf")), array("kind" => "webfonts#webfont", "family" => "Modak", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/modak/v1/lMsN0QIKid-pCPvL0hH4nw.ttf")), array("kind" => "webfonts#webfont", "family" => "Modern Antiqua", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/modernantiqua/v6/8qX_tr6Xzy4t9fvZDXPkh6rFJ4O13IHVxZbM6yoslpo.ttf")), array("kind" => "webfonts#webfont", "family" => "Molengo", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/molengo/v7/jcjgeGuzv83I55AzOTpXNQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Molle", "category" => "handwriting", "variants" => array("italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("italic" => "http://fonts.gstatic.com/s/molle/v4/9XTdCsjPXifLqo5et-YoGA.ttf")), array("kind" => "webfonts#webfont", "family" => "Monda", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/monda/v4/EVOzZUyc_j1w2GuTgTAW1g.ttf", "regular" => "http://fonts.gstatic.com/s/monda/v4/qFMHZ9zvR6B_gnoIgosPrw.ttf")), array("kind" => "webfonts#webfont", "family" => "Monofett", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/monofett/v6/C6K5L799Rgxzg2brgOaqAw.ttf")), array("kind" => "webfonts#webfont", "family" => "Monoton", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/monoton/v6/aCz8ja_bE4dg-7agSvExdw.ttf")), array("kind" => "webfonts#webfont", "family" => "Monsieur La Doulaise", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/monsieurladoulaise/v5/IMAdMj6Eq9jZ46CPctFtMKP61oAqTJXlx5ZVOBmcPdM.ttf")), array("kind" => "webfonts#webfont", "family" => "Montaga", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/montaga/v4/PwTwUboiD-M4-mFjZfJs2A.ttf")), array("kind" => "webfonts#webfont", "family" => "Montez", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/montez/v6/kx58rLOWQQLGFM4pDHv5Ng.ttf")), array("kind" => "webfonts#webfont", "family" => "Montserrat", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/montserrat/v6/IQHow_FEYlDC4Gzy_m8fcgJKKGfqHaYFsRG-T3ceEVo.ttf", "regular" => "http://fonts.gstatic.com/s/montserrat/v6/Kqy6-utIpx_30Xzecmeo8_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Montserrat Alternates", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/montserratalternates/v4/YENqOGAVzwIHjYNjmKuAZpeqBKvsAhm-s2I4RVSXFfc.ttf", "regular" => "http://fonts.gstatic.com/s/montserratalternates/v4/z2n1Sjxk9souK3HCtdHuklPuEVRGaG9GCQnmM16YWq0.ttf")), array("kind" => "webfonts#webfont", "family" => "Montserrat Subrayada", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/montserratsubrayada/v4/wf-IKpsHcfm0C9uaz9IeGJvEcF1LWArDbGWgKZSH9go.ttf", "regular" => "http://fonts.gstatic.com/s/montserratsubrayada/v4/nzoCWCz0e9c7Mr2Gl8bbgrJymm6ilkk9f0nDA_sC_qk.ttf")), array("kind" => "webfonts#webfont", "family" => "Moul", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/moul/v8/Kb0ALQnfyXawP1a_P_gpTQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Moulpali", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/moulpali/v9/diD74BprGhmVkJoerKmrKA.ttf")), array("kind" => "webfonts#webfont", "family" => "Mountains of Christmas", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/mountainsofchristmas/v8/PymufKtHszoLrY0uiAYKNM9cPTbSBTrQyTa5TWAe3vE.ttf", "regular" => "http://fonts.gstatic.com/s/mountainsofchristmas/v8/dVGBFPwd6G44IWDbQtPew2Auds3jz1Fxb61CgfaGDr4.ttf")), array("kind" => "webfonts#webfont", "family" => "Mouse Memoirs", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mousememoirs/v4/NBFaaJFux_j0AQbAsW3QeH8f0n03UdmQgF_CLvNR2vg.ttf")), array("kind" => "webfonts#webfont", "family" => "Mr Bedfort", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mrbedfort/v5/81bGgHTRikLs_puEGshl7_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Mr Dafoe", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mrdafoe/v5/s32Q1S6ZkT7EaX53mUirvQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Mr De Haviland", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mrdehaviland/v5/fD8y4L6PJ4vqDk7z8Y8e27v4lrhng1lzu7-weKO6cw8.ttf")), array("kind" => "webfonts#webfont", "family" => "Mrs Saint Delafield", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mrssaintdelafield/v4/vuWagfFT7bj9lFtZOFBwmjHMBelqWf3tJeGyts2SmKU.ttf")), array("kind" => "webfonts#webfont", "family" => "Mrs Sheppards", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mrssheppards/v5/2WFsWMV3VUeCz6UVH7UjCn8f0n03UdmQgF_CLvNR2vg.ttf")), array("kind" => "webfonts#webfont", "family" => "Muli", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/muli/v7/VJw4F3ZHRAZ7Hmg3nQu5YQ.ttf", "300italic" => "http://fonts.gstatic.com/s/muli/v7/s-NKMCru8HiyjEt0ZDoBoA.ttf", "regular" => "http://fonts.gstatic.com/s/muli/v7/KJiP6KznxbALQgfJcDdPAw.ttf", "italic" => "http://fonts.gstatic.com/s/muli/v7/Cg0K_IWANs9xkNoxV7H1_w.ttf")), array("kind" => "webfonts#webfont", "family" => "Mystery Quest", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/mysteryquest/v4/467jJvg0c7HgucvBB9PLDyeUSrabuTpOsMEiRLtKwk0.ttf")), array("kind" => "webfonts#webfont", "family" => "NTR", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ntr/v4/e7H4ZLtGfVOYyOupo6T12g.ttf")), array("kind" => "webfonts#webfont", "family" => "Neucha", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("cyrillic", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/neucha/v8/bijdhB-TzQdtpl0ykhGh4Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Neuton", "category" => "serif", "variants" => array("200", "300", "regular", "italic", "700", "800"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/neuton/v8/DA3Mkew3XqSkPpi1f4tJow.ttf", "300" => "http://fonts.gstatic.com/s/neuton/v8/xrc_aZ2hx-gdeV0mlY8Vww.ttf", "700" => "http://fonts.gstatic.com/s/neuton/v8/gnWpkWY7DirkKiovncYrfg.ttf", "800" => "http://fonts.gstatic.com/s/neuton/v8/XPzBQV4lY6enLxQG9cF1jw.ttf", "regular" => "http://fonts.gstatic.com/s/neuton/v8/9R-MGIOQUdjAVeB6nE6PcQ.ttf", "italic" => "http://fonts.gstatic.com/s/neuton/v8/uVMT3JOB5BNFi3lgPp6kEg.ttf")), array("kind" => "webfonts#webfont", "family" => "New Rocker", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/newrocker/v5/EFUWzHJedEkpW399zYOHofesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "News Cycle", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v13", "lastModified" => "2015-04-16", "files" => array("700" => "http://fonts.gstatic.com/s/newscycle/v13/G28Ny31cr5orMqEQy6ljtwJKKGfqHaYFsRG-T3ceEVo.ttf", "regular" => "http://fonts.gstatic.com/s/newscycle/v13/xyMAr8VfiUzIOvS1abHJO_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Niconne", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/niconne/v6/ZA-mFw2QNXodx5y7kfELBg.ttf")), array("kind" => "webfonts#webfont", "family" => "Nixie One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/nixieone/v7/h6kQfmzm0Shdnp3eswRaqQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Nobile", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/nobile/v7/9p6M-Yrg_r_QPmSD1skrOg.ttf", "regular" => "http://fonts.gstatic.com/s/nobile/v7/lC_lPi1ddtN38iXTCRh6ow.ttf", "italic" => "http://fonts.gstatic.com/s/nobile/v7/vGmrpKzWQQSrb-PR6FWBIA.ttf", "700italic" => "http://fonts.gstatic.com/s/nobile/v7/oQ1eYPaXV638N03KvsNvyKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Nokora", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-06", "files" => array("700" => "http://fonts.gstatic.com/s/nokora/v9/QMqqa4QEOhQpiig3cAPmbQ.ttf", "regular" => "http://fonts.gstatic.com/s/nokora/v9/dRyz1JfnyKPNaRcBNX9F9A.ttf")), array("kind" => "webfonts#webfont", "family" => "Norican", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/norican/v4/SHnSqhYAWG5sZTWcPzEHig.ttf")), array("kind" => "webfonts#webfont", "family" => "Nosifer", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/nosifer/v5/7eJGoIuHRrtcG00j6CptSA.ttf")), array("kind" => "webfonts#webfont", "family" => "Nothing You Could Do", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/nothingyoucoulddo/v6/jpk1K3jbJoyoK0XKaSyQAf-TpkXjXYGWiJZAEtBRjPU.ttf")), array("kind" => "webfonts#webfont", "family" => "Noticia Text", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/noticiatext/v6/pEko-RqEtp45bE2P80AAKUD2ttfZwueP-QU272T9-k4.ttf", "regular" => "http://fonts.gstatic.com/s/noticiatext/v6/wdyV6x3eKpdeUPQ7BJ5uUC3USBnSvpkopQaUR-2r7iU.ttf", "italic" => "http://fonts.gstatic.com/s/noticiatext/v6/dAuxVpkYE_Q_IwIm6elsKPMZXuCXbOrAvx5R0IT5Oyo.ttf", "700italic" => "http://fonts.gstatic.com/s/noticiatext/v6/-rQ7V8ARjf28_b7kRa0JuvAs9-1nE9qOqhChW0m4nDE.ttf")), array("kind" => "webfonts#webfont", "family" => "Noto Sans", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "devanagari", "latin", "greek-ext"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/notosans/v6/PIbvSEyHEdL91QLOQRnZ1y3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/notosans/v6/0Ue9FiUJwVhi4NGfHJS5uA.ttf", "italic" => "http://fonts.gstatic.com/s/notosans/v6/dLcNKMgJ1H5RVoZFraDz0qCWcynf_cDxXwCLxiixG1c.ttf", "700italic" => "http://fonts.gstatic.com/s/notosans/v6/9Z3uUWMRR7crzm1TjRicDne1Pd76Vl7zRpE7NLJQ7XU.ttf")), array("kind" => "webfonts#webfont", "family" => "Noto Serif", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/notoserif/v4/lJAvZoKA5NttpPc9yc6lPQJKKGfqHaYFsRG-T3ceEVo.ttf", "regular" => "http://fonts.gstatic.com/s/notoserif/v4/zW6mc7bC1CWw8dH0yxY8JfesZW2xOQ-xsNqO47m55DA.ttf", "italic" => "http://fonts.gstatic.com/s/notoserif/v4/HQXBIwLHsOJCNEQeX9kNzy3USBnSvpkopQaUR-2r7iU.ttf", "700italic" => "http://fonts.gstatic.com/s/notoserif/v4/Wreg0Be4tcFGM2t6VWytvED2ttfZwueP-QU272T9-k4.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Cut", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novacut/v8/6q12jWcBvj0KO2cMRP97tA.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Flat", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novaflat/v8/pK7a0CoGzI684qe_XSHBqQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Mono", "category" => "monospace", "variants" => array("regular"), "subsets" => array("greek", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novamono/v7/6-SChr5ZIaaasJFBkgrLNw.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Oval", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novaoval/v8/VuukVpKP8BwUf8o9W5LYQQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Round", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novaround/v8/7-cK3Ari_8XYYFgVMxVhDvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Script", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novascript/v8/dEvxQDLgx1M1TKY-NmBWYaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Slim", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novaslim/v8/rPYXC81_VL2EW-4CzBX65g.ttf")), array("kind" => "webfonts#webfont", "family" => "Nova Square", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/novasquare/v8/BcBzXoaDzYX78rquGXVuSqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Numans", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/numans/v6/g5snI2p6OEjjTNmTHyBdiQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Nunito", "category" => "sans-serif", "variants" => array("300", "regular", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/nunito/v7/zXQvrWBJqUooM7Xv98MrQw.ttf", "700" => "http://fonts.gstatic.com/s/nunito/v7/aEdlqgMuYbpe4U3TnqOQMA.ttf", "regular" => "http://fonts.gstatic.com/s/nunito/v7/ySZTeT3IuzJj0GK6uGpbBg.ttf")), array("kind" => "webfonts#webfont", "family" => "Odor Mean Chey", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/odormeanchey/v8/GK3E7EjPoBkeZhYshGFo0eVKG8sq4NyGgdteJLvqLDs.ttf")), array("kind" => "webfonts#webfont", "family" => "Offside", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/offside/v4/v0C913SB8wqQUvcu1faUqw.ttf")), array("kind" => "webfonts#webfont", "family" => "Old Standard TT", "category" => "serif", "variants" => array("regular", "italic", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/oldstandardtt/v7/5Ywdce7XEbTSbxs__4X1_HJqbZqK7TdZ58X80Q_Lw8Y.ttf", "regular" => "http://fonts.gstatic.com/s/oldstandardtt/v7/n6RTCDcIPWSE8UNBa4k-DLcB5jyhm1VsHs65c3QNDr0.ttf", "italic" => "http://fonts.gstatic.com/s/oldstandardtt/v7/QQT_AUSp4AV4dpJfIN7U5PWrQzeMtsHf8QsWQ2cZg3c.ttf")), array("kind" => "webfonts#webfont", "family" => "Oldenburg", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/oldenburg/v4/dqA_M_uoCVXZbCO-oKBTnQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Oleo Script", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/oleoscript/v5/hudNQFKFl98JdNnlo363fne1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/oleoscript/v5/21stZcmPyzbQVXtmGegyqKCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Oleo Script Swash Caps", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/HMO3ftxA9AU5floml9c755reFYaXZ4zuJXJ8fr8OO1g.ttf", "regular" => "http://fonts.gstatic.com/s/oleoscriptswashcaps/v4/vdWhGqsBUAP-FF3NOYTe4iMF4kXAPemmyaDpMXQ31P0.ttf")), array("kind" => "webfonts#webfont", "family" => "Open Sans", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic", "600", "600italic", "700", "700italic", "800", "800italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v13", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTS3USBnSvpkopQaUR-2r7iU.ttf", "600" => "http://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSi3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzC3USBnSvpkopQaUR-2r7iU.ttf", "800" => "http://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hi3USBnSvpkopQaUR-2r7iU.ttf", "300italic" => "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxi9-WlPSxbfiI49GsXo3q0g.ttf", "regular" => "http://fonts.gstatic.com/s/opensans/v13/IgZJs4-7SA1XX_edsoXWog.ttf", "italic" => "http://fonts.gstatic.com/s/opensans/v13/O4NhV7_qs9r9seTo7fnsVKCWcynf_cDxXwCLxiixG1c.ttf", "600italic" => "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxpZ7xm-Bj30Bj2KNdXDzSZg.ttf", "700italic" => "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxne1Pd76Vl7zRpE7NLJQ7XU.ttf", "800italic" => "http://fonts.gstatic.com/s/opensans/v13/PRmiXeptR36kaC0GEAetxg89PwPrYLaRFJ-HNCU9NbA.ttf")), array("kind" => "webfonts#webfont", "family" => "Open Sans Condensed", "category" => "sans-serif", "variants" => array("300", "300italic", "700"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xEMwSSh38KQVJx4ABtsZTnA.ttf", "700" => "http://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xBEM87DM3yorPOrvA-vB930.ttf", "300italic" => "http://fonts.gstatic.com/s/opensanscondensed/v10/jIXlqT1WKafUSwj6s9AzV4_LkTZ_uhAwfmGJ084hlvM.ttf")), array("kind" => "webfonts#webfont", "family" => "Oranienbaum", "category" => "serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/oranienbaum/v5/M98jYwCSn0PaFhXXgviCoaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Orbitron", "category" => "sans-serif", "variants" => array("regular", "500", "700", "900"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/orbitron/v7/p-y_ffzMdo5JN_7ia0vYEqCWcynf_cDxXwCLxiixG1c.ttf", "700" => "http://fonts.gstatic.com/s/orbitron/v7/PS9_6SLkY1Y6OgPO3APr6qCWcynf_cDxXwCLxiixG1c.ttf", "900" => "http://fonts.gstatic.com/s/orbitron/v7/2I3-8i9hT294TE_pyjy9SaCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/orbitron/v7/DY8swouAZjR3RaUPRf0HDQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Oregano", "category" => "display", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/oregano/v4/UiLhqNixVv2EpjRoBG6axA.ttf", "italic" => "http://fonts.gstatic.com/s/oregano/v4/_iwqGEht6XsAuEaCbYG64Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Orienta", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/orienta/v4/_NKSk93mMs0xsqtfjCsB3Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Original Surfer", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/originalsurfer/v5/gdHw6HpSIN4D6Xt7pi1-qIkEz33TDwAZczo_6fY7eg0.ttf")), array("kind" => "webfonts#webfont", "family" => "Oswald", "category" => "sans-serif", "variants" => array("300", "regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/oswald/v10/y3tZpCdiRD4oNRRYFcAR5Q.ttf", "700" => "http://fonts.gstatic.com/s/oswald/v10/7wj8ldV_5Ti37rHa0m1DDw.ttf", "regular" => "http://fonts.gstatic.com/s/oswald/v10/uLEd2g2vJglLPfsBF91DCg.ttf")), array("kind" => "webfonts#webfont", "family" => "Over the Rainbow", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/overtherainbow/v7/6gp-gkpI2kie2dHQQLM2jQBdxkZd83xOSx-PAQ2QmiI.ttf")), array("kind" => "webfonts#webfont", "family" => "Overlock", "category" => "display", "variants" => array("regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/overlock/v5/Fexr8SqXM8Bm_gEVUA7AKaCWcynf_cDxXwCLxiixG1c.ttf", "900" => "http://fonts.gstatic.com/s/overlock/v5/YPJCVTT8ZbG3899l_-KIGqCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/overlock/v5/Z8oYsGi88-E1cUB8YBFMAg.ttf", "italic" => "http://fonts.gstatic.com/s/overlock/v5/rq6EacukHROOBrFrK_zF6_esZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/overlock/v5/wFWnYgeXKYBks6gEUwYnfAJKKGfqHaYFsRG-T3ceEVo.ttf", "900italic" => "http://fonts.gstatic.com/s/overlock/v5/iOZhxT2zlg7W5ij_lb-oDp0EAVxt0G0biEntp43Qt6E.ttf")), array("kind" => "webfonts#webfont", "family" => "Overlock SC", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/overlocksc/v5/8D7HYDsvS_g1GhBnlHzgzaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Ovo", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ovo/v7/mFg27dimu3s9t09qjCwB1g.ttf")), array("kind" => "webfonts#webfont", "family" => "Oxygen", "category" => "sans-serif", "variants" => array("300", "regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/oxygen/v5/lZ31r0bR1Bzt_DfGZu1S8A.ttf", "700" => "http://fonts.gstatic.com/s/oxygen/v5/yLqkmDwuNtt5pSqsJmhyrg.ttf", "regular" => "http://fonts.gstatic.com/s/oxygen/v5/uhoyAE7XlQL22abzQieHjw.ttf")), array("kind" => "webfonts#webfont", "family" => "Oxygen Mono", "category" => "monospace", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/oxygenmono/v4/DigTu7k4b7OmM8ubt1Qza6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "PT Mono", "category" => "monospace", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ptmono/v4/QUbM8H9yJK5NhpQ0REO6Wg.ttf")), array("kind" => "webfonts#webfont", "family" => "PT Sans", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ptsans/v8/F51BEgHuR0tYHxF0bD4vwvesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/ptsans/v8/UFoEz2uiuMypUGZL1NKoeg.ttf", "italic" => "http://fonts.gstatic.com/s/ptsans/v8/yls9EYWOd496wiu7qzfgNg.ttf", "700italic" => "http://fonts.gstatic.com/s/ptsans/v8/lILlYDvubYemzYzN7GbLkC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "PT Sans Caption", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ptsanscaption/v9/Q-gJrFokeE7JydPpxASt25tc0eyfI4QDEsobEEpk_hA.ttf", "regular" => "http://fonts.gstatic.com/s/ptsanscaption/v9/OXYTDOzBcXU8MTNBvBHeSW8by34Z3mUMtM-o4y-SHCY.ttf")), array("kind" => "webfonts#webfont", "family" => "PT Sans Narrow", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ptsansnarrow/v7/Q_pTky3Sc3ubRibGToTAYsLtdzs3iyjn_YuT226ZsLU.ttf", "regular" => "http://fonts.gstatic.com/s/ptsansnarrow/v7/UyYrYy3ltEffJV9QueSi4ZTvAuddT2xDMbdz0mdLyZY.ttf")), array("kind" => "webfonts#webfont", "family" => "PT Serif", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ptserif/v8/kyZw18tqQ5if-_wpmxxOeKCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/ptserif/v8/sAo427rn3-QL9sWCbMZXhA.ttf", "italic" => "http://fonts.gstatic.com/s/ptserif/v8/9khWhKzhpkH0OkNnBKS3n_esZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/ptserif/v8/Foydq9xJp--nfYIx2TBz9QJKKGfqHaYFsRG-T3ceEVo.ttf")), array("kind" => "webfonts#webfont", "family" => "PT Serif Caption", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("cyrillic", "latin-ext", "cyrillic-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ptserifcaption/v8/7xkFOeTxxO1GMC1suOUYWVsRioCqs5fohhaYel24W3k.ttf", "italic" => "http://fonts.gstatic.com/s/ptserifcaption/v8/0kfPsmrmTSgiec7u_Wa0DB1mqvzPHelJwRcF_s_EUM0.ttf")), array("kind" => "webfonts#webfont", "family" => "Pacifico", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pacifico/v7/GIrpeRY1r5CzbfL8r182lw.ttf")), array("kind" => "webfonts#webfont", "family" => "Palanquin", "category" => "sans-serif", "variants" => array("100", "200", "300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/palanquin/v1/Hu0eGDVGK_g4saUFu6AK3KCWcynf_cDxXwCLxiixG1c.ttf", "200" => "http://fonts.gstatic.com/s/palanquin/v1/pqXYXD7-VI5ezTjeqQOcyC3USBnSvpkopQaUR-2r7iU.ttf", "300" => "http://fonts.gstatic.com/s/palanquin/v1/c0-J5OCAagpFCKkKraz-Ey3USBnSvpkopQaUR-2r7iU.ttf", "500" => "http://fonts.gstatic.com/s/palanquin/v1/wLvvkEcZMKy95afLWh2EfC3USBnSvpkopQaUR-2r7iU.ttf", "600" => "http://fonts.gstatic.com/s/palanquin/v1/405UIAv95_yZkCECrH6y-i3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/palanquin/v1/-UtkePo3NFvxEN3rGCtTvi3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/palanquin/v1/xCwBUoAEV0kzCDwerAZ0Aw.ttf")), array("kind" => "webfonts#webfont", "family" => "Palanquin Dark", "category" => "sans-serif", "variants" => array("regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-maMZTo-EwKMRQt3RWHocLi0.ttf", "600" => "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-mVNxaunw8i4Gywrk2SigRnk.ttf", "700" => "http://fonts.gstatic.com/s/palanquindark/v1/iXyBGf5UbFUu6BG8hOY-mWToair6W0TEE44XrlfKbiM.ttf", "regular" => "http://fonts.gstatic.com/s/palanquindark/v1/PamTqrrgbBh_M3702w39rOfChn3JSg5yz_Q_xmrKQN0.ttf")), array("kind" => "webfonts#webfont", "family" => "Paprika", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/paprika/v4/b-VpyoRSieBdB5BPJVF8HQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Parisienne", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/parisienne/v4/TW74B5QISJNx9moxGlmJfvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Passero One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/passeroone/v8/Yc-7nH5deCCv9Ed0MMnAQqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Passion One", "category" => "display", "variants" => array("regular", "700", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/passionone/v6/feOcYDy2R-f3Ysy72PYJ2ne1Pd76Vl7zRpE7NLJQ7XU.ttf", "900" => "http://fonts.gstatic.com/s/passionone/v6/feOcYDy2R-f3Ysy72PYJ2ienaqEuufTBk9XMKnKmgDA.ttf", "regular" => "http://fonts.gstatic.com/s/passionone/v6/1UIK1tg3bKJ4J3o35M4heqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Pathway Gothic One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pathwaygothicone/v4/Lqv9ztoTUV8Q0FmQZzPqaA6A6xIYD7vYcYDop1i-K-c.ttf")), array("kind" => "webfonts#webfont", "family" => "Patrick Hand", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/patrickhand/v10/9BG3JJgt_HlF3NpEUehL0C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Patrick Hand SC", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/patrickhandsc/v4/OYFWCgfCR-7uHIovjUZXsbAgSRh1LpJXlLfl8IbsmHg.ttf")), array("kind" => "webfonts#webfont", "family" => "Patua One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/patuaone/v6/njZwotTYjswR4qdhsW-kJw.ttf")), array("kind" => "webfonts#webfont", "family" => "Paytone One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/paytoneone/v8/3WCxC7JAJjQHQVoIE0ZwvqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Peddana", "category" => "serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/peddana/v4/zaSZuj_GhmC8AOTugOROnA.ttf")), array("kind" => "webfonts#webfont", "family" => "Peralta", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/peralta/v4/cTJX5KEuc0GKRU9NXSm-8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Permanent Marker", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/permanentmarker/v5/9vYsg5VgPHKK8SXYbf3sMol14xj5tdg9OHF8w4E7StQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Petit Formal Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/petitformalscript/v4/OEZwr2-ovBsq2n3ACCKoEvVPl2Gjtxj0D6F7QLy1VQc.ttf")), array("kind" => "webfonts#webfont", "family" => "Petrona", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/petrona/v5/nnQwxlP6dhrGovYEFtemTg.ttf")), array("kind" => "webfonts#webfont", "family" => "Philosopher", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/philosopher/v7/napvkewXG9Gqby5vwGHICHe1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/philosopher/v7/oZLTrB9jmJsyV0u_T0TKEaCWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/philosopher/v7/_9Hnc_gz9k7Qq6uKaeHKmUeOrDcLawS7-ssYqLr2Xp4.ttf", "700italic" => "http://fonts.gstatic.com/s/philosopher/v7/PuKlryTcvTj7-qZWfLCFIM_zJjSACmk0BRPxQqhnNLU.ttf")), array("kind" => "webfonts#webfont", "family" => "Piedra", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/piedra/v5/owf-AvEEyAj9LJ2tVZ_3Mw.ttf")), array("kind" => "webfonts#webfont", "family" => "Pinyon Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pinyonscript/v6/TzghnhfCn7TuE73f-CBQ0CeUSrabuTpOsMEiRLtKwk0.ttf")), array("kind" => "webfonts#webfont", "family" => "Pirata One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pirataone/v4/WnbD86B4vB2ckYcL7oxuhvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Plaster", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/plaster/v7/O4QG9Z5116CXyfJdR9zxLw.ttf")), array("kind" => "webfonts#webfont", "family" => "Play", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/play/v7/crPhg6I0alLI-MpB3vW-zw.ttf", "regular" => "http://fonts.gstatic.com/s/play/v7/GWvfObW8LhtsOX333MCpBg.ttf")), array("kind" => "webfonts#webfont", "family" => "Playball", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/playball/v6/3hOFiQm_EUzycTpcN9uz4w.ttf")), array("kind" => "webfonts#webfont", "family" => "Playfair Display", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/playfairdisplay/v10/UC3ZEjagJi85gF9qFaBgICsv6SrURqJprbhH_C1Mw8w.ttf", "900" => "http://fonts.gstatic.com/s/playfairdisplay/v10/UC3ZEjagJi85gF9qFaBgIKqwMe2wjvZrAR44M0BJZ48.ttf", "regular" => "http://fonts.gstatic.com/s/playfairdisplay/v10/2NBgzUtEeyB-Xtpr9bm1CV6uyC_qD11hrFQ6EGgTJWI.ttf", "italic" => "http://fonts.gstatic.com/s/playfairdisplay/v10/9MkijrV-dEJ0-_NWV7E6NzMsbnvDNEBX25F5HWk9AhI.ttf", "700italic" => "http://fonts.gstatic.com/s/playfairdisplay/v10/n7G4PqJvFP2Kubl0VBLDECsYW3XoOVcYyYdp9NzzS9E.ttf", "900italic" => "http://fonts.gstatic.com/s/playfairdisplay/v10/n7G4PqJvFP2Kubl0VBLDEC0JfJ4xmm7j1kL6D7mPxrA.ttf")), array("kind" => "webfonts#webfont", "family" => "Playfair Display SC", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic", "900", "900italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/playfairdisplaysc/v5/5ggqGkvWJU_TtW2W8cEubA-Amcyomnuy4WsCiPxGHjw.ttf", "900" => "http://fonts.gstatic.com/s/playfairdisplaysc/v5/5ggqGkvWJU_TtW2W8cEubKXL3C32k275YmX_AcBPZ7w.ttf", "regular" => "http://fonts.gstatic.com/s/playfairdisplaysc/v5/G0-tvBxd4eQRdwFKB8dRkcpjYTDWIvcAwAccqeW9uNM.ttf", "italic" => "http://fonts.gstatic.com/s/playfairdisplaysc/v5/myuYiFR-4NTrUT4w6TKls2klJsJYggW8rlNoTOTuau0.ttf", "700italic" => "http://fonts.gstatic.com/s/playfairdisplaysc/v5/6X0OQrQhEEnPo56RalREX4krgPi80XvBcbTwmz-rgmU.ttf", "900italic" => "http://fonts.gstatic.com/s/playfairdisplaysc/v5/6X0OQrQhEEnPo56RalREX8Zag2q3ssKz8uH1RU4a9gs.ttf")), array("kind" => "webfonts#webfont", "family" => "Podkova", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/podkova/v8/SqW4aa8m_KVrOgYSydQ33vesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/podkova/v8/eylljyGVfB8ZUQjYY3WZRQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Poiret One", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/poiretone/v4/dWcYed048E5gHGDIt8i1CPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Poller One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pollerone/v6/dkctmDlTPcZ6boC8662RA_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Poly", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/poly/v7/bcMAuiacS2qkd54BcwW6_Q.ttf", "italic" => "http://fonts.gstatic.com/s/poly/v7/Zkx-eIlZSjKUrPGYhV5PeA.ttf")), array("kind" => "webfonts#webfont", "family" => "Pompiere", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pompiere/v6/o_va2p9CD5JfmFohAkGZIA.ttf")), array("kind" => "webfonts#webfont", "family" => "Pontano Sans", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pontanosans/v4/gTHiwyxi6S7iiHpqAoiE3C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Poppins", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/poppins/v1/VIeViZ2fPtYBt3B2fQZplvesZW2xOQ-xsNqO47m55DA.ttf", "500" => "http://fonts.gstatic.com/s/poppins/v1/4WGKlFyjcmCFVl8pRsgZ9vesZW2xOQ-xsNqO47m55DA.ttf", "600" => "http://fonts.gstatic.com/s/poppins/v1/-zOABrCWORC3lyDh-ajNnPesZW2xOQ-xsNqO47m55DA.ttf", "700" => "http://fonts.gstatic.com/s/poppins/v1/8JitanEsk5aDh7mDYs-fYfesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/poppins/v1/hlvAxH6aIdOjWlLzgm0jqg.ttf")), array("kind" => "webfonts#webfont", "family" => "Port Lligat Sans", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/portlligatsans/v5/CUEdhRk7oC7up0p6t0g4P6mASEpx5X0ZpsuJOuvfOGA.ttf")), array("kind" => "webfonts#webfont", "family" => "Port Lligat Slab", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/portlligatslab/v5/CUEdhRk7oC7up0p6t0g4PxLSPACXvawUYCBEnHsOe30.ttf")), array("kind" => "webfonts#webfont", "family" => "Pragati Narrow", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2015-06-10", "files" => array("700" => "http://fonts.gstatic.com/s/pragatinarrow/v2/DnSI1zRkc0CY-hI5SC3q3MLtdzs3iyjn_YuT226ZsLU.ttf", "regular" => "http://fonts.gstatic.com/s/pragatinarrow/v2/HzG2TfC862qPNsZsV_djPpTvAuddT2xDMbdz0mdLyZY.ttf")), array("kind" => "webfonts#webfont", "family" => "Prata", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/prata/v6/3gmx8r842loRRm9iQkCDGg.ttf")), array("kind" => "webfonts#webfont", "family" => "Preahvihear", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/preahvihear/v8/82tDI-xTc53CxxOzEG4hDaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Press Start 2P", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "greek", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/pressstart2p/v4/8Lg6LX8-ntOHUQnvQ0E7o1jfl3W46Sz5gOkEVhcFWF4.ttf")), array("kind" => "webfonts#webfont", "family" => "Princess Sofia", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/princesssofia/v4/8g5l8r9BM0t1QsXLTajDe-wjmA7ie-lFcByzHGRhCIg.ttf")), array("kind" => "webfonts#webfont", "family" => "Prociono", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/prociono/v6/43ZYDHWogdFeNBWTl6ksmw.ttf")), array("kind" => "webfonts#webfont", "family" => "Prosto One", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/prostoone/v5/bsqnAElAqk9kX7eABTRFJPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Puritan", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/puritan/v8/pJS2SdwI0SCiVnO0iQSFT_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/puritan/v8/wv_RtgVBSCn-or2MC0n4Kg.ttf", "italic" => "http://fonts.gstatic.com/s/puritan/v8/BqZX8Tp200LeMv1KlzXgLQ.ttf", "700italic" => "http://fonts.gstatic.com/s/puritan/v8/rFG3XkMJL75nUNZwCEIJqC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Purple Purse", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/purplepurse/v5/Q5heFUrdmei9axbMITxxxS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Quando", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-03-22", "files" => array("regular" => "http://fonts.gstatic.com/s/quando/v5/03nDiEZuO2-h3xvtG6UmHg.ttf")), array("kind" => "webfonts#webfont", "family" => "Quantico", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/quantico/v5/OVZZzjcZ3Hkq2ojVcUtDjaCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/quantico/v5/pwSnP8Xpaix2rIz99HrSlQ.ttf", "italic" => "http://fonts.gstatic.com/s/quantico/v5/KQhDd2OsZi6HiITUeFQ2U_esZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/quantico/v5/HeCYRcZbdRso3ZUu01ELbQJKKGfqHaYFsRG-T3ceEVo.ttf")), array("kind" => "webfonts#webfont", "family" => "Quattrocento", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/quattrocento/v7/Uvi-cRwyvqFpl9j3oT2mqkD2ttfZwueP-QU272T9-k4.ttf", "regular" => "http://fonts.gstatic.com/s/quattrocento/v7/WZDISdyil4HsmirlOdBRFC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Quattrocento Sans", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/quattrocentosans/v8/tXSgPxDl7Lk8Zr_5qX8FIbqxG25nQNOioCZSK4sU-CA.ttf", "regular" => "http://fonts.gstatic.com/s/quattrocentosans/v8/efd6FGWWGX5Z3ztwLBrG9eAj_ty82iuwwDTNEYXGiyQ.ttf", "italic" => "http://fonts.gstatic.com/s/quattrocentosans/v8/8PXYbvM__bjl0rBnKiByg532VBCoA_HLsn85tSWZmdo.ttf", "700italic" => "http://fonts.gstatic.com/s/quattrocentosans/v8/8N1PdXpbG6RtFvTjl-5E7buqAJxizi8Dk_SK5et7kMg.ttf")), array("kind" => "webfonts#webfont", "family" => "Questrial", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/questrial/v6/MoHHaw_WwNs_hd9ob1zTVw.ttf")), array("kind" => "webfonts#webfont", "family" => "Quicksand", "category" => "sans-serif", "variants" => array("300", "regular", "700"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/quicksand/v5/qhfoJiLu10kFjChCCTvGlC3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/quicksand/v5/32nyIRHyCu6iqEka_hbKsi3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/quicksand/v5/Ngv3fIJjKB7sD-bTUGIFCA.ttf")), array("kind" => "webfonts#webfont", "family" => "Quintessential", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/quintessential/v4/mmk6ioesnTrEky_Zb92E5s02lXbtMOtZWfuxKeMZO8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Qwigley", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/qwigley/v6/aDqxws-KubFID85TZHFouw.ttf")), array("kind" => "webfonts#webfont", "family" => "Racing Sans One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/racingsansone/v4/1r3DpWaCiT7y3PD4KgkNyDjVlsJB_M_Q_LtZxsoxvlw.ttf")), array("kind" => "webfonts#webfont", "family" => "Radley", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/radley/v9/FgE9di09a-mXGzAIyI6Q9Q.ttf", "italic" => "http://fonts.gstatic.com/s/radley/v9/Z_JcACuPAOO2f9kzQcGRug.ttf")), array("kind" => "webfonts#webfont", "family" => "Rajdhani", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/rajdhani/v5/9pItuEhQZVGdq8spnHTku6CWcynf_cDxXwCLxiixG1c.ttf", "500" => "http://fonts.gstatic.com/s/rajdhani/v5/nd_5ZpVwm710HcLual0fBqCWcynf_cDxXwCLxiixG1c.ttf", "600" => "http://fonts.gstatic.com/s/rajdhani/v5/5fnmZahByDeTtgxIiqbJSaCWcynf_cDxXwCLxiixG1c.ttf", "700" => "http://fonts.gstatic.com/s/rajdhani/v5/UBK6d2Hg7X7wYLlF92aXW6CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/rajdhani/v5/Wfy5zp4PGFAFS7-Wetehzw.ttf")), array("kind" => "webfonts#webfont", "family" => "Raleway", "category" => "sans-serif", "variants" => array("100", "100italic", "200", "200italic", "300", "300italic", "regular", "italic", "500", "500italic", "600", "600italic", "700", "700italic", "800", "800italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/raleway/v10/UDfD6oxBaBnmFJwQ7XAFNw.ttf", "200" => "http://fonts.gstatic.com/s/raleway/v10/LAQwev4hdCtYkOYX4Oc7nPesZW2xOQ-xsNqO47m55DA.ttf", "300" => "http://fonts.gstatic.com/s/raleway/v10/2VvSZU2kb4DZwFfRM4fLQPesZW2xOQ-xsNqO47m55DA.ttf", "500" => "http://fonts.gstatic.com/s/raleway/v10/348gn6PEmbLDWlHbbV15d_esZW2xOQ-xsNqO47m55DA.ttf", "600" => "http://fonts.gstatic.com/s/raleway/v10/M7no6oPkwKYJkedjB1wqEvesZW2xOQ-xsNqO47m55DA.ttf", "700" => "http://fonts.gstatic.com/s/raleway/v10/VGEV9-DrblisWOWLbK-1XPesZW2xOQ-xsNqO47m55DA.ttf", "800" => "http://fonts.gstatic.com/s/raleway/v10/mMh0JrsYMXcLO69jgJwpUvesZW2xOQ-xsNqO47m55DA.ttf", "900" => "http://fonts.gstatic.com/s/raleway/v10/ajQQGcDBLcyLpaUfD76UuPesZW2xOQ-xsNqO47m55DA.ttf", "100italic" => "http://fonts.gstatic.com/s/raleway/v10/hUpHtml6IPNuUR-FwVi2UKCWcynf_cDxXwCLxiixG1c.ttf", "200italic" => "http://fonts.gstatic.com/s/raleway/v10/N2DIbZG4399cPGfifZUEQi3USBnSvpkopQaUR-2r7iU.ttf", "300italic" => "http://fonts.gstatic.com/s/raleway/v10/TVSB8ogXDKMcnAAJ5CqrUi3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/raleway/v10/_dCzxpXzIS3sL-gdJWAP8A.ttf", "italic" => "http://fonts.gstatic.com/s/raleway/v10/utU2m1gdZSfuQpArSy5Dbw.ttf", "500italic" => "http://fonts.gstatic.com/s/raleway/v10/S7vGLZZ40c85SJgiptJGVy3USBnSvpkopQaUR-2r7iU.ttf", "600italic" => "http://fonts.gstatic.com/s/raleway/v10/OY22yoG8EJ3IN_muVWm29C3USBnSvpkopQaUR-2r7iU.ttf", "700italic" => "http://fonts.gstatic.com/s/raleway/v10/lFxvRPuGFG5ktd7P0WRwKi3USBnSvpkopQaUR-2r7iU.ttf", "800italic" => "http://fonts.gstatic.com/s/raleway/v10/us4LjTCmlYgh3W8CKujEJi3USBnSvpkopQaUR-2r7iU.ttf", "900italic" => "http://fonts.gstatic.com/s/raleway/v10/oY2RadnkHfshu5f0FLsgVS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Raleway Dots", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ralewaydots/v4/lhLgmWCRcyz-QXo8LCzTfC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Ramabhadra", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ramabhadra/v5/JyhxLXRVQChLDGADS_c5MPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Ramaraja", "category" => "serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ramaraja/v1/XIqzxFapVczstBedHdQTiw.ttf")), array("kind" => "webfonts#webfont", "family" => "Rambla", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/rambla/v4/C5VZH8BxQKmnBuoC00UPpw.ttf", "regular" => "http://fonts.gstatic.com/s/rambla/v4/YaTmpvm5gFg_ShJKTQmdzg.ttf", "italic" => "http://fonts.gstatic.com/s/rambla/v4/mhUgsKmp0qw3uATdDDAuwA.ttf", "700italic" => "http://fonts.gstatic.com/s/rambla/v4/ziMzUZya6QahrKONSI1TzqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Rammetto One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rammettoone/v5/mh0uQ1tV8QgSx9v_KyEYPC3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Ranchers", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ranchers/v4/9ya8CZYhqT66VERfjQ7eLA.ttf")), array("kind" => "webfonts#webfont", "family" => "Rancho", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rancho/v6/ekp3-4QykC4--6KaslRgHA.ttf")), array("kind" => "webfonts#webfont", "family" => "Ranga", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ranga/v1/h8G_gEUH7vHKH-NkjAs34A.ttf", "regular" => "http://fonts.gstatic.com/s/ranga/v1/xpW6zFTNzY1JykoBIqE1Zg.ttf")), array("kind" => "webfonts#webfont", "family" => "Rationale", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rationale/v7/7M2eN-di0NGLQse7HzJRfg.ttf")), array("kind" => "webfonts#webfont", "family" => "Ravi Prakash", "category" => "display", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/raviprakash/v3/8EzbM7Rymjk25jWeHxbO6C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Redressed", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/redressed/v6/3aZ5sTBppH3oSm5SabegtA.ttf")), array("kind" => "webfonts#webfont", "family" => "Reenie Beanie", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/reeniebeanie/v7/ljpKc6CdXusL1cnGUSamX4jjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Revalia", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/revalia/v4/1TKw66fF5_poiL0Ktgo4_A.ttf")), array("kind" => "webfonts#webfont", "family" => "Rhodium Libre", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-03", "files" => array("regular" => "http://fonts.gstatic.com/s/rhodiumlibre/v1/Vxr7A4-xE2zsBDDI8BcseIjjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Ribeye", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ribeye/v5/e5w3VE8HnWBln4Ll6lUj3Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Ribeye Marrow", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ribeyemarrow/v6/q7cBSA-4ErAXBCDFPrhlY0cTNmV93fYG7UKgsLQNQWs.ttf")), array("kind" => "webfonts#webfont", "family" => "Righteous", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/righteous/v5/0nRRWM_gCGCt2S-BCfN8WQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Risque", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/risque/v4/92RnElGnl8yHP97-KV3Fyg.ttf")), array("kind" => "webfonts#webfont", "family" => "Roboto", "category" => "sans-serif", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic", "900", "900italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v15", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/roboto/v15/7MygqTe2zs9YkP0adA9QQQ.ttf", "300" => "http://fonts.gstatic.com/s/roboto/v15/dtpHsbgPEm2lVWciJZ0P-A.ttf", "500" => "http://fonts.gstatic.com/s/roboto/v15/Uxzkqj-MIMWle-XP2pDNAA.ttf", "700" => "http://fonts.gstatic.com/s/roboto/v15/bdHGHleUa-ndQCOrdpfxfw.ttf", "900" => "http://fonts.gstatic.com/s/roboto/v15/H1vB34nOKWXqzKotq25pcg.ttf", "100italic" => "http://fonts.gstatic.com/s/roboto/v15/T1xnudodhcgwXCmZQ490TPesZW2xOQ-xsNqO47m55DA.ttf", "300italic" => "http://fonts.gstatic.com/s/roboto/v15/iE8HhaRzdhPxC93dOdA056CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/roboto/v15/W5F8_SL0XFawnjxHGsZjJA.ttf", "italic" => "http://fonts.gstatic.com/s/roboto/v15/hcKoSgxdnKlbH5dlTwKbow.ttf", "500italic" => "http://fonts.gstatic.com/s/roboto/v15/daIfzbEw-lbjMyv4rMUUTqCWcynf_cDxXwCLxiixG1c.ttf", "700italic" => "http://fonts.gstatic.com/s/roboto/v15/owYYXKukxFDFjr0ZO8NXh6CWcynf_cDxXwCLxiixG1c.ttf", "900italic" => "http://fonts.gstatic.com/s/roboto/v15/b9PWBSMHrT2zM5FgUdtu0aCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Roboto Condensed", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v13", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nJRhFVcex_hajThhFkHyhYk.ttf", "700" => "http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nPOYkGiSOYDq_T7HbIOV1hA.ttf", "300italic" => "http://fonts.gstatic.com/s/robotocondensed/v13/mg0cGfGRUERshzBlvqxeAPYa9bgCHecWXGgisnodcS0.ttf", "regular" => "http://fonts.gstatic.com/s/robotocondensed/v13/Zd2E9abXLFGSr9G3YK2MsKDbm6fPDOZJsR8PmdG62gY.ttf", "italic" => "http://fonts.gstatic.com/s/robotocondensed/v13/BP5K8ZAJv9qEbmuFp8RpJY_eiqgTfYGaH0bJiUDZ5GA.ttf", "700italic" => "http://fonts.gstatic.com/s/robotocondensed/v13/mg0cGfGRUERshzBlvqxeAE2zk2RGRC3SlyyLLQfjS_8.ttf")), array("kind" => "webfonts#webfont", "family" => "Roboto Mono", "category" => "monospace", "variants" => array("100", "100italic", "300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v4", "lastModified" => "2015-05-28", "files" => array("100" => "http://fonts.gstatic.com/s/robotomono/v4/aOIeRp72J9_Hp_8KwQ9M-YAWxXGWZ3yJw6KhWS7MxOk.ttf", "300" => "http://fonts.gstatic.com/s/robotomono/v4/N4duVc9C58uwPiY8_59Fzy9-WlPSxbfiI49GsXo3q0g.ttf", "500" => "http://fonts.gstatic.com/s/robotomono/v4/N4duVc9C58uwPiY8_59Fz8CNfqCYlB_eIx7H1TVXe60.ttf", "700" => "http://fonts.gstatic.com/s/robotomono/v4/N4duVc9C58uwPiY8_59Fz3e1Pd76Vl7zRpE7NLJQ7XU.ttf", "100italic" => "http://fonts.gstatic.com/s/robotomono/v4/rqQ1zSE-ZGCKVZgew-A9dgyDtfpXZi-8rXUZYR4dumU.ttf", "300italic" => "http://fonts.gstatic.com/s/robotomono/v4/1OsMuiiO6FCF2x67vzDKA2o9eWDfYYxG3A176Zl7aIg.ttf", "regular" => "http://fonts.gstatic.com/s/robotomono/v4/eJ4cxQe85Lo39t-LVoKa26CWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/robotomono/v4/mE0EPT_93c7f86_WQexR3EeOrDcLawS7-ssYqLr2Xp4.ttf", "500italic" => "http://fonts.gstatic.com/s/robotomono/v4/1OsMuiiO6FCF2x67vzDKA2nWRcJAYo5PSCx8UfGMHCI.ttf", "700italic" => "http://fonts.gstatic.com/s/robotomono/v4/1OsMuiiO6FCF2x67vzDKA8_zJjSACmk0BRPxQqhnNLU.ttf")), array("kind" => "webfonts#webfont", "family" => "Roboto Slab", "category" => "serif", "variants" => array("100", "300", "regular", "700"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("100" => "http://fonts.gstatic.com/s/robotoslab/v6/MEz38VLIFL-t46JUtkIEgIAWxXGWZ3yJw6KhWS7MxOk.ttf", "300" => "http://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJS9-WlPSxbfiI49GsXo3q0g.ttf", "700" => "http://fonts.gstatic.com/s/robotoslab/v6/dazS1PrQQuCxC3iOAJFEJXe1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/robotoslab/v6/3__ulTNA7unv0UtplybPiqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Rochester", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rochester/v6/bnj8tmQBiOkdji_G_yvypg.ttf")), array("kind" => "webfonts#webfont", "family" => "Rock Salt", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rocksalt/v6/Zy7JF9h9WbhD9V3SFMQ1UQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Rokkitt", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v10", "lastModified" => "2016-02-24", "files" => array("700" => "http://fonts.gstatic.com/s/rokkitt/v10/gxlo-sr3rPmvgSixYog_ofesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/rokkitt/v10/GMA7Z_ToF8uSvpZAgnp_VQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Romanesco", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/romanesco/v5/2udIjUrpK_CPzYSxRVzD4Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Ropa Sans", "category" => "sans-serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ropasans/v5/Gba7ZzVBuhg6nX_AoSwlkQ.ttf", "italic" => "http://fonts.gstatic.com/s/ropasans/v5/V1zbhZQscNrh63dy5Jk2nqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Rosario", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v11", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/rosario/v11/nrS6PJvDWN42RP4TFWccd_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/rosario/v11/bL-cEh8dXtDupB2WccA2LA.ttf", "italic" => "http://fonts.gstatic.com/s/rosario/v11/pkflNy18HEuVVx4EOjeb_Q.ttf", "700italic" => "http://fonts.gstatic.com/s/rosario/v11/EOgFX2Va5VGrkhn_eDpIRS3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Rosarivo", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rosarivo/v4/EmPiINK0qyqc7KSsNjJamA.ttf", "italic" => "http://fonts.gstatic.com/s/rosarivo/v4/u3VuWsWQlX1pDqsbz4paNPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Rouge Script", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rougescript/v5/AgXDSqZJmy12qS0ixjs6Vy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Rozha One", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v2", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rozhaone/v2/PyrMHQ6lucEIxwKmhqsX8A.ttf")), array("kind" => "webfonts#webfont", "family" => "Rubik", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic", "900", "900italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v1", "lastModified" => "2015-07-22", "files" => array("300" => "http://fonts.gstatic.com/s/rubik/v1/o1vXYO8YwDpErHEAPAxpOg.ttf", "500" => "http://fonts.gstatic.com/s/rubik/v1/D4HihERG27s-BJrQ4dvkbw.ttf", "700" => "http://fonts.gstatic.com/s/rubik/v1/m1GGHcpLe6Mb0_sAyjXE4g.ttf", "900" => "http://fonts.gstatic.com/s/rubik/v1/mOHfPRl5uP4vw7-5-dbnng.ttf", "300italic" => "http://fonts.gstatic.com/s/rubik/v1/NyXDvUhvZLSWiVfGa5KM-vesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/rubik/v1/4sMyW_teKWHB3K8Hm-Il6A.ttf", "italic" => "http://fonts.gstatic.com/s/rubik/v1/elD65ddI0qvNcCh42b1Iqg.ttf", "500italic" => "http://fonts.gstatic.com/s/rubik/v1/0hcxMdoMbXtHiEM1ebdN6PesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/rubik/v1/R4g_rs714cUXVZcdnRdHw_esZW2xOQ-xsNqO47m55DA.ttf", "900italic" => "http://fonts.gstatic.com/s/rubik/v1/HH1b7kBbwInqlw8OQxRE5vesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Rubik Mono One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rubikmonoone/v5/e_cupPtD4BrZzotubJD7UbAREgn5xbW23GEXXnhMQ5Y.ttf")), array("kind" => "webfonts#webfont", "family" => "Rubik One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rubikone/v4/Zs6TtctNRSIR8T5PO018rQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Ruda", "category" => "sans-serif", "variants" => array("regular", "700", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ruda/v7/JABOu1SYOHcGXVejUq4w6g.ttf", "900" => "http://fonts.gstatic.com/s/ruda/v7/Uzusv-enCjoIrznlJJaBRw.ttf", "regular" => "http://fonts.gstatic.com/s/ruda/v7/jPEIPB7DM2DNK_uBGv2HGw.ttf")), array("kind" => "webfonts#webfont", "family" => "Rufina", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/rufina/v4/D0RUjXFr55y4MVZY2Ww_RA.ttf", "regular" => "http://fonts.gstatic.com/s/rufina/v4/s9IFr_fIemiohfZS-ZRDbQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Ruge Boogie", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rugeboogie/v7/U-TTmltL8aENLVIqYbI5QaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Ruluko", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ruluko/v4/lv4cMwJtrx_dzmlK5SDc1g.ttf")), array("kind" => "webfonts#webfont", "family" => "Rum Raisin", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rumraisin/v4/kDiL-ntDOEq26B7kYM7cx_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Ruslan Display", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ruslandisplay/v7/SREdhlyLNUfU1VssRBfs3rgH88D3l9N4auRNHrNS708.ttf")), array("kind" => "webfonts#webfont", "family" => "Russo One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/russoone/v5/zfwxZ--UhUc7FVfgT21PRQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Ruthie", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ruthie/v6/vJ2LorukHSbWYoEs5juivg.ttf")), array("kind" => "webfonts#webfont", "family" => "Rye", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/rye/v4/VUrJlpPpSZxspl3w_yNOrQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Sacramento", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sacramento/v4/_kv-qycSHMNdhjiv0Kj7BvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sahitya", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-17", "files" => array("700" => "http://fonts.gstatic.com/s/sahitya/v1/Zm5hNvMwUyN3tC4GMkH1l_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/sahitya/v1/wQWULcDbZqljdTfjOUtDvw.ttf")), array("kind" => "webfonts#webfont", "family" => "Sail", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-24", "files" => array("regular" => "http://fonts.gstatic.com/s/sail/v7/iuEoG6kt-bePGvtdpL0GUQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Salsa", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/salsa/v6/BnpUCBmYdvggScEPs5JbpA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sanchez", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sanchez/v4/BEL8ao-E2LJ5eHPLB2UAiw.ttf", "italic" => "http://fonts.gstatic.com/s/sanchez/v4/iSrhkWLexUZzDeNxNEHtzA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sancreek", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sancreek/v7/8ZacBMraWMvHly4IJI3esw.ttf")), array("kind" => "webfonts#webfont", "family" => "Sansita One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sansitaone/v6/xWqf68oB50JXqGIRR0h2hqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Sarala", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-17", "files" => array("700" => "http://fonts.gstatic.com/s/sarala/v1/hpc9cz8KYsazwq2In_oJYw.ttf", "regular" => "http://fonts.gstatic.com/s/sarala/v1/ohip9lixCHoBab7hTtgLnw.ttf")), array("kind" => "webfonts#webfont", "family" => "Sarina", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sarina/v5/XYtRfaSknHIU3NHdfTdXoQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Sarpanch", "category" => "sans-serif", "variants" => array("regular", "500", "600", "700", "800", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/sarpanch/v1/Ov7BxSrFSZYrfuJxL1LzQaCWcynf_cDxXwCLxiixG1c.ttf", "600" => "http://fonts.gstatic.com/s/sarpanch/v1/WTnP2wnc0qSbUaaDG-2OQ6CWcynf_cDxXwCLxiixG1c.ttf", "700" => "http://fonts.gstatic.com/s/sarpanch/v1/57kYsSpovYmFaEt2hsZhv6CWcynf_cDxXwCLxiixG1c.ttf", "800" => "http://fonts.gstatic.com/s/sarpanch/v1/OKyqPLjdnuVghR-1TV6RzaCWcynf_cDxXwCLxiixG1c.ttf", "900" => "http://fonts.gstatic.com/s/sarpanch/v1/JhYc2cr6kqWTo_P0vfvJR6CWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/sarpanch/v1/YMBZdT27b6O5a1DADbAGSg.ttf")), array("kind" => "webfonts#webfont", "family" => "Satisfy", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/satisfy/v6/PRlyepkd-JCGHiN8e9WV2w.ttf")), array("kind" => "webfonts#webfont", "family" => "Scada", "category" => "sans-serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/scada/v4/t6XNWdMdVWUz93EuRVmifQ.ttf", "regular" => "http://fonts.gstatic.com/s/scada/v4/iZNC3ZEYwe3je6H-28d5Ug.ttf", "italic" => "http://fonts.gstatic.com/s/scada/v4/PCGyLT1qNawkOUQ3uHFhBw.ttf", "700italic" => "http://fonts.gstatic.com/s/scada/v4/kLrBIf7V4mDMwcd_Yw7-D_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Scheherazade", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("arabic", "latin"), "version" => "v11", "lastModified" => "2015-08-26", "files" => array("700" => "http://fonts.gstatic.com/s/scheherazade/v11/C1wtT46acJkQxc6mPHwvHED2ttfZwueP-QU272T9-k4.ttf", "regular" => "http://fonts.gstatic.com/s/scheherazade/v11/AuKlqGWzUC-8XqMOmsqXiy3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Schoolbell", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/schoolbell/v6/95-3djEuubb3cJx-6E7j4vesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Seaweed Script", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/seaweedscript/v4/eorWAPpOvvWrPw5IHwE60BnpV0hQCek3EmWnCPrvGRM.ttf")), array("kind" => "webfonts#webfont", "family" => "Sevillana", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sevillana/v4/6m1Nh35oP7YEt00U80Smiw.ttf")), array("kind" => "webfonts#webfont", "family" => "Seymour One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/seymourone/v4/HrdG2AEG_870Xb7xBVv6C6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Shadows Into Light", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/shadowsintolight/v6/clhLqOv7MXn459PTh0gXYAW_5bEze-iLRNvGrRpJsfM.ttf")), array("kind" => "webfonts#webfont", "family" => "Shadows Into Light Two", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/shadowsintolighttwo/v4/gDxHeefcXIo-lOuZFCn2xVQrZk-Pga5KeEE_oZjkQjQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Shanti", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/shanti/v8/lc4nG_JG6Q-2FQSOMMhb_w.ttf")), array("kind" => "webfonts#webfont", "family" => "Share", "category" => "display", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/share/v5/XrU8e7a1YKurguyY2azk1Q.ttf", "regular" => "http://fonts.gstatic.com/s/share/v5/1ytD7zSb_-g9I2GG67vmVw.ttf", "italic" => "http://fonts.gstatic.com/s/share/v5/a9YGdQWFRlNJ0zClJVaY3Q.ttf", "700italic" => "http://fonts.gstatic.com/s/share/v5/A992-bLVYwAflKu6iaznufesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Share Tech", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sharetech/v4/Dq3DuZ5_0SW3oEfAWFpen_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Share Tech Mono", "category" => "monospace", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sharetechmono/v5/RQxK-3RA0Lnf3gnnnNrAscwD6PD0c3_abh9zHKQtbGU.ttf")), array("kind" => "webfonts#webfont", "family" => "Shojumaru", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/shojumaru/v4/WP8cxonzQQVAoI3RJQ2wug.ttf")), array("kind" => "webfonts#webfont", "family" => "Short Stack", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/shortstack/v6/v4dXPI0Rm8XN9gk4SDdqlqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Siemreap", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/siemreap/v9/JSK-mOIsXwxo-zE9XDDl_g.ttf")), array("kind" => "webfonts#webfont", "family" => "Sigmar One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sigmarone/v6/oh_5NxD5JBZksdo2EntKefesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Signika", "category" => "sans-serif", "variants" => array("300", "regular", "600", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/signika/v6/0wDPonOzsYeEo-1KO78w4fesZW2xOQ-xsNqO47m55DA.ttf", "600" => "http://fonts.gstatic.com/s/signika/v6/lQMOF6NUN2ooR7WvB7tADvesZW2xOQ-xsNqO47m55DA.ttf", "700" => "http://fonts.gstatic.com/s/signika/v6/lEcnfPBICWJPv5BbVNnFJPesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/signika/v6/WvDswbww0oAtvBg2l1L-9w.ttf")), array("kind" => "webfonts#webfont", "family" => "Signika Negative", "category" => "sans-serif", "variants" => array("300", "regular", "600", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FjYFXpUPtCmIEFDvjUnLLaI.ttf", "600" => "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FrKLaDJM01OezSVA2R_O3qI.ttf", "700" => "http://fonts.gstatic.com/s/signikanegative/v5/q5TOjIw4CenPw6C-TW06FpYzPxtVvobH1w3hEppR8WI.ttf", "regular" => "http://fonts.gstatic.com/s/signikanegative/v5/Z-Q1hzbY8uAo3TpTyPFMXVM1lnCWMnren5_v6047e5A.ttf")), array("kind" => "webfonts#webfont", "family" => "Simonetta", "category" => "display", "variants" => array("regular", "italic", "900", "900italic"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("900" => "http://fonts.gstatic.com/s/simonetta/v5/22EwvvJ2r1VwVCxit5LcVi3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/simonetta/v5/fN8puNuahBo4EYMQgp12Yg.ttf", "italic" => "http://fonts.gstatic.com/s/simonetta/v5/ynxQ3FqfF_Nziwy3T9ZwL6CWcynf_cDxXwCLxiixG1c.ttf", "900italic" => "http://fonts.gstatic.com/s/simonetta/v5/WUXOpCgBZaRPrWtMCpeKoienaqEuufTBk9XMKnKmgDA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sintony", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/sintony/v4/zVXQB1wqJn6PE4dWXoYpvPesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/sintony/v4/IDhCijoIMev2L6Lg5QsduQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Sirin Stencil", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sirinstencil/v5/pRpLdo0SawzO7MoBpvowsImg74kgS1F7KeR8rWhYwkU.ttf")), array("kind" => "webfonts#webfont", "family" => "Six Caps", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sixcaps/v7/_XeDnO0HOV8Er9u97If1tQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Skranji", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/skranji/v4/Lcrhg-fviVkxiEgoadsI1vesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/skranji/v4/jnOLPS0iZmDL7dfWnW3nIw.ttf")), array("kind" => "webfonts#webfont", "family" => "Slabo 13px", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/slabo13px/v3/jPGWFTjRXfCSzy0qd1nqdvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Slabo 27px", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/slabo27px/v3/gC0o8B9eU21EafNkXlRAfPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Slackey", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/slackey/v6/evRIMNhGVCRJvCPv4kteeA.ttf")), array("kind" => "webfonts#webfont", "family" => "Smokum", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/smokum/v6/8YP4BuAcy97X8WfdKfxVRw.ttf")), array("kind" => "webfonts#webfont", "family" => "Smythe", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/smythe/v7/yACD1gy_MpbB9Ft42fUvYw.ttf")), array("kind" => "webfonts#webfont", "family" => "Sniglet", "category" => "display", "variants" => array("regular", "800"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("800" => "http://fonts.gstatic.com/s/sniglet/v7/NLF91nBmcEfkBgcEWbHFa_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/sniglet/v7/XWhyQLHH4SpCVsHRPRgu9w.ttf")), array("kind" => "webfonts#webfont", "family" => "Snippet", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/snippet/v6/eUcYMLq2GtHZovLlQH_9kA.ttf")), array("kind" => "webfonts#webfont", "family" => "Snowburst One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/snowburstone/v4/zSQzKOPukXRux2oTqfYJjIjjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Sofadi One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sofadione/v4/nirf4G12IcJ6KI8Eoj119fesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sofia", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sofia/v5/Imnvx0Ag9r6iDBFUY5_RaQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Sonsie One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sonsieone/v5/KSP7xT1OSy0q2ob6RQOTWPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sorts Mill Goudy", "category" => "serif", "variants" => array("regular", "italic"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sortsmillgoudy/v6/JzRrPKdwEnE8F1TDmDLMUlIL2Qjg-Xlsg_fhGbe2P5U.ttf", "italic" => "http://fonts.gstatic.com/s/sortsmillgoudy/v6/UUu1lKiy4hRmBWk599VL1TYNkCNSzLyoucKmbTguvr0.ttf")), array("kind" => "webfonts#webfont", "family" => "Source Code Pro", "category" => "monospace", "variants" => array("200", "300", "regular", "500", "600", "700", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqaXvKVW_haheDNrHjziJZVk.ttf", "300" => "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqVP7R5lD_au4SZC6Ks_vyWs.ttf", "500" => "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqX63uKwMO11Of4rJWV582wg.ttf", "600" => "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqeiMeWyi5E_-XkTgB5psiDg.ttf", "700" => "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqfgXsetDviZcdR5OzC1KPcw.ttf", "900" => "http://fonts.gstatic.com/s/sourcecodepro/v6/leqv3v-yTsJNC7nFznSMqRA_awHl7mXRjE_LQVochcU.ttf", "regular" => "http://fonts.gstatic.com/s/sourcecodepro/v6/mrl8jkM18OlOQN8JLgasD9Rl0pGnog23EMYRrBmUzJQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Source Sans Pro", "category" => "sans-serif", "variants" => array("200", "200italic", "300", "300italic", "regular", "italic", "600", "600italic", "700", "700italic", "900", "900italic"), "subsets" => array("vietnamese", "latin-ext", "latin"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGKXvKVW_haheDNrHjziJZVk.ttf", "300" => "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGFP7R5lD_au4SZC6Ks_vyWs.ttf", "600" => "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGOiMeWyi5E_-XkTgB5psiDg.ttf", "700" => "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGPgXsetDviZcdR5OzC1KPcw.ttf", "900" => "http://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGBA_awHl7mXRjE_LQVochcU.ttf", "200italic" => "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6OptKU7UIBg2hLM7eMTU8bI.ttf", "300italic" => "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6DUpNKoQAsDux-Todp8f29w.ttf", "regular" => "http://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNRl0pGnog23EMYRrBmUzJQ.ttf", "italic" => "http://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoMwRX4TIfMQQEXLu74GftruE.ttf", "600italic" => "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6Pp6lGoTTgjlW0sC4r900Co.ttf", "700italic" => "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6LVT4locI09aamSzFGQlDMY.ttf", "900italic" => "http://fonts.gstatic.com/s/sourcesanspro/v9/fpTVHK8qsXbIeTHTrnQH6A0NcF6HPGWR298uWIdxWv0.ttf")), array("kind" => "webfonts#webfont", "family" => "Source Serif Pro", "category" => "serif", "variants" => array("regular", "600", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("600" => "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarGi4cQnvCGV11m1KlXh97aQ.ttf", "700" => "http://fonts.gstatic.com/s/sourceserifpro/v4/yd5lDMt8Sva2PE17yiLarEkpYHRvxGNSCrR82n_RDNk.ttf", "regular" => "http://fonts.gstatic.com/s/sourceserifpro/v4/CeUM4np2c42DV49nanp55YGL0S0YDpKs5GpLtZIQ0m4.ttf")), array("kind" => "webfonts#webfont", "family" => "Special Elite", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/specialelite/v6/9-wW4zu3WNoD5Fjka35Jm4jjx0o0jr6fNXxPgYh_a8Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Spicy Rice", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/spicyrice/v5/WGCtz7cLoggXARPi9OGD6_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Spinnaker", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/spinnaker/v8/MQdIXivKITpjROUdiN6Jgg.ttf")), array("kind" => "webfonts#webfont", "family" => "Spirax", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/spirax/v5/IOKqhk-Ccl7y31yDsePPkw.ttf")), array("kind" => "webfonts#webfont", "family" => "Squada One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/squadaone/v5/3tzGuaJdD65cZVgfQzN8uvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Sree Krushnadevaraya", "category" => "serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sreekrushnadevaraya/v4/CdsXmnHyEqVl1ahzOh5qnzjDZVem5Eb4d0dXjXa0F_Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Stalemate", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/stalemate/v4/wQLCnG0qB6mOu2Wit2dt_w.ttf")), array("kind" => "webfonts#webfont", "family" => "Stalinist One", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/stalinistone/v8/MQpS-WezM9W4Dd7D3B7I-UT7eZ8.ttf")), array("kind" => "webfonts#webfont", "family" => "Stardos Stencil", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/stardosstencil/v6/h4ExtgvoXhPtv9Ieqd-XC81wDCbBgmIo8UyjIhmkeSM.ttf", "regular" => "http://fonts.gstatic.com/s/stardosstencil/v6/ygEOyTW9a6u4fi4OXEZeTFf2eT4jUldwg_9fgfY_tHc.ttf")), array("kind" => "webfonts#webfont", "family" => "Stint Ultra Condensed", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/stintultracondensed/v5/8DqLK6-YSClFZt3u3EgOUYelbRYnLTTQA1Z5cVLnsI4.ttf")), array("kind" => "webfonts#webfont", "family" => "Stint Ultra Expanded", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/stintultraexpanded/v4/FeigX-wDDgHMCKuhekhedQ7dxr0N5HY0cZKknTIL6n4.ttf")), array("kind" => "webfonts#webfont", "family" => "Stoke", "category" => "serif", "variants" => array("300", "regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/stoke/v6/Sell9475FOS8jUqQsfFsUQ.ttf", "regular" => "http://fonts.gstatic.com/s/stoke/v6/A7qJNoqOm2d6o1E6e0yUFg.ttf")), array("kind" => "webfonts#webfont", "family" => "Strait", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/strait/v4/m4W73ViNmProETY2ybc-Bg.ttf")), array("kind" => "webfonts#webfont", "family" => "Sue Ellen Francisco", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sueellenfrancisco/v7/TwHX4vSxMUnJUdEz1JIgrhzazJzPVbGl8jnf1tisRz4.ttf")), array("kind" => "webfonts#webfont", "family" => "Sumana", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-05-04", "files" => array("700" => "http://fonts.gstatic.com/s/sumana/v1/8AcM-KAproitONSBBHj3sQ.ttf", "regular" => "http://fonts.gstatic.com/s/sumana/v1/wgdl__wAK7pzliiWs0Nlog.ttf")), array("kind" => "webfonts#webfont", "family" => "Sunshiney", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/sunshiney/v6/kaWOb4pGbwNijM7CkxK1sQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Supermercado One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/supermercadoone/v6/kMGPVTNFiFEp1U274uBMb4mm5hmSKNFf3C5YoMa-lrM.ttf")), array("kind" => "webfonts#webfont", "family" => "Sura", "category" => "serif", "variants" => array("regular", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-17", "files" => array("700" => "http://fonts.gstatic.com/s/sura/v1/Z5bXQaFGmoWicN1WlcncxA.ttf", "regular" => "http://fonts.gstatic.com/s/sura/v1/jznKrhTH5NezYxb0-Q5zzA.ttf")), array("kind" => "webfonts#webfont", "family" => "Suranna", "category" => "serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/suranna/v4/PYmfr6TQeTqZ-r8HnPM-kA.ttf")), array("kind" => "webfonts#webfont", "family" => "Suravaram", "category" => "serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/suravaram/v3/G4dPee4pel_w2HqzavW4MA.ttf")), array("kind" => "webfonts#webfont", "family" => "Suwannaphum", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v9", "lastModified" => "2015-04-06", "files" => array("regular" => "http://fonts.gstatic.com/s/suwannaphum/v9/1jIPOyXied3T79GCnSlCN6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Swanky and Moo Moo", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/swankyandmoomoo/v6/orVNZ9kDeE3lWp3U3YELu9DVLKqNC3_XMNHhr8S94FU.ttf")), array("kind" => "webfonts#webfont", "family" => "Syncopate", "category" => "sans-serif", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/syncopate/v7/S5z8ixiOoC4WJ1im6jAlYC3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/syncopate/v7/RQVwO52fAH6MI764EcaYtw.ttf")), array("kind" => "webfonts#webfont", "family" => "Tangerine", "category" => "handwriting", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/tangerine/v7/UkFsr-RwJB_d2l9fIWsx3i3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/tangerine/v7/DTPeM3IROhnkz7aYG2a9sA.ttf")), array("kind" => "webfonts#webfont", "family" => "Taprom", "category" => "display", "variants" => array("regular"), "subsets" => array("khmer"), "version" => "v8", "lastModified" => "2015-04-03", "files" => array("regular" => "http://fonts.gstatic.com/s/taprom/v8/-KByU3BaUsyIvQs79qFObg.ttf")), array("kind" => "webfonts#webfont", "family" => "Tauri", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/tauri/v4/XIWeYJDXNqiVNej0zEqtGg.ttf")), array("kind" => "webfonts#webfont", "family" => "Teko", "category" => "sans-serif", "variants" => array("300", "regular", "500", "600", "700"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/teko/v5/OobFGE9eo24rcBpN6zXDaQ.ttf", "500" => "http://fonts.gstatic.com/s/teko/v5/FQ0duU7gWM4cSaImOfAjBA.ttf", "600" => "http://fonts.gstatic.com/s/teko/v5/QDx_i8H-TZ1IK1JEVrqwEQ.ttf", "700" => "http://fonts.gstatic.com/s/teko/v5/xKfTxe_SWpH4xU75vmvylA.ttf", "regular" => "http://fonts.gstatic.com/s/teko/v5/UtekqODEqZXSN2L-njejpA.ttf")), array("kind" => "webfonts#webfont", "family" => "Telex", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/telex/v4/24-3xP9ywYeHOcFU3iGk8A.ttf")), array("kind" => "webfonts#webfont", "family" => "Tenali Ramakrishna", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v3", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/tenaliramakrishna/v3/M0nTmDqv2M7AGoGh-c946BZak5pSBHqWX6uyVMiMFoA.ttf")), array("kind" => "webfonts#webfont", "family" => "Tenor Sans", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/tenorsans/v7/dUBulmjNJJInvK5vL7O9yfesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Text Me One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/textmeone/v4/9em_3ckd_P5PQkP4aDyDLqCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "The Girl Next Door", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/thegirlnextdoor/v7/cWRA4JVGeEcHGcPl5hmX7kzo0nFFoM60ux_D9BUymX4.ttf")), array("kind" => "webfonts#webfont", "family" => "Tienne", "category" => "serif", "variants" => array("regular", "700", "900"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/tienne/v8/JvoCDOlyOSEyYGRwCyfs3g.ttf", "900" => "http://fonts.gstatic.com/s/tienne/v8/FBano5T521OWexj2iRYLMw.ttf", "regular" => "http://fonts.gstatic.com/s/tienne/v8/-IIfDl701C0z7-fy2kmGvA.ttf")), array("kind" => "webfonts#webfont", "family" => "Tillana", "category" => "handwriting", "variants" => array("regular", "500", "600", "700", "800"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("500" => "http://fonts.gstatic.com/s/tillana/v1/gqdUngSIcY9tSla5eCZky_esZW2xOQ-xsNqO47m55DA.ttf", "600" => "http://fonts.gstatic.com/s/tillana/v1/fqon6-r15hy8M1cyiYfQBvesZW2xOQ-xsNqO47m55DA.ttf", "700" => "http://fonts.gstatic.com/s/tillana/v1/jGARMTxLrMerzTCpGBpMffesZW2xOQ-xsNqO47m55DA.ttf", "800" => "http://fonts.gstatic.com/s/tillana/v1/pmTtNH_Ibktj5Cyc1XrP6vesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/tillana/v1/zN0D-jDPsr1HzU3VRFLY5g.ttf")), array("kind" => "webfonts#webfont", "family" => "Timmana", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("telugu", "latin"), "version" => "v1", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/timmana/v1/T25SicsJUJkc2s2sbBsDnA.ttf")), array("kind" => "webfonts#webfont", "family" => "Tinos", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "vietnamese", "latin-ext", "cyrillic-ext", "latin", "greek-ext", "hebrew"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/tinos/v9/vHXfhX8jZuQruowfon93yQ.ttf", "regular" => "http://fonts.gstatic.com/s/tinos/v9/EqpUbkVmutfwZ0PjpoGwCg.ttf", "italic" => "http://fonts.gstatic.com/s/tinos/v9/slfyzlasCr9vTsaP4lUh9A.ttf", "700italic" => "http://fonts.gstatic.com/s/tinos/v9/M6kfzvDMM0CdxdraoFpG6vesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Titan One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/titanone/v4/FbvpRvzfV_oipS0De3iAZg.ttf")), array("kind" => "webfonts#webfont", "family" => "Titillium Web", "category" => "sans-serif", "variants" => array("200", "200italic", "300", "300italic", "regular", "italic", "600", "600italic", "700", "700italic", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wprzOdCrLccoxq42eaxM802O0.ttf", "300" => "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr9ZAkYT8DuUZELiKLwMGWAo.ttf", "600" => "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr28K9dEd5Ue-HTQrlA7E2xQ.ttf", "700" => "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr2-6tpSbB9YhmWtmd1_gi_U.ttf", "900" => "http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr7L0GmZLri-m-nfoo0Vul4Y.ttf", "200italic" => "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPj4N98U-66ThNJvtgddRfBE.ttf", "300italic" => "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPrfzCkqg7ORZlRf2cc4mXu8.ttf", "regular" => "http://fonts.gstatic.com/s/titilliumweb/v4/7XUFZ5tgS-tD6QamInJTcTyagQBwYgYywpS70xNq8SQ.ttf", "italic" => "http://fonts.gstatic.com/s/titilliumweb/v4/r9OmwyQxrgzUAhaLET_KO-ixohbIP6lHkU-1Mgq95cY.ttf", "600italic" => "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPgOhzTSndyK8UWja2yJjKLc.ttf", "700italic" => "http://fonts.gstatic.com/s/titilliumweb/v4/RZunN20OBmkvrU7sA4GPPio3LEw-4MM8Ao2j9wPOfpw.ttf")), array("kind" => "webfonts#webfont", "family" => "Trade Winds", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/tradewinds/v5/sDOCVgAxw6PEUi2xdMsoDaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Trocchi", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/trocchi/v4/uldNPaKrUGVeGCVsmacLwA.ttf")), array("kind" => "webfonts#webfont", "family" => "Trochut", "category" => "display", "variants" => array("regular", "italic", "700"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/trochut/v4/lWqNOv6ISR8ehNzGLFLnJ_esZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/trochut/v4/6Y65B0x-2JsnYt16OH5omw.ttf", "italic" => "http://fonts.gstatic.com/s/trochut/v4/pczUwr4ZFvC79TgNO5cZng.ttf")), array("kind" => "webfonts#webfont", "family" => "Trykker", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/trykker/v5/YiVrVJpBFN7I1l_CWk6yYQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Tulpen One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/tulpenone/v6/lwcTfVIEVxpZLZlWzR5baPesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Ubuntu", "category" => "sans-serif", "variants" => array("300", "300italic", "regular", "italic", "500", "500italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v9", "lastModified" => "2016-02-23", "files" => array("300" => "http://fonts.gstatic.com/s/ubuntu/v9/7-wH0j2QCTHKgp7vLh9-sQ.ttf", "500" => "http://fonts.gstatic.com/s/ubuntu/v9/bMbHEMwSUmkzcK2x_74QbA.ttf", "700" => "http://fonts.gstatic.com/s/ubuntu/v9/B7BtHjNYwAp3HgLNagENOQ.ttf", "300italic" => "http://fonts.gstatic.com/s/ubuntu/v9/j-TYDdXcC_eQzhhp386SjaCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/ubuntu/v9/lhhB5ZCwEkBRbHMSnYuKyA.ttf", "italic" => "http://fonts.gstatic.com/s/ubuntu/v9/b9hP8wd30SygxZjGGk4DCQ.ttf", "500italic" => "http://fonts.gstatic.com/s/ubuntu/v9/NWdMogIO7U6AtEM4dDdf_aCWcynf_cDxXwCLxiixG1c.ttf", "700italic" => "http://fonts.gstatic.com/s/ubuntu/v9/pqisLQoeO9YTDCNnlQ9bf6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Ubuntu Condensed", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrKDbm6fPDOZJsR8PmdG62gY.ttf")), array("kind" => "webfonts#webfont", "family" => "Ubuntu Mono", "category" => "monospace", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("cyrillic", "greek", "latin-ext", "cyrillic-ext", "latin", "greek-ext"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/ubuntumono/v6/ceqTZGKHipo8pJj4molytne1Pd76Vl7zRpE7NLJQ7XU.ttf", "regular" => "http://fonts.gstatic.com/s/ubuntumono/v6/EgeuS9OtEmA0y_JRo03MQaCWcynf_cDxXwCLxiixG1c.ttf", "italic" => "http://fonts.gstatic.com/s/ubuntumono/v6/KAKuHXAHZOeECOWAHsRKA0eOrDcLawS7-ssYqLr2Xp4.ttf", "700italic" => "http://fonts.gstatic.com/s/ubuntumono/v6/n_d8tv_JOIiYyMXR4eaV9c_zJjSACmk0BRPxQqhnNLU.ttf")), array("kind" => "webfonts#webfont", "family" => "Ultra", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/ultra/v8/OW8uXkOstRADuhEmGOFQLA.ttf")), array("kind" => "webfonts#webfont", "family" => "Uncial Antiqua", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/uncialantiqua/v4/F-leefDiFwQXsyd6eaSllqrFJ4O13IHVxZbM6yoslpo.ttf")), array("kind" => "webfonts#webfont", "family" => "Underdog", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/underdog/v5/gBv9yjez_-5PnTprHWq0ig.ttf")), array("kind" => "webfonts#webfont", "family" => "Unica One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/unicaone/v4/KbYKlhWMDpatWViqDkNQgA.ttf")), array("kind" => "webfonts#webfont", "family" => "UnifrakturCook", "category" => "display", "variants" => array("700"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/unifrakturcook/v8/ASwh69ykD8iaoYijVEU6RrWZkcsCTHKV51zmcUsafQ0.ttf")), array("kind" => "webfonts#webfont", "family" => "UnifrakturMaguntia", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/unifrakturmaguntia/v7/7KWy3ymCVR_xfAvvcIXm3-kdNg30GQauG_DE-tMYtWk.ttf")), array("kind" => "webfonts#webfont", "family" => "Unkempt", "category" => "display", "variants" => array("regular", "700"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/unkempt/v7/V7H-GCl9bgwGwqFqTTgDHvesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/unkempt/v7/NLLBeNSspr0RGs71R5LHWA.ttf")), array("kind" => "webfonts#webfont", "family" => "Unlock", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/unlock/v6/rXEQzK7uIAlhoyoAEiMy1w.ttf")), array("kind" => "webfonts#webfont", "family" => "Unna", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/unna/v8/UAS0AM7AmbdCNY_80xyAZQ.ttf")), array("kind" => "webfonts#webfont", "family" => "VT323", "category" => "monospace", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/vt323/v7/ITU2YQfM073o1iYK3nSOmQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Vampiro One", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/vampiroone/v7/OVDs4gY4WpS5u3Qd1gXRW6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Varela", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/varela/v7/ON7qs0cKUUixhhDFXlZUjw.ttf")), array("kind" => "webfonts#webfont", "family" => "Varela Round", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/varelaround/v6/APH4jr0uSos5wiut5cpjri3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Vast Shadow", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/vastshadow/v6/io4hqKX3ibiqQQjYfW0-h6CWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Vesper Libre", "category" => "serif", "variants" => array("regular", "500", "700", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v7", "lastModified" => "2015-06-03", "files" => array("500" => "http://fonts.gstatic.com/s/vesperlibre/v7/0liLgNkygqH6EOtsVjZDsZMQuUSAwdHsY8ov_6tk1oA.ttf", "700" => "http://fonts.gstatic.com/s/vesperlibre/v7/0liLgNkygqH6EOtsVjZDsUD2ttfZwueP-QU272T9-k4.ttf", "900" => "http://fonts.gstatic.com/s/vesperlibre/v7/0liLgNkygqH6EOtsVjZDsaObDOjC3UL77puoeHsE3fw.ttf", "regular" => "http://fonts.gstatic.com/s/vesperlibre/v7/Cg-TeZFsqV8BaOcoVwzu2C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Vibur", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/vibur/v7/xB9aKsUbJo68XP0bAg2iLw.ttf")), array("kind" => "webfonts#webfont", "family" => "Vidaloka", "category" => "serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/vidaloka/v8/C6Nul0ogKUWkx356rrt9RA.ttf")), array("kind" => "webfonts#webfont", "family" => "Viga", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/viga/v5/uD87gDbhS7frHLX4uL6agg.ttf")), array("kind" => "webfonts#webfont", "family" => "Voces", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/voces/v5/QoBH6g6yKgNIgvL8A2aE2Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Volkhov", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/volkhov/v8/L8PbKS-kEoLHm7nP--NCzPesZW2xOQ-xsNqO47m55DA.ttf", "regular" => "http://fonts.gstatic.com/s/volkhov/v8/MDIZAofe1T_J3un5Kgo8zg.ttf", "italic" => "http://fonts.gstatic.com/s/volkhov/v8/1rTjmztKEpbkKH06JwF8Yw.ttf", "700italic" => "http://fonts.gstatic.com/s/volkhov/v8/W6oG0QDDjCgj0gmsHE520C3USBnSvpkopQaUR-2r7iU.ttf")), array("kind" => "webfonts#webfont", "family" => "Vollkorn", "category" => "serif", "variants" => array("regular", "italic", "700", "700italic"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("700" => "http://fonts.gstatic.com/s/vollkorn/v6/gOwQjJVGXlDOONC12hVoBqCWcynf_cDxXwCLxiixG1c.ttf", "regular" => "http://fonts.gstatic.com/s/vollkorn/v6/IiexqYAeh8uII223thYx3w.ttf", "italic" => "http://fonts.gstatic.com/s/vollkorn/v6/UuIzosgR1ovBhJFdwVp3fvesZW2xOQ-xsNqO47m55DA.ttf", "700italic" => "http://fonts.gstatic.com/s/vollkorn/v6/KNiAlx6phRqXCwnZZG51JAJKKGfqHaYFsRG-T3ceEVo.ttf")), array("kind" => "webfonts#webfont", "family" => "Voltaire", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/voltaire/v6/WvqBzaGEBbRV-hrahwO2cA.ttf")), array("kind" => "webfonts#webfont", "family" => "Waiting for the Sunrise", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/waitingforthesunrise/v7/eNfH7kLpF1PZWpsetF-ha9TChrNgrDiT3Zy6yGf3FnM.ttf")), array("kind" => "webfonts#webfont", "family" => "Wallpoet", "category" => "display", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v8", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/wallpoet/v8/hmum4WuBN4A0Z_7367NDIg.ttf")), array("kind" => "webfonts#webfont", "family" => "Walter Turncoat", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/walterturncoat/v6/sG9su5g4GXy1KP73cU3hvQplL2YwNeota48DxFlGDUo.ttf")), array("kind" => "webfonts#webfont", "family" => "Warnes", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/warnes/v6/MXG7_Phj4YpzAXxKGItuBw.ttf")), array("kind" => "webfonts#webfont", "family" => "Wellfleet", "category" => "display", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/wellfleet/v4/J5tOx72iFRPgHYpbK9J4XQ.ttf")), array("kind" => "webfonts#webfont", "family" => "Wendy One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin-ext", "latin"), "version" => "v4", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/wendyone/v4/R8CJT2oDXdMk_ZtuHTxoxw.ttf")), array("kind" => "webfonts#webfont", "family" => "Wire One", "category" => "sans-serif", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/wireone/v7/sRLhaQOQpWnvXwIx0CycQw.ttf")), array("kind" => "webfonts#webfont", "family" => "Work Sans", "category" => "sans-serif", "variants" => array("100", "200", "300", "regular", "500", "600", "700", "800", "900"), "subsets" => array("latin-ext", "latin"), "version" => "v2", "lastModified" => "2015-12-08", "files" => array("100" => "http://fonts.gstatic.com/s/worksans/v2/ZAhtNqLaAViKjGLajtuwWaCWcynf_cDxXwCLxiixG1c.ttf", "200" => "http://fonts.gstatic.com/s/worksans/v2/u_mYNr_qYP37m7vgvmIYZy3USBnSvpkopQaUR-2r7iU.ttf", "300" => "http://fonts.gstatic.com/s/worksans/v2/FD_Udbezj8EHXbdsqLUply3USBnSvpkopQaUR-2r7iU.ttf", "500" => "http://fonts.gstatic.com/s/worksans/v2/Nbre-U_bp6Xktt8cpgwaJC3USBnSvpkopQaUR-2r7iU.ttf", "600" => "http://fonts.gstatic.com/s/worksans/v2/z9rX03Xuz9ZNHTMg1_ghGS3USBnSvpkopQaUR-2r7iU.ttf", "700" => "http://fonts.gstatic.com/s/worksans/v2/4udXuXg54JlPEP5iKO5AmS3USBnSvpkopQaUR-2r7iU.ttf", "800" => "http://fonts.gstatic.com/s/worksans/v2/IQh-ap2Uqs7kl1YINeeEGi3USBnSvpkopQaUR-2r7iU.ttf", "900" => "http://fonts.gstatic.com/s/worksans/v2/Hjn0acvjHfjY_vAK9Uc6gi3USBnSvpkopQaUR-2r7iU.ttf", "regular" => "http://fonts.gstatic.com/s/worksans/v2/zVvigUiMvx7JVEnrJgc-5Q.ttf")), array("kind" => "webfonts#webfont", "family" => "Yanone Kaffeesatz", "category" => "sans-serif", "variants" => array("200", "300", "regular", "700"), "subsets" => array("latin-ext", "latin"), "version" => "v7", "lastModified" => "2016-02-23", "files" => array("200" => "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRbq92v6XxU4pSv06GI0NsGc.ttf", "300" => "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRZlIwXPiNoNT_wxzJ2t3mTE.ttf", "700" => "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/We_iSDqttE3etzfdfhuPRf2R4S6PlKaGXWPfWpHpcl0.ttf", "regular" => "http://fonts.gstatic.com/s/yanonekaffeesatz/v7/YDAoLskQQ5MOAgvHUQCcLdXn3cHbFGWU4T2HrSN6JF4.ttf")), array("kind" => "webfonts#webfont", "family" => "Yantramanav", "category" => "sans-serif", "variants" => array("100", "300", "regular", "500", "700", "900"), "subsets" => array("latin-ext", "devanagari", "latin"), "version" => "v1", "lastModified" => "2015-06-03", "files" => array("100" => "http://fonts.gstatic.com/s/yantramanav/v1/Rs1I2PF4Z8GAb6qjgvr8wIAWxXGWZ3yJw6KhWS7MxOk.ttf", "300" => "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bC9-WlPSxbfiI49GsXo3q0g.ttf", "500" => "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bMCNfqCYlB_eIx7H1TVXe60.ttf", "700" => "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bHe1Pd76Vl7zRpE7NLJQ7XU.ttf", "900" => "http://fonts.gstatic.com/s/yantramanav/v1/HSfbC4Z8I8BZ00wiXeA5bCenaqEuufTBk9XMKnKmgDA.ttf", "regular" => "http://fonts.gstatic.com/s/yantramanav/v1/FwdziO-qWAO8pZg8e376kaCWcynf_cDxXwCLxiixG1c.ttf")), array("kind" => "webfonts#webfont", "family" => "Yellowtail", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/yellowtail/v6/HLrU6lhCTjXfLZ7X60LcB_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Yeseva One", "category" => "display", "variants" => array("regular"), "subsets" => array("cyrillic", "latin-ext", "latin"), "version" => "v10", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/yesevaone/v10/eenQQxvpzSA80JmisGcgX_esZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Yesteryear", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v5", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/yesteryear/v5/dv09hP_ZrdjVOfZQXKXuZvesZW2xOQ-xsNqO47m55DA.ttf")), array("kind" => "webfonts#webfont", "family" => "Zeyada", "category" => "handwriting", "variants" => array("regular"), "subsets" => array("latin"), "version" => "v6", "lastModified" => "2016-02-23", "files" => array("regular" => "http://fonts.gstatic.com/s/zeyada/v6/hmonmGYYFwqTZQfG2nRswQ.ttf"))));
|
4 |
+
|
5 |
+
?>
|
includes/class-kirki-enqueue.php
CHANGED
@@ -23,6 +23,7 @@ if ( ! class_exists( 'Kirki_Enqueue' ) ) {
|
|
23 |
public function __construct() {
|
24 |
add_action( 'customize_controls_enqueue_scripts', array( $this, 'customize_controls_enqueue_scripts' ) );
|
25 |
add_action( 'customize_controls_print_scripts', array( $this, 'branding' ) );
|
|
|
26 |
}
|
27 |
|
28 |
public function customize_controls_enqueue_scripts() {
|
@@ -140,5 +141,17 @@ if ( ! class_exists( 'Kirki_Enqueue' ) ) {
|
|
140 |
}
|
141 |
}
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
}
|
144 |
}
|
23 |
public function __construct() {
|
24 |
add_action( 'customize_controls_enqueue_scripts', array( $this, 'customize_controls_enqueue_scripts' ) );
|
25 |
add_action( 'customize_controls_print_scripts', array( $this, 'branding' ) );
|
26 |
+
add_action( 'customize_preview_init', array( $this, 'postmessage' ) );
|
27 |
}
|
28 |
|
29 |
public function customize_controls_enqueue_scripts() {
|
141 |
}
|
142 |
}
|
143 |
|
144 |
+
public function postmessage() {
|
145 |
+
wp_enqueue_script( 'kirki_auto_postmessage', trailingslashit( Kirki::$url ) . 'assets/js/kirki-postmessage.js', array( 'customize-preview' ), time(), true );
|
146 |
+
$js_vars_fields = array();
|
147 |
+
$fields = Kirki::$fields;
|
148 |
+
foreach ( $fields as $field ) {
|
149 |
+
if ( isset( $field['transport'] ) && 'postMessage' == $field['transport'] && isset( $field['js_vars'] ) && ! empty( $field['js_vars'] ) && is_array( $field['js_vars'] ) && isset( $field['settings'] ) ) {
|
150 |
+
$js_vars_fields[ $field['settings'] ] = $field['js_vars'];
|
151 |
+
}
|
152 |
+
}
|
153 |
+
wp_localize_script( 'kirki_auto_postmessage', 'js_vars', $js_vars_fields );
|
154 |
+
}
|
155 |
+
|
156 |
}
|
157 |
}
|
includes/class-kirki-fonts.php
CHANGED
@@ -85,17 +85,8 @@ if ( ! class_exists( 'Kirki_Fonts' ) ) {
|
|
85 |
|
86 |
if ( null === self::$google_fonts || empty( self::$google_fonts ) ) {
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
if ( empty( $wp_filesystem ) ) {
|
91 |
-
require_once( ABSPATH . '/wp-admin/includes/file.php' );
|
92 |
-
WP_Filesystem();
|
93 |
-
}
|
94 |
-
|
95 |
-
$json_path = wp_normalize_path( dirname( dirname( __FILE__ ) ) . '/assets/json/webfonts.json' );
|
96 |
-
$json = $wp_filesystem->get_contents( $json_path );
|
97 |
-
// Get the list of fonts from our json file and convert to an array
|
98 |
-
$fonts = json_decode( $json, true );
|
99 |
|
100 |
$google_fonts = array();
|
101 |
if ( is_array( $fonts ) ) {
|
85 |
|
86 |
if ( null === self::$google_fonts || empty( self::$google_fonts ) ) {
|
87 |
|
88 |
+
$fonts_path = wp_normalize_path( dirname( dirname( __FILE__ ) ) . '/assets/json/webfonts.php' );
|
89 |
+
$fonts = include $fonts_path;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
$google_fonts = array();
|
92 |
if ( is_array( $fonts ) ) {
|
includes/class-kirki-init.php
CHANGED
@@ -146,10 +146,6 @@ if ( ! class_exists( 'Kirki_Init' ) ) {
|
|
146 |
* Create the control
|
147 |
*/
|
148 |
new Kirki_Control( $args );
|
149 |
-
/**
|
150 |
-
* Create the scripts for postMessage to properly work
|
151 |
-
*/
|
152 |
-
Kirki_Customizer_Scripts_PostMessage::generate_script( $args );
|
153 |
/**
|
154 |
* Create the scripts for tooltips.
|
155 |
*/
|
146 |
* Create the control
|
147 |
*/
|
148 |
new Kirki_Control( $args );
|
|
|
|
|
|
|
|
|
149 |
/**
|
150 |
* Create the scripts for tooltips.
|
151 |
*/
|
includes/class-kirki-scripts-registry.php
CHANGED
@@ -28,7 +28,6 @@ if ( ! class_exists( 'Kirki_Scripts_Registry' ) ) {
|
|
28 |
public function __construct() {
|
29 |
|
30 |
$this->dependencies = new Kirki_Enqueue();
|
31 |
-
$this->postmessage = new Kirki_Customizer_Scripts_PostMessage();
|
32 |
$this->tooltips = new Kirki_Customizer_Scripts_Tooltips();
|
33 |
$this->icons = new Kirki_Customizer_Scripts_Icons();
|
34 |
|
28 |
public function __construct() {
|
29 |
|
30 |
$this->dependencies = new Kirki_Enqueue();
|
|
|
31 |
$this->tooltips = new Kirki_Customizer_Scripts_Tooltips();
|
32 |
$this->icons = new Kirki_Customizer_Scripts_Icons();
|
33 |
|
includes/class-kirki-toolkit.php
CHANGED
@@ -30,7 +30,7 @@ if ( ! class_exists( 'Kirki_Toolkit' ) ) {
|
|
30 |
* @access protected
|
31 |
* @var string
|
32 |
*/
|
33 |
-
protected static $version = '2.2.
|
34 |
|
35 |
/**
|
36 |
* Access the single instance of this class
|
30 |
* @access protected
|
31 |
* @var string
|
32 |
*/
|
33 |
+
protected static $version = '2.2.5';
|
34 |
|
35 |
/**
|
36 |
* Access the single instance of this class
|
includes/customizer/scripts/class-kirki-customizer-scripts-loading.php
CHANGED
@@ -7,6 +7,13 @@ if ( ! class_exists( 'Kirki_Customizer_Scripts_Loading' ) ) {
|
|
7 |
if ( ! $wp_customize ) {
|
8 |
return;
|
9 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
/**
|
11 |
* Add the "loading" icon
|
12 |
*/
|
7 |
if ( ! $wp_customize ) {
|
8 |
return;
|
9 |
}
|
10 |
+
/**
|
11 |
+
* Allow disabling the custom loader using the kirki/config filter
|
12 |
+
*/
|
13 |
+
$config = apply_filters( 'kirki/config', array() );
|
14 |
+
if ( isset( $config['disable_loader'] ) && true === $config['disable_loader'] ) {
|
15 |
+
return;
|
16 |
+
}
|
17 |
/**
|
18 |
* Add the "loading" icon
|
19 |
*/
|
includes/customizer/scripts/class-kirki-customizer-scripts-postmessage.php
DELETED
@@ -1,177 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Try to automatically generate the script necessary for postMessage to work.
|
4 |
-
* for documentation see https://github.com/aristath/kirki/wiki/required
|
5 |
-
*
|
6 |
-
* @package Kirki
|
7 |
-
* @category Core
|
8 |
-
* @author Aristeides Stathopoulos
|
9 |
-
* @copyright Copyright (c) 2016, Aristeides Stathopoulos
|
10 |
-
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
11 |
-
* @since 1.0
|
12 |
-
*/
|
13 |
-
|
14 |
-
// Exit if accessed directly
|
15 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
-
exit;
|
17 |
-
}
|
18 |
-
|
19 |
-
if ( ! class_exists( 'Kirki_Customizer_Scripts_PostMessage' ) ) {
|
20 |
-
class Kirki_Customizer_Scripts_PostMessage extends Kirki_Customizer_Scripts {
|
21 |
-
|
22 |
-
/**
|
23 |
-
* string.
|
24 |
-
* The script generated for ALL fields
|
25 |
-
*/
|
26 |
-
public static $postmessage_script = '';
|
27 |
-
/**
|
28 |
-
* boolean.
|
29 |
-
* Whether the script has already been added to the customizer or not.
|
30 |
-
*/
|
31 |
-
public static $script_added = false;
|
32 |
-
|
33 |
-
/**
|
34 |
-
* The class constructor
|
35 |
-
*/
|
36 |
-
public function __construct() {
|
37 |
-
add_action( 'wp_footer', array( $this, 'enqueue_script' ), 21 );
|
38 |
-
}
|
39 |
-
|
40 |
-
/**
|
41 |
-
* Generates the scripts needed for postMessage.
|
42 |
-
* This works on a per-field basis.
|
43 |
-
* Once created, the script is added to the $postmessage_script property.
|
44 |
-
*
|
45 |
-
* @param array the field definition
|
46 |
-
* @return void
|
47 |
-
*/
|
48 |
-
public static function generate_script( $args = array() ) {
|
49 |
-
|
50 |
-
$script = '';
|
51 |
-
/**
|
52 |
-
* Make sure "transport" is defined
|
53 |
-
*/
|
54 |
-
$args['transport'] = ( isset( $args['transport'] ) ) ? $args['transport'] : 'refresh';
|
55 |
-
/**
|
56 |
-
* Make sure that we need to proceed
|
57 |
-
*/
|
58 |
-
if ( isset( $args['js_vars'] ) && 'postMessage' == $args['transport'] ) {
|
59 |
-
/**
|
60 |
-
* Make sure that "js_vars" is an array.
|
61 |
-
* If not, then early exit with return.
|
62 |
-
*/
|
63 |
-
if ( ! is_array( $args['js_vars'] ) || empty( $args['js_vars'] ) ) {
|
64 |
-
return;
|
65 |
-
}
|
66 |
-
/**
|
67 |
-
* Start looping through all the "js_vars" items in the array.
|
68 |
-
* Documentation on how to use the "js_vars" argument and its syntax
|
69 |
-
* can be found on https://github.com/aristath/kirki/wiki/js_vars
|
70 |
-
*/
|
71 |
-
foreach ( $args['js_vars'] as $js_vars ) {
|
72 |
-
/**
|
73 |
-
* Sanitize the arguments
|
74 |
-
*/
|
75 |
-
$js_vars = array(
|
76 |
-
'element' => ( isset( $js_vars['element'] ) ) ? sanitize_text_field( $js_vars['element'] ) : '',
|
77 |
-
'function' => ( isset( $js_vars['function'] ) ) ? esc_js( $js_vars['function'] ) : 'css',
|
78 |
-
'property' => ( isset( $js_vars['property'] ) ) ? esc_js( $js_vars['property'] ) : '',
|
79 |
-
'units' => ( isset( $js_vars['units'] ) ) ? esc_js( $js_vars['units'] ) : '',
|
80 |
-
'prefix' => ( isset( $js_vars['prefix'] ) ) ? esc_js( $js_vars['prefix'] ) : '',
|
81 |
-
'suffix' => ( isset( $js_vars['suffix'] ) ) ? esc_js( $js_vars['suffix'] ) : '',
|
82 |
-
'js_callback' => ( isset( $js_vars['js_callback'] ) ) ? esc_js( $js_vars['js_callback'] ) : '',
|
83 |
-
);
|
84 |
-
// If 'background-image' is used, then we need to use url("value").
|
85 |
-
if ( 'background-image' == $js_vars['property'] ) {
|
86 |
-
// check that the user hasn't already done this manually using other arguments
|
87 |
-
if ( false === strrpos( $js_vars['prefix'], 'url' ) ) {
|
88 |
-
$js_vars['prefix'] .= 'url("';
|
89 |
-
$js_vars['units'] .= '")';
|
90 |
-
}
|
91 |
-
}
|
92 |
-
|
93 |
-
$settings = $args['settings'];
|
94 |
-
$prefix = ( ! empty( $js_vars['prefix'] ) ) ? $js_vars['prefix'] . ' + ' : '';
|
95 |
-
$units = ( ! empty( $js_vars['units'] ) ) ? ' + ' . $js_vars['units'] : '';
|
96 |
-
$suffix = ( ! empty( $js_vars['suffix'] ) ) ? $js_vars['suffix'] : '';
|
97 |
-
$js_callback = ( ! empty( $js_vars['js_callback'] ) ) ? $js_vars['js_callback'] : '';
|
98 |
-
|
99 |
-
$script .= 'wp.customize( \'' . $settings . '\', function( value ) {';
|
100 |
-
$script .= 'value.bind( function( newval ) {';
|
101 |
-
|
102 |
-
if ( 'html' == $js_vars['function'] ) {
|
103 |
-
|
104 |
-
$script .= '$(\'' . $js_vars['element'] . '\').html( newval );';
|
105 |
-
|
106 |
-
// execute js_callback (callback must exist in dom before this script - see priority on the action/
|
107 |
-
if ( ! empty( $js_callback ) ) {
|
108 |
-
$script .= $js_callback . '(\'' . $js_vars['element'] . '\', newval);'; // js_callback(element, newval);
|
109 |
-
}
|
110 |
-
|
111 |
-
} else if ( 'style' == $js_vars['function'] ) {
|
112 |
-
|
113 |
-
$styleID = uniqid( 'kirki-style-' );
|
114 |
-
|
115 |
-
// append unique style tag if not exist
|
116 |
-
$script .= 'if( !$(\'#' . $styleID . '\').size() ) {';
|
117 |
-
$script .= '$(\'head\').append(\'<style id="' . $styleID . '"></style>\');';
|
118 |
-
$script .= '}';
|
119 |
-
|
120 |
-
// if we have new value, replace style contents with custom css
|
121 |
-
$script .= 'if( newval !== \'\') {';
|
122 |
-
$script .= '$(\'#' . $styleID . '\').text(\'' . $js_vars['element'] . '{ ' . $js_vars['property'] . ':' . $prefix . '\' + newval + \'' . $units . $suffix . ';}\');';
|
123 |
-
|
124 |
-
// else let's clear it out
|
125 |
-
$script .= '}else{';
|
126 |
-
$script .= '$(\'#' . $styleID . '\').text(\'\');';
|
127 |
-
$script .= '}';
|
128 |
-
|
129 |
-
// execute js_callback (callback must exist in dom before this script - see priority on line 41
|
130 |
-
if ( ! empty( $js_callback ) ) {
|
131 |
-
$script .= $js_callback . '(\'' . $js_vars['element'] . '\', newval);'; // js_callback(element, newval);
|
132 |
-
}
|
133 |
-
|
134 |
-
} else {
|
135 |
-
$units = ( ! empty( $js_vars['units'] ) ) ? " + '" . $js_vars['units'] . "'" : '';
|
136 |
-
$prefix = ( ! empty( $js_vars['prefix'] ) ) ? "'" . $js_vars['prefix'] . "' + " : '';
|
137 |
-
|
138 |
-
// append inline css - rules are very strict
|
139 |
-
if ( ' !important' === $suffix || '!important' === $suffix ) {
|
140 |
-
// this.style.setProperty( 'color', 'red', 'important' ); - jquery won't fix .css !important issue so we go oldschool
|
141 |
-
$script .= '$(\'' . $js_vars['element'] . '\').each(function(){ this.style.setProperty(\'' . $js_vars['property'] . '\', ' . $prefix . 'newval' . $units . ', \'important\');});';
|
142 |
-
} else {
|
143 |
-
// $suffix = what other suffix exists inline?
|
144 |
-
$script .= '$(\'' . $js_vars['element'] . '\').' . $js_vars['function'] . '(\'' . $js_vars['property'] . '\', ' . $prefix . 'newval' . $units . $js_vars['suffix'] . ' );';
|
145 |
-
}
|
146 |
-
|
147 |
-
// execute js_callback (callback must exist in dom before this script - see priority on action
|
148 |
-
if ( ! empty( $js_callback ) ) {
|
149 |
-
$script .= $js_callback . '(\'' . $js_vars['element'] . '\', newval);'; // js_callback(element, newval);
|
150 |
-
}
|
151 |
-
|
152 |
-
}
|
153 |
-
|
154 |
-
$script .= '}); });';
|
155 |
-
|
156 |
-
}
|
157 |
-
|
158 |
-
}
|
159 |
-
|
160 |
-
self::$postmessage_script .= $script;
|
161 |
-
|
162 |
-
}
|
163 |
-
|
164 |
-
/**
|
165 |
-
* Format the script in a way that will be compatible with WordPress.
|
166 |
-
*
|
167 |
-
* @return void (echoes the script)
|
168 |
-
*/
|
169 |
-
public function enqueue_script() {
|
170 |
-
if ( ! self::$script_added && '' != self::$postmessage_script ) {
|
171 |
-
self::$script_added = true;
|
172 |
-
echo '<script>jQuery(document).ready(function($) { "use strict"; ' . self::$postmessage_script . '});</script>';
|
173 |
-
}
|
174 |
-
}
|
175 |
-
|
176 |
-
}
|
177 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/output/property/class-kirki-output-property-font-family.php
CHANGED
@@ -6,6 +6,10 @@ class Kirki_Output_Property_Font_Family extends Kirki_Output_Property {
|
|
6 |
|
7 |
$google_fonts_array = Kirki_Fonts::get_google_fonts();
|
8 |
$backup_fonts = Kirki_Fonts::get_backup_fonts();
|
|
|
|
|
|
|
|
|
9 |
// Add backup font
|
10 |
if ( Kirki_Fonts::is_google_font( $this->value ) ) {
|
11 |
|
6 |
|
7 |
$google_fonts_array = Kirki_Fonts::get_google_fonts();
|
8 |
$backup_fonts = Kirki_Fonts::get_backup_fonts();
|
9 |
+
|
10 |
+
// hack for standard fonts
|
11 |
+
$this->value = str_replace( '"', '"', $this->value );
|
12 |
+
|
13 |
// Add backup font
|
14 |
if ( Kirki_Fonts::is_google_font( $this->value ) ) {
|
15 |
|
includes/sections/class-kirki-sections-hover-section.php
CHANGED
@@ -9,13 +9,13 @@ class Kirki_Sections_Hover_Section extends WP_Customize_Section {
|
|
9 |
<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }}">
|
10 |
<h3 class="accordion-section-title" tabindex="0">
|
11 |
{{ data.title }}
|
12 |
-
<span class="screen-reader-text"><?php _e( 'Press return or enter to open this section' ); ?></span>
|
13 |
</h3>
|
14 |
<ul class="accordion-section-content">
|
15 |
<li class="customize-section-description-container">
|
16 |
<div class="customize-section-title">
|
17 |
<button class="customize-section-back" tabindex="-1">
|
18 |
-
<span class="screen-reader-text"><?php _e( 'Back' ); ?></span>
|
19 |
</button>
|
20 |
<h3>
|
21 |
<span class="customize-action">
|
9 |
<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }}">
|
10 |
<h3 class="accordion-section-title" tabindex="0">
|
11 |
{{ data.title }}
|
12 |
+
<span class="screen-reader-text"><?php _e( 'Press return or enter to open this section', 'kirki' ); ?></span>
|
13 |
</h3>
|
14 |
<ul class="accordion-section-content">
|
15 |
<li class="customize-section-description-container">
|
16 |
<div class="customize-section-title">
|
17 |
<button class="customize-section-back" tabindex="-1">
|
18 |
+
<span class="screen-reader-text"><?php _e( 'Back', 'kirki' ); ?></span>
|
19 |
</button>
|
20 |
<h3>
|
21 |
<span class="customize-action">
|
includes/styles/class-kirki-styles-customizer.php
CHANGED
@@ -148,14 +148,12 @@ if ( ! class_exists( 'Kirki_Styles_Customizer' ) ) {
|
|
148 |
$config = apply_filters( 'kirki/config', array() );
|
149 |
$styles = '';
|
150 |
|
151 |
-
Kirki_Helper::init_filesystem();
|
152 |
-
global $wp_filesystem;
|
153 |
-
|
154 |
/**
|
155 |
* Include the width CSS if necessary
|
156 |
*/
|
157 |
if ( isset( $config['width'] ) ) {
|
158 |
-
$
|
|
|
159 |
/**
|
160 |
* Replace width placeholder with actual value
|
161 |
*/
|
@@ -166,13 +164,15 @@ if ( ! class_exists( 'Kirki_Styles_Customizer' ) ) {
|
|
166 |
* Include the color modifications CSS if necessary
|
167 |
*/
|
168 |
if ( false !== $this->color_back && false !== $this->color_font ) {
|
169 |
-
$
|
|
|
170 |
}
|
171 |
|
172 |
/**
|
173 |
* Include generic CSS for controls
|
174 |
*/
|
175 |
-
$
|
|
|
176 |
|
177 |
return $styles;
|
178 |
|
148 |
$config = apply_filters( 'kirki/config', array() );
|
149 |
$styles = '';
|
150 |
|
|
|
|
|
|
|
151 |
/**
|
152 |
* Include the width CSS if necessary
|
153 |
*/
|
154 |
if ( isset( $config['width'] ) ) {
|
155 |
+
$path = wp_normalize_path( Kirki::$path . '/assets/css/customizer-dynamic-css-width.php' );
|
156 |
+
$styles .= include $path;
|
157 |
/**
|
158 |
* Replace width placeholder with actual value
|
159 |
*/
|
164 |
* Include the color modifications CSS if necessary
|
165 |
*/
|
166 |
if ( false !== $this->color_back && false !== $this->color_font ) {
|
167 |
+
$path = wp_normalize_path( Kirki::$path . '/assets/css/customizer-dynamic-css-colors.php' );
|
168 |
+
$styles .= include $path;
|
169 |
}
|
170 |
|
171 |
/**
|
172 |
* Include generic CSS for controls
|
173 |
*/
|
174 |
+
$path = wp_normalize_path( Kirki::$path . '/assets/css/customizer-dynamic-css.php' );
|
175 |
+
$styles .= include $path;
|
176 |
|
177 |
return $styles;
|
178 |
|
kirki.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The ultimate WordPress Customizer Toolkit
|
6 |
* Author: Aristeides Stathopoulos
|
7 |
* Author URI: http://aristeides.com
|
8 |
-
* Version: 2.2.
|
9 |
* Text Domain: kirki
|
10 |
*
|
11 |
* GitHub Plugin URI: aristath/kirki
|
5 |
* Description: The ultimate WordPress Customizer Toolkit
|
6 |
* Author: Aristeides Stathopoulos
|
7 |
* Author URI: http://aristeides.com
|
8 |
+
* Version: 2.2.5
|
9 |
* Text Domain: kirki
|
10 |
*
|
11 |
* GitHub Plugin URI: aristath/kirki
|
languages/kirki.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Kirki Toolkit package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Kirki Toolkit 2.2.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kirki\n"
|
7 |
-
"POT-Creation-Date: 2016-03-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the Kirki Toolkit package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Kirki Toolkit 2.2.5\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/kirki\n"
|
7 |
+
"POT-Creation-Date: 2016-03-23 18:25:51+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "kirki-toolkit",
|
3 |
-
"version": "2.2.
|
4 |
"author": "Aristeides Stathopoulos",
|
5 |
"homepage": "https://kirki.org",
|
6 |
"license": "MIT",
|
@@ -29,6 +29,8 @@
|
|
29 |
"grunt-wp-i18n": "^0.5.3",
|
30 |
"grunt-contrib-watch": "^0.6.1",
|
31 |
"grunt-curl": "2.2.0",
|
32 |
-
"grunt-wp-readme-to-markdown": "^1.0.0"
|
|
|
|
|
33 |
}
|
34 |
}
|
1 |
{
|
2 |
"name": "kirki-toolkit",
|
3 |
+
"version": "2.2.5",
|
4 |
"author": "Aristeides Stathopoulos",
|
5 |
"homepage": "https://kirki.org",
|
6 |
"license": "MIT",
|
29 |
"grunt-wp-i18n": "^0.5.3",
|
30 |
"grunt-contrib-watch": "^0.6.1",
|
31 |
"grunt-curl": "2.2.0",
|
32 |
+
"grunt-wp-readme-to-markdown": "^1.0.0",
|
33 |
+
"grunt-json2php":"^0.1.4",
|
34 |
+
"grunt-contrib-clean":"^1.0.0"
|
35 |
}
|
36 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: customizer,options framework, theme, mods, toolkit
|
|
4 |
Donate link: http://kirki.org/
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 4.5
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -37,6 +37,18 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
|
|
37 |
|
38 |
== Changelog ==
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
= 2.2.4 =
|
41 |
|
42 |
March 20, 2016, dev time: 6 hours
|
4 |
Donate link: http://kirki.org/
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 4.5
|
7 |
+
Stable tag: 2.2.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
37 |
|
38 |
== Changelog ==
|
39 |
|
40 |
+
= 2.2.5 =
|
41 |
+
|
42 |
+
March 23, 2016, dev time: 7 hours
|
43 |
+
|
44 |
+
* FIX: Google fonts now loaded via a PHP array instead of a JSON file.
|
45 |
+
* FIX: CSS issue due to escaped quotes on standard fonts.
|
46 |
+
* FIX: Issue when using `units` on `js_vars` combined with the `style` method.
|
47 |
+
* FIX: Missing textdomain on a string.
|
48 |
+
* NEW: Refactored postMessage scripts.
|
49 |
+
* NEW: Allow passing options to iris using the `choices` argument on color controls.
|
50 |
+
* NEW: Allow disabling the custom loader using the `disable_loader` argument in the `kirki/config` filter.
|
51 |
+
|
52 |
= 2.2.4 =
|
53 |
|
54 |
March 20, 2016, dev time: 6 hours
|